Created
September 27, 2016 23:52
-
-
Save fdeheeger/26cbac58ac94701f7b10f5536d7076ea to your computer and use it in GitHub Desktop.
nb from https://github/bokeh/bokeh/blob/master/examples/plotting/notebook/color_scatterplot.ipynb + nbconvert and nbsphinx conversion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head><meta charset="utf-8" /> | |
<title>color_scatterplot</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
<style type="text/css"> | |
/*! | |
* | |
* Twitter Bootstrap | |
* | |
*/ | |
/*! | |
* Bootstrap v3.3.6 (http://getbootstrap.com) | |
* Copyright 2011-2015 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ | |
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ | |
html { | |
font-family: sans-serif; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100%; | |
} | |
body { | |
margin: 0; | |
} | |
article, | |
aside, | |
details, | |
figcaption, | |
figure, | |
footer, | |
header, | |
hgroup, | |
main, | |
menu, | |
nav, | |
section, | |
summary { | |
display: block; | |
} | |
audio, | |
canvas, | |
progress, | |
video { | |
display: inline-block; | |
vertical-align: baseline; | |
} | |
audio:not([controls]) { | |
display: none; | |
height: 0; | |
} | |
[hidden], | |
template { | |
display: none; | |
} | |
a { | |
background-color: transparent; | |
} | |
a:active, | |
a:hover { | |
outline: 0; | |
} | |
abbr[title] { | |
border-bottom: 1px dotted; | |
} | |
b, | |
strong { | |
font-weight: bold; | |
} | |
dfn { | |
font-style: italic; | |
} | |
h1 { | |
font-size: 2em; | |
margin: 0.67em 0; | |
} | |
mark { | |
background: #ff0; | |
color: #000; | |
} | |
small { | |
font-size: 80%; | |
} | |
sub, | |
sup { | |
font-size: 75%; | |
line-height: 0; | |
position: relative; | |
vertical-align: baseline; | |
} | |
sup { | |
top: -0.5em; | |
} | |
sub { | |
bottom: -0.25em; | |
} | |
img { | |
border: 0; | |
} | |
svg:not(:root) { | |
overflow: hidden; | |
} | |
figure { | |
margin: 1em 40px; | |
} | |
hr { | |
box-sizing: content-box; | |
height: 0; | |
} | |
pre { | |
overflow: auto; | |
} | |
code, | |
kbd, | |
pre, | |
samp { | |
font-family: monospace, monospace; | |
font-size: 1em; | |
} | |
button, | |
input, | |
optgroup, | |
select, | |
textarea { | |
color: inherit; | |
font: inherit; | |
margin: 0; | |
} | |
button { | |
overflow: visible; | |
} | |
button, | |
select { | |
text-transform: none; | |
} | |
button, | |
html input[type="button"], | |
input[type="reset"], | |
input[type="submit"] { | |
-webkit-appearance: button; | |
cursor: pointer; | |
} | |
button[disabled], | |
html input[disabled] { | |
cursor: default; | |
} | |
button::-moz-focus-inner, | |
input::-moz-focus-inner { | |
border: 0; | |
padding: 0; | |
} | |
input { | |
line-height: normal; | |
} | |
input[type="checkbox"], | |
input[type="radio"] { | |
box-sizing: border-box; | |
padding: 0; | |
} | |
input[type="number"]::-webkit-inner-spin-button, | |
input[type="number"]::-webkit-outer-spin-button { | |
height: auto; | |
} | |
input[type="search"] { | |
-webkit-appearance: textfield; | |
box-sizing: content-box; | |
} | |
input[type="search"]::-webkit-search-cancel-button, | |
input[type="search"]::-webkit-search-decoration { | |
-webkit-appearance: none; | |
} | |
fieldset { | |
border: 1px solid #c0c0c0; | |
margin: 0 2px; | |
padding: 0.35em 0.625em 0.75em; | |
} | |
legend { | |
border: 0; | |
padding: 0; | |
} | |
textarea { | |
overflow: auto; | |
} | |
optgroup { | |
font-weight: bold; | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
td, | |
th { | |
padding: 0; | |
} | |
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ | |
@media print { | |
*, | |
*:before, | |
*:after { | |
background: transparent !important; | |
color: #000 !important; | |
box-shadow: none !important; | |
text-shadow: none !important; | |
} | |
a, | |
a:visited { | |
text-decoration: underline; | |
} | |
a[href]:after { | |
content: " (" attr(href) ")"; | |
} | |
abbr[title]:after { | |
content: " (" attr(title) ")"; | |
} | |
a[href^="#"]:after, | |
a[href^="javascript:"]:after { | |
content: ""; | |
} | |
pre, | |
blockquote { | |
border: 1px solid #999; | |
page-break-inside: avoid; | |
} | |
thead { | |
display: table-header-group; | |
} | |
tr, | |
img { | |
page-break-inside: avoid; | |
} | |
img { | |
max-width: 100% !important; | |
} | |
p, | |
h2, | |
h3 { | |
orphans: 3; | |
widows: 3; | |
} | |
h2, | |
h3 { | |
page-break-after: avoid; | |
} | |
.navbar { | |
display: none; | |
} | |
.btn > .caret, | |
.dropup > .btn > .caret { | |
border-top-color: #000 !important; | |
} | |
.label { | |
border: 1px solid #000; | |
} | |
.table { | |
border-collapse: collapse !important; | |
} | |
.table td, | |
.table th { | |
background-color: #fff !important; | |
} | |
.table-bordered th, | |
.table-bordered td { | |
border: 1px solid #ddd !important; | |
} | |
} | |
@font-face { | |
font-family: 'Glyphicons Halflings'; | |
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot'); | |
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); | |
} | |
.glyphicon { | |
position: relative; | |
top: 1px; | |
display: inline-block; | |
font-family: 'Glyphicons Halflings'; | |
font-style: normal; | |
font-weight: normal; | |
line-height: 1; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
.glyphicon-asterisk:before { | |
content: "\002a"; | |
} | |
.glyphicon-plus:before { | |
content: "\002b"; | |
} | |
.glyphicon-euro:before, | |
.glyphicon-eur:before { | |
content: "\20ac"; | |
} | |
.glyphicon-minus:before { | |
content: "\2212"; | |
} | |
.glyphicon-cloud:before { | |
content: "\2601"; | |
} | |
.glyphicon-envelope:before { | |
content: "\2709"; | |
} | |
.glyphicon-pencil:before { | |
content: "\270f"; | |
} | |
.glyphicon-glass:before { | |
content: "\e001"; | |
} | |
.glyphicon-music:before { | |
content: "\e002"; | |
} | |
.glyphicon-search:before { | |
content: "\e003"; | |
} | |
.glyphicon-heart:before { | |
content: "\e005"; | |
} | |
.glyphicon-star:before { | |
content: "\e006"; | |
} | |
.glyphicon-star-empty:before { | |
content: "\e007"; | |
} | |
.glyphicon-user:before { | |
content: "\e008"; | |
} | |
.glyphicon-film:before { | |
content: "\e009"; | |
} | |
.glyphicon-th-large:before { | |
content: "\e010"; | |
} | |
.glyphicon-th:before { | |
content: "\e011"; | |
} | |
.glyphicon-th-list:before { | |
content: "\e012"; | |
} | |
.glyphicon-ok:before { | |
content: "\e013"; | |
} | |
.glyphicon-remove:before { | |
content: "\e014"; | |
} | |
.glyphicon-zoom-in:before { | |
content: "\e015"; | |
} | |
.glyphicon-zoom-out:before { | |
content: "\e016"; | |
} | |
.glyphicon-off:before { | |
content: "\e017"; | |
} | |
.glyphicon-signal:before { | |
content: "\e018"; | |
} | |
.glyphicon-cog:before { | |
content: "\e019"; | |
} | |
.glyphicon-trash:before { | |
content: "\e020"; | |
} | |
.glyphicon-home:before { | |
content: "\e021"; | |
} | |
.glyphicon-file:before { | |
content: "\e022"; | |
} | |
.glyphicon-time:before { | |
content: "\e023"; | |
} | |
.glyphicon-road:before { | |
content: "\e024"; | |
} | |
.glyphicon-download-alt:before { | |
content: "\e025"; | |
} | |
.glyphicon-download:before { | |
content: "\e026"; | |
} | |
.glyphicon-upload:before { | |
content: "\e027"; | |
} | |
.glyphicon-inbox:before { | |
content: "\e028"; | |
} | |
.glyphicon-play-circle:before { | |
content: "\e029"; | |
} | |
.glyphicon-repeat:before { | |
content: "\e030"; | |
} | |
.glyphicon-refresh:before { | |
content: "\e031"; | |
} | |
.glyphicon-list-alt:before { | |
content: "\e032"; | |
} | |
.glyphicon-lock:before { | |
content: "\e033"; | |
} | |
.glyphicon-flag:before { | |
content: "\e034"; | |
} | |
.glyphicon-headphones:before { | |
content: "\e035"; | |
} | |
.glyphicon-volume-off:before { | |
content: "\e036"; | |
} | |
.glyphicon-volume-down:before { | |
content: "\e037"; | |
} | |
.glyphicon-volume-up:before { | |
content: "\e038"; | |
} | |
.glyphicon-qrcode:before { | |
content: "\e039"; | |
} | |
.glyphicon-barcode:before { | |
content: "\e040"; | |
} | |
.glyphicon-tag:before { | |
content: "\e041"; | |
} | |
.glyphicon-tags:before { | |
content: "\e042"; | |
} | |
.glyphicon-book:before { | |
content: "\e043"; | |
} | |
.glyphicon-bookmark:before { | |
content: "\e044"; | |
} | |
.glyphicon-print:before { | |
content: "\e045"; | |
} | |
.glyphicon-camera:before { | |
content: "\e046"; | |
} | |
.glyphicon-font:before { | |
content: "\e047"; | |
} | |
.glyphicon-bold:before { | |
content: "\e048"; | |
} | |
.glyphicon-italic:before { | |
content: "\e049"; | |
} | |
.glyphicon-text-height:before { | |
content: "\e050"; | |
} | |
.glyphicon-text-width:before { | |
content: "\e051"; | |
} | |
.glyphicon-align-left:before { | |
content: "\e052"; | |
} | |
.glyphicon-align-center:before { | |
content: "\e053"; | |
} | |
.glyphicon-align-right:before { | |
content: "\e054"; | |
} | |
.glyphicon-align-justify:before { | |
content: "\e055"; | |
} | |
.glyphicon-list:before { | |
content: "\e056"; | |
} | |
.glyphicon-indent-left:before { | |
content: "\e057"; | |
} | |
.glyphicon-indent-right:before { | |
content: "\e058"; | |
} | |
.glyphicon-facetime-video:before { | |
content: "\e059"; | |
} | |
.glyphicon-picture:before { | |
content: "\e060"; | |
} | |
.glyphicon-map-marker:before { | |
content: "\e062"; | |
} | |
.glyphicon-adjust:before { | |
content: "\e063"; | |
} | |
.glyphicon-tint:before { | |
content: "\e064"; | |
} | |
.glyphicon-edit:before { | |
content: "\e065"; | |
} | |
.glyphicon-share:before { | |
content: "\e066"; | |
} | |
.glyphicon-check:before { | |
content: "\e067"; | |
} | |
.glyphicon-move:before { | |
content: "\e068"; | |
} | |
.glyphicon-step-backward:before { | |
content: "\e069"; | |
} | |
.glyphicon-fast-backward:before { | |
content: "\e070"; | |
} | |
.glyphicon-backward:before { | |
content: "\e071"; | |
} | |
.glyphicon-play:before { | |
content: "\e072"; | |
} | |
.glyphicon-pause:before { | |
content: "\e073"; | |
} | |
.glyphicon-stop:before { | |
content: "\e074"; | |
} | |
.glyphicon-forward:before { | |
content: "\e075"; | |
} | |
.glyphicon-fast-forward:before { | |
content: "\e076"; | |
} | |
.glyphicon-step-forward:before { | |
content: "\e077"; | |
} | |
.glyphicon-eject:before { | |
content: "\e078"; | |
} | |
.glyphicon-chevron-left:before { | |
content: "\e079"; | |
} | |
.glyphicon-chevron-right:before { | |
content: "\e080"; | |
} | |
.glyphicon-plus-sign:before { | |
content: "\e081"; | |
} | |
.glyphicon-minus-sign:before { | |
content: "\e082"; | |
} | |
.glyphicon-remove-sign:before { | |
content: "\e083"; | |
} | |
.glyphicon-ok-sign:before { | |
content: "\e084"; | |
} | |
.glyphicon-question-sign:before { | |
content: "\e085"; | |
} | |
.glyphicon-info-sign:before { | |
content: "\e086"; | |
} | |
.glyphicon-screenshot:before { | |
content: "\e087"; | |
} | |
.glyphicon-remove-circle:before { | |
content: "\e088"; | |
} | |
.glyphicon-ok-circle:before { | |
content: "\e089"; | |
} | |
.glyphicon-ban-circle:before { | |
content: "\e090"; | |
} | |
.glyphicon-arrow-left:before { | |
content: "\e091"; | |
} | |
.glyphicon-arrow-right:before { | |
content: "\e092"; | |
} | |
.glyphicon-arrow-up:before { | |
content: "\e093"; | |
} | |
.glyphicon-arrow-down:before { | |
content: "\e094"; | |
} | |
.glyphicon-share-alt:before { | |
content: "\e095"; | |
} | |
.glyphicon-resize-full:before { | |
content: "\e096"; | |
} | |
.glyphicon-resize-small:before { | |
content: "\e097"; | |
} | |
.glyphicon-exclamation-sign:before { | |
content: "\e101"; | |
} | |
.glyphicon-gift:before { | |
content: "\e102"; | |
} | |
.glyphicon-leaf:before { | |
content: "\e103"; | |
} | |
.glyphicon-fire:before { | |
content: "\e104"; | |
} | |
.glyphicon-eye-open:before { | |
content: "\e105"; | |
} | |
.glyphicon-eye-close:before { | |
content: "\e106"; | |
} | |
.glyphicon-warning-sign:before { | |
content: "\e107"; | |
} | |
.glyphicon-plane:before { | |
content: "\e108"; | |
} | |
.glyphicon-calendar:before { | |
content: "\e109"; | |
} | |
.glyphicon-random:before { | |
content: "\e110"; | |
} | |
.glyphicon-comment:before { | |
content: "\e111"; | |
} | |
.glyphicon-magnet:before { | |
content: "\e112"; | |
} | |
.glyphicon-chevron-up:before { | |
content: "\e113"; | |
} | |
.glyphicon-chevron-down:before { | |
content: "\e114"; | |
} | |
.glyphicon-retweet:before { | |
content: "\e115"; | |
} | |
.glyphicon-shopping-cart:before { | |
content: "\e116"; | |
} | |
.glyphicon-folder-close:before { | |
content: "\e117"; | |
} | |
.glyphicon-folder-open:before { | |
content: "\e118"; | |
} | |
.glyphicon-resize-vertical:before { | |
content: "\e119"; | |
} | |
.glyphicon-resize-horizontal:before { | |
content: "\e120"; | |
} | |
.glyphicon-hdd:before { | |
content: "\e121"; | |
} | |
.glyphicon-bullhorn:before { | |
content: "\e122"; | |
} | |
.glyphicon-bell:before { | |
content: "\e123"; | |
} | |
.glyphicon-certificate:before { | |
content: "\e124"; | |
} | |
.glyphicon-thumbs-up:before { | |
content: "\e125"; | |
} | |
.glyphicon-thumbs-down:before { | |
content: "\e126"; | |
} | |
.glyphicon-hand-right:before { | |
content: "\e127"; | |
} | |
.glyphicon-hand-left:before { | |
content: "\e128"; | |
} | |
.glyphicon-hand-up:before { | |
content: "\e129"; | |
} | |
.glyphicon-hand-down:before { | |
content: "\e130"; | |
} | |
.glyphicon-circle-arrow-right:before { | |
content: "\e131"; | |
} | |
.glyphicon-circle-arrow-left:before { | |
content: "\e132"; | |
} | |
.glyphicon-circle-arrow-up:before { | |
content: "\e133"; | |
} | |
.glyphicon-circle-arrow-down:before { | |
content: "\e134"; | |
} | |
.glyphicon-globe:before { | |
content: "\e135"; | |
} | |
.glyphicon-wrench:before { | |
content: "\e136"; | |
} | |
.glyphicon-tasks:before { | |
content: "\e137"; | |
} | |
.glyphicon-filter:before { | |
content: "\e138"; | |
} | |
.glyphicon-briefcase:before { | |
content: "\e139"; | |
} | |
.glyphicon-fullscreen:before { | |
content: "\e140"; | |
} | |
.glyphicon-dashboard:before { | |
content: "\e141"; | |
} | |
.glyphicon-paperclip:before { | |
content: "\e142"; | |
} | |
.glyphicon-heart-empty:before { | |
content: "\e143"; | |
} | |
.glyphicon-link:before { | |
content: "\e144"; | |
} | |
.glyphicon-phone:before { | |
content: "\e145"; | |
} | |
.glyphicon-pushpin:before { | |
content: "\e146"; | |
} | |
.glyphicon-usd:before { | |
content: "\e148"; | |
} | |
.glyphicon-gbp:before { | |
content: "\e149"; | |
} | |
.glyphicon-sort:before { | |
content: "\e150"; | |
} | |
.glyphicon-sort-by-alphabet:before { | |
content: "\e151"; | |
} | |
.glyphicon-sort-by-alphabet-alt:before { | |
content: "\e152"; | |
} | |
.glyphicon-sort-by-order:before { | |
content: "\e153"; | |
} | |
.glyphicon-sort-by-order-alt:before { | |
content: "\e154"; | |
} | |
.glyphicon-sort-by-attributes:before { | |
content: "\e155"; | |
} | |
.glyphicon-sort-by-attributes-alt:before { | |
content: "\e156"; | |
} | |
.glyphicon-unchecked:before { | |
content: "\e157"; | |
} | |
.glyphicon-expand:before { | |
content: "\e158"; | |
} | |
.glyphicon-collapse-down:before { | |
content: "\e159"; | |
} | |
.glyphicon-collapse-up:before { | |
content: "\e160"; | |
} | |
.glyphicon-log-in:before { | |
content: "\e161"; | |
} | |
.glyphicon-flash:before { | |
content: "\e162"; | |
} | |
.glyphicon-log-out:before { | |
content: "\e163"; | |
} | |
.glyphicon-new-window:before { | |
content: "\e164"; | |
} | |
.glyphicon-record:before { | |
content: "\e165"; | |
} | |
.glyphicon-save:before { | |
content: "\e166"; | |
} | |
.glyphicon-open:before { | |
content: "\e167"; | |
} | |
.glyphicon-saved:before { | |
content: "\e168"; | |
} | |
.glyphicon-import:before { | |
content: "\e169"; | |
} | |
.glyphicon-export:before { | |
content: "\e170"; | |
} | |
.glyphicon-send:before { | |
content: "\e171"; | |
} | |
.glyphicon-floppy-disk:before { | |
content: "\e172"; | |
} | |
.glyphicon-floppy-saved:before { | |
content: "\e173"; | |
} | |
.glyphicon-floppy-remove:before { | |
content: "\e174"; | |
} | |
.glyphicon-floppy-save:before { | |
content: "\e175"; | |
} | |
.glyphicon-floppy-open:before { | |
content: "\e176"; | |
} | |
.glyphicon-credit-card:before { | |
content: "\e177"; | |
} | |
.glyphicon-transfer:before { | |
content: "\e178"; | |
} | |
.glyphicon-cutlery:before { | |
content: "\e179"; | |
} | |
.glyphicon-header:before { | |
content: "\e180"; | |
} | |
.glyphicon-compressed:before { | |
content: "\e181"; | |
} | |
.glyphicon-earphone:before { | |
content: "\e182"; | |
} | |
.glyphicon-phone-alt:before { | |
content: "\e183"; | |
} | |
.glyphicon-tower:before { | |
content: "\e184"; | |
} | |
.glyphicon-stats:before { | |
content: "\e185"; | |
} | |
.glyphicon-sd-video:before { | |
content: "\e186"; | |
} | |
.glyphicon-hd-video:before { | |
content: "\e187"; | |
} | |
.glyphicon-subtitles:before { | |
content: "\e188"; | |
} | |
.glyphicon-sound-stereo:before { | |
content: "\e189"; | |
} | |
.glyphicon-sound-dolby:before { | |
content: "\e190"; | |
} | |
.glyphicon-sound-5-1:before { | |
content: "\e191"; | |
} | |
.glyphicon-sound-6-1:before { | |
content: "\e192"; | |
} | |
.glyphicon-sound-7-1:before { | |
content: "\e193"; | |
} | |
.glyphicon-copyright-mark:before { | |
content: "\e194"; | |
} | |
.glyphicon-registration-mark:before { | |
content: "\e195"; | |
} | |
.glyphicon-cloud-download:before { | |
content: "\e197"; | |
} | |
.glyphicon-cloud-upload:before { | |
content: "\e198"; | |
} | |
.glyphicon-tree-conifer:before { | |
content: "\e199"; | |
} | |
.glyphicon-tree-deciduous:before { | |
content: "\e200"; | |
} | |
.glyphicon-cd:before { | |
content: "\e201"; | |
} | |
.glyphicon-save-file:before { | |
content: "\e202"; | |
} | |
.glyphicon-open-file:before { | |
content: "\e203"; | |
} | |
.glyphicon-level-up:before { | |
content: "\e204"; | |
} | |
.glyphicon-copy:before { | |
content: "\e205"; | |
} | |
.glyphicon-paste:before { | |
content: "\e206"; | |
} | |
.glyphicon-alert:before { | |
content: "\e209"; | |
} | |
.glyphicon-equalizer:before { | |
content: "\e210"; | |
} | |
.glyphicon-king:before { | |
content: "\e211"; | |
} | |
.glyphicon-queen:before { | |
content: "\e212"; | |
} | |
.glyphicon-pawn:before { | |
content: "\e213"; | |
} | |
.glyphicon-bishop:before { | |
content: "\e214"; | |
} | |
.glyphicon-knight:before { | |
content: "\e215"; | |
} | |
.glyphicon-baby-formula:before { | |
content: "\e216"; | |
} | |
.glyphicon-tent:before { | |
content: "\26fa"; | |
} | |
.glyphicon-blackboard:before { | |
content: "\e218"; | |
} | |
.glyphicon-bed:before { | |
content: "\e219"; | |
} | |
.glyphicon-apple:before { | |
content: "\f8ff"; | |
} | |
.glyphicon-erase:before { | |
content: "\e221"; | |
} | |
.glyphicon-hourglass:before { | |
content: "\231b"; | |
} | |
.glyphicon-lamp:before { | |
content: "\e223"; | |
} | |
.glyphicon-duplicate:before { | |
content: "\e224"; | |
} | |
.glyphicon-piggy-bank:before { | |
content: "\e225"; | |
} | |
.glyphicon-scissors:before { | |
content: "\e226"; | |
} | |
.glyphicon-bitcoin:before { | |
content: "\e227"; | |
} | |
.glyphicon-btc:before { | |
content: "\e227"; | |
} | |
.glyphicon-xbt:before { | |
content: "\e227"; | |
} | |
.glyphicon-yen:before { | |
content: "\00a5"; | |
} | |
.glyphicon-jpy:before { | |
content: "\00a5"; | |
} | |
.glyphicon-ruble:before { | |
content: "\20bd"; | |
} | |
.glyphicon-rub:before { | |
content: "\20bd"; | |
} | |
.glyphicon-scale:before { | |
content: "\e230"; | |
} | |
.glyphicon-ice-lolly:before { | |
content: "\e231"; | |
} | |
.glyphicon-ice-lolly-tasted:before { | |
content: "\e232"; | |
} | |
.glyphicon-education:before { | |
content: "\e233"; | |
} | |
.glyphicon-option-horizontal:before { | |
content: "\e234"; | |
} | |
.glyphicon-option-vertical:before { | |
content: "\e235"; | |
} | |
.glyphicon-menu-hamburger:before { | |
content: "\e236"; | |
} | |
.glyphicon-modal-window:before { | |
content: "\e237"; | |
} | |
.glyphicon-oil:before { | |
content: "\e238"; | |
} | |
.glyphicon-grain:before { | |
content: "\e239"; | |
} | |
.glyphicon-sunglasses:before { | |
content: "\e240"; | |
} | |
.glyphicon-text-size:before { | |
content: "\e241"; | |
} | |
.glyphicon-text-color:before { | |
content: "\e242"; | |
} | |
.glyphicon-text-background:before { | |
content: "\e243"; | |
} | |
.glyphicon-object-align-top:before { | |
content: "\e244"; | |
} | |
.glyphicon-object-align-bottom:before { | |
content: "\e245"; | |
} | |
.glyphicon-object-align-horizontal:before { | |
content: "\e246"; | |
} | |
.glyphicon-object-align-left:before { | |
content: "\e247"; | |
} | |
.glyphicon-object-align-vertical:before { | |
content: "\e248"; | |
} | |
.glyphicon-object-align-right:before { | |
content: "\e249"; | |
} | |
.glyphicon-triangle-right:before { | |
content: "\e250"; | |
} | |
.glyphicon-triangle-left:before { | |
content: "\e251"; | |
} | |
.glyphicon-triangle-bottom:before { | |
content: "\e252"; | |
} | |
.glyphicon-triangle-top:before { | |
content: "\e253"; | |
} | |
.glyphicon-console:before { | |
content: "\e254"; | |
} | |
.glyphicon-superscript:before { | |
content: "\e255"; | |
} | |
.glyphicon-subscript:before { | |
content: "\e256"; | |
} | |
.glyphicon-menu-left:before { | |
content: "\e257"; | |
} | |
.glyphicon-menu-right:before { | |
content: "\e258"; | |
} | |
.glyphicon-menu-down:before { | |
content: "\e259"; | |
} | |
.glyphicon-menu-up:before { | |
content: "\e260"; | |
} | |
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
*:before, | |
*:after { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
html { | |
font-size: 10px; | |
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |
} | |
body { | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-size: 13px; | |
line-height: 1.42857143; | |
color: #000; | |
background-color: #fff; | |
} | |
input, | |
button, | |
select, | |
textarea { | |
font-family: inherit; | |
font-size: inherit; | |
line-height: inherit; | |
} | |
a { | |
color: #337ab7; | |
text-decoration: none; | |
} | |
a:hover, | |
a:focus { | |
color: #23527c; | |
text-decoration: underline; | |
} | |
a:focus { | |
outline: thin dotted; | |
outline: 5px auto -webkit-focus-ring-color; | |
outline-offset: -2px; | |
} | |
figure { | |
margin: 0; | |
} | |
img { | |
vertical-align: middle; | |
} | |
.img-responsive, | |
.thumbnail > img, | |
.thumbnail a > img, | |
.carousel-inner > .item > img, | |
.carousel-inner > .item > a > img { | |
display: block; | |
max-width: 100%; | |
height: auto; | |
} | |
.img-rounded { | |
border-radius: 3px; | |
} | |
.img-thumbnail { | |
padding: 4px; | |
line-height: 1.42857143; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
border-radius: 2px; | |
-webkit-transition: all 0.2s ease-in-out; | |
-o-transition: all 0.2s ease-in-out; | |
transition: all 0.2s ease-in-out; | |
display: inline-block; | |
max-width: 100%; | |
height: auto; | |
} | |
.img-circle { | |
border-radius: 50%; | |
} | |
hr { | |
margin-top: 18px; | |
margin-bottom: 18px; | |
border: 0; | |
border-top: 1px solid #eeeeee; | |
} | |
.sr-only { | |
position: absolute; | |
width: 1px; | |
height: 1px; | |
margin: -1px; | |
padding: 0; | |
overflow: hidden; | |
clip: rect(0, 0, 0, 0); | |
border: 0; | |
} | |
.sr-only-focusable:active, | |
.sr-only-focusable:focus { | |
position: static; | |
width: auto; | |
height: auto; | |
margin: 0; | |
overflow: visible; | |
clip: auto; | |
} | |
[role="button"] { | |
cursor: pointer; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
.h1, | |
.h2, | |
.h3, | |
.h4, | |
.h5, | |
.h6 { | |
font-family: inherit; | |
font-weight: 500; | |
line-height: 1.1; | |
color: inherit; | |
} | |
h1 small, | |
h2 small, | |
h3 small, | |
h4 small, | |
h5 small, | |
h6 small, | |
.h1 small, | |
.h2 small, | |
.h3 small, | |
.h4 small, | |
.h5 small, | |
.h6 small, | |
h1 .small, | |
h2 .small, | |
h3 .small, | |
h4 .small, | |
h5 .small, | |
h6 .small, | |
.h1 .small, | |
.h2 .small, | |
.h3 .small, | |
.h4 .small, | |
.h5 .small, | |
.h6 .small { | |
font-weight: normal; | |
line-height: 1; | |
color: #777777; | |
} | |
h1, | |
.h1, | |
h2, | |
.h2, | |
h3, | |
.h3 { | |
margin-top: 18px; | |
margin-bottom: 9px; | |
} | |
h1 small, | |
.h1 small, | |
h2 small, | |
.h2 small, | |
h3 small, | |
.h3 small, | |
h1 .small, | |
.h1 .small, | |
h2 .small, | |
.h2 .small, | |
h3 .small, | |
.h3 .small { | |
font-size: 65%; | |
} | |
h4, | |
.h4, | |
h5, | |
.h5, | |
h6, | |
.h6 { | |
margin-top: 9px; | |
margin-bottom: 9px; | |
} | |
h4 small, | |
.h4 small, | |
h5 small, | |
.h5 small, | |
h6 small, | |
.h6 small, | |
h4 .small, | |
.h4 .small, | |
h5 .small, | |
.h5 .small, | |
h6 .small, | |
.h6 .small { | |
font-size: 75%; | |
} | |
h1, | |
.h1 { | |
font-size: 33px; | |
} | |
h2, | |
.h2 { | |
font-size: 27px; | |
} | |
h3, | |
.h3 { | |
font-size: 23px; | |
} | |
h4, | |
.h4 { | |
font-size: 17px; | |
} | |
h5, | |
.h5 { | |
font-size: 13px; | |
} | |
h6, | |
.h6 { | |
font-size: 12px; | |
} | |
p { | |
margin: 0 0 9px; | |
} | |
.lead { | |
margin-bottom: 18px; | |
font-size: 14px; | |
font-weight: 300; | |
line-height: 1.4; | |
} | |
@media (min-width: 768px) { | |
.lead { | |
font-size: 19.5px; | |
} | |
} | |
small, | |
.small { | |
font-size: 92%; | |
} | |
mark, | |
.mark { | |
background-color: #fcf8e3; | |
padding: .2em; | |
} | |
.text-left { | |
text-align: left; | |
} | |
.text-right { | |
text-align: right; | |
} | |
.text-center { | |
text-align: center; | |
} | |
.text-justify { | |
text-align: justify; | |
} | |
.text-nowrap { | |
white-space: nowrap; | |
} | |
.text-lowercase { | |
text-transform: lowercase; | |
} | |
.text-uppercase { | |
text-transform: uppercase; | |
} | |
.text-capitalize { | |
text-transform: capitalize; | |
} | |
.text-muted { | |
color: #777777; | |
} | |
.text-primary { | |
color: #337ab7; | |
} | |
a.text-primary:hover, | |
a.text-primary:focus { | |
color: #286090; | |
} | |
.text-success { | |
color: #3c763d; | |
} | |
a.text-success:hover, | |
a.text-success:focus { | |
color: #2b542c; | |
} | |
.text-info { | |
color: #31708f; | |
} | |
a.text-info:hover, | |
a.text-info:focus { | |
color: #245269; | |
} | |
.text-warning { | |
color: #8a6d3b; | |
} | |
a.text-warning:hover, | |
a.text-warning:focus { | |
color: #66512c; | |
} | |
.text-danger { | |
color: #a94442; | |
} | |
a.text-danger:hover, | |
a.text-danger:focus { | |
color: #843534; | |
} | |
.bg-primary { | |
color: #fff; | |
background-color: #337ab7; | |
} | |
a.bg-primary:hover, | |
a.bg-primary:focus { | |
background-color: #286090; | |
} | |
.bg-success { | |
background-color: #dff0d8; | |
} | |
a.bg-success:hover, | |
a.bg-success:focus { | |
background-color: #c1e2b3; | |
} | |
.bg-info { | |
background-color: #d9edf7; | |
} | |
a.bg-info:hover, | |
a.bg-info:focus { | |
background-color: #afd9ee; | |
} | |
.bg-warning { | |
background-color: #fcf8e3; | |
} | |
a.bg-warning:hover, | |
a.bg-warning:focus { | |
background-color: #f7ecb5; | |
} | |
.bg-danger { | |
background-color: #f2dede; | |
} | |
a.bg-danger:hover, | |
a.bg-danger:focus { | |
background-color: #e4b9b9; | |
} | |
.page-header { | |
padding-bottom: 8px; | |
margin: 36px 0 18px; | |
border-bottom: 1px solid #eeeeee; | |
} | |
ul, | |
ol { | |
margin-top: 0; | |
margin-bottom: 9px; | |
} | |
ul ul, | |
ol ul, | |
ul ol, | |
ol ol { | |
margin-bottom: 0; | |
} | |
.list-unstyled { | |
padding-left: 0; | |
list-style: none; | |
} | |
.list-inline { | |
padding-left: 0; | |
list-style: none; | |
margin-left: -5px; | |
} | |
.list-inline > li { | |
display: inline-block; | |
padding-left: 5px; | |
padding-right: 5px; | |
} | |
dl { | |
margin-top: 0; | |
margin-bottom: 18px; | |
} | |
dt, | |
dd { | |
line-height: 1.42857143; | |
} | |
dt { | |
font-weight: bold; | |
} | |
dd { | |
margin-left: 0; | |
} | |
@media (min-width: 541px) { | |
.dl-horizontal dt { | |
float: left; | |
width: 160px; | |
clear: left; | |
text-align: right; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
} | |
.dl-horizontal dd { | |
margin-left: 180px; | |
} | |
} | |
abbr[title], | |
abbr[data-original-title] { | |
cursor: help; | |
border-bottom: 1px dotted #777777; | |
} | |
.initialism { | |
font-size: 90%; | |
text-transform: uppercase; | |
} | |
blockquote { | |
padding: 9px 18px; | |
margin: 0 0 18px; | |
font-size: inherit; | |
border-left: 5px solid #eeeeee; | |
} | |
blockquote p:last-child, | |
blockquote ul:last-child, | |
blockquote ol:last-child { | |
margin-bottom: 0; | |
} | |
blockquote footer, | |
blockquote small, | |
blockquote .small { | |
display: block; | |
font-size: 80%; | |
line-height: 1.42857143; | |
color: #777777; | |
} | |
blockquote footer:before, | |
blockquote small:before, | |
blockquote .small:before { | |
content: '\2014 \00A0'; | |
} | |
.blockquote-reverse, | |
blockquote.pull-right { | |
padding-right: 15px; | |
padding-left: 0; | |
border-right: 5px solid #eeeeee; | |
border-left: 0; | |
text-align: right; | |
} | |
.blockquote-reverse footer:before, | |
blockquote.pull-right footer:before, | |
.blockquote-reverse small:before, | |
blockquote.pull-right small:before, | |
.blockquote-reverse .small:before, | |
blockquote.pull-right .small:before { | |
content: ''; | |
} | |
.blockquote-reverse footer:after, | |
blockquote.pull-right footer:after, | |
.blockquote-reverse small:after, | |
blockquote.pull-right small:after, | |
.blockquote-reverse .small:after, | |
blockquote.pull-right .small:after { | |
content: '\00A0 \2014'; | |
} | |
address { | |
margin-bottom: 18px; | |
font-style: normal; | |
line-height: 1.42857143; | |
} | |
code, | |
kbd, | |
pre, | |
samp { | |
font-family: monospace; | |
} | |
code { | |
padding: 2px 4px; | |
font-size: 90%; | |
color: #c7254e; | |
background-color: #f9f2f4; | |
border-radius: 2px; | |
} | |
kbd { | |
padding: 2px 4px; | |
font-size: 90%; | |
color: #888; | |
background-color: transparent; | |
border-radius: 1px; | |
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); | |
} | |
kbd kbd { | |
padding: 0; | |
font-size: 100%; | |
font-weight: bold; | |
box-shadow: none; | |
} | |
pre { | |
display: block; | |
padding: 8.5px; | |
margin: 0 0 9px; | |
font-size: 12px; | |
line-height: 1.42857143; | |
word-break: break-all; | |
word-wrap: break-word; | |
color: #333333; | |
background-color: #f5f5f5; | |
border: 1px solid #ccc; | |
border-radius: 2px; | |
} | |
pre code { | |
padding: 0; | |
font-size: inherit; | |
color: inherit; | |
white-space: pre-wrap; | |
background-color: transparent; | |
border-radius: 0; | |
} | |
.pre-scrollable { | |
max-height: 340px; | |
overflow-y: scroll; | |
} | |
.container { | |
margin-right: auto; | |
margin-left: auto; | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
@media (min-width: 768px) { | |
.container { | |
width: 768px; | |
} | |
} | |
@media (min-width: 992px) { | |
.container { | |
width: 940px; | |
} | |
} | |
@media (min-width: 1200px) { | |
.container { | |
width: 1140px; | |
} | |
} | |
.container-fluid { | |
margin-right: auto; | |
margin-left: auto; | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
.row { | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { | |
position: relative; | |
min-height: 1px; | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { | |
float: left; | |
} | |
.col-xs-12 { | |
width: 100%; | |
} | |
.col-xs-11 { | |
width: 91.66666667%; | |
} | |
.col-xs-10 { | |
width: 83.33333333%; | |
} | |
.col-xs-9 { | |
width: 75%; | |
} | |
.col-xs-8 { | |
width: 66.66666667%; | |
} | |
.col-xs-7 { | |
width: 58.33333333%; | |
} | |
.col-xs-6 { | |
width: 50%; | |
} | |
.col-xs-5 { | |
width: 41.66666667%; | |
} | |
.col-xs-4 { | |
width: 33.33333333%; | |
} | |
.col-xs-3 { | |
width: 25%; | |
} | |
.col-xs-2 { | |
width: 16.66666667%; | |
} | |
.col-xs-1 { | |
width: 8.33333333%; | |
} | |
.col-xs-pull-12 { | |
right: 100%; | |
} | |
.col-xs-pull-11 { | |
right: 91.66666667%; | |
} | |
.col-xs-pull-10 { | |
right: 83.33333333%; | |
} | |
.col-xs-pull-9 { | |
right: 75%; | |
} | |
.col-xs-pull-8 { | |
right: 66.66666667%; | |
} | |
.col-xs-pull-7 { | |
right: 58.33333333%; | |
} | |
.col-xs-pull-6 { | |
right: 50%; | |
} | |
.col-xs-pull-5 { | |
right: 41.66666667%; | |
} | |
.col-xs-pull-4 { | |
right: 33.33333333%; | |
} | |
.col-xs-pull-3 { | |
right: 25%; | |
} | |
.col-xs-pull-2 { | |
right: 16.66666667%; | |
} | |
.col-xs-pull-1 { | |
right: 8.33333333%; | |
} | |
.col-xs-pull-0 { | |
right: auto; | |
} | |
.col-xs-push-12 { | |
left: 100%; | |
} | |
.col-xs-push-11 { | |
left: 91.66666667%; | |
} | |
.col-xs-push-10 { | |
left: 83.33333333%; | |
} | |
.col-xs-push-9 { | |
left: 75%; | |
} | |
.col-xs-push-8 { | |
left: 66.66666667%; | |
} | |
.col-xs-push-7 { | |
left: 58.33333333%; | |
} | |
.col-xs-push-6 { | |
left: 50%; | |
} | |
.col-xs-push-5 { | |
left: 41.66666667%; | |
} | |
.col-xs-push-4 { | |
left: 33.33333333%; | |
} | |
.col-xs-push-3 { | |
left: 25%; | |
} | |
.col-xs-push-2 { | |
left: 16.66666667%; | |
} | |
.col-xs-push-1 { | |
left: 8.33333333%; | |
} | |
.col-xs-push-0 { | |
left: auto; | |
} | |
.col-xs-offset-12 { | |
margin-left: 100%; | |
} | |
.col-xs-offset-11 { | |
margin-left: 91.66666667%; | |
} | |
.col-xs-offset-10 { | |
margin-left: 83.33333333%; | |
} | |
.col-xs-offset-9 { | |
margin-left: 75%; | |
} | |
.col-xs-offset-8 { | |
margin-left: 66.66666667%; | |
} | |
.col-xs-offset-7 { | |
margin-left: 58.33333333%; | |
} | |
.col-xs-offset-6 { | |
margin-left: 50%; | |
} | |
.col-xs-offset-5 { | |
margin-left: 41.66666667%; | |
} | |
.col-xs-offset-4 { | |
margin-left: 33.33333333%; | |
} | |
.col-xs-offset-3 { | |
margin-left: 25%; | |
} | |
.col-xs-offset-2 { | |
margin-left: 16.66666667%; | |
} | |
.col-xs-offset-1 { | |
margin-left: 8.33333333%; | |
} | |
.col-xs-offset-0 { | |
margin-left: 0%; | |
} | |
@media (min-width: 768px) { | |
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { | |
float: left; | |
} | |
.col-sm-12 { | |
width: 100%; | |
} | |
.col-sm-11 { | |
width: 91.66666667%; | |
} | |
.col-sm-10 { | |
width: 83.33333333%; | |
} | |
.col-sm-9 { | |
width: 75%; | |
} | |
.col-sm-8 { | |
width: 66.66666667%; | |
} | |
.col-sm-7 { | |
width: 58.33333333%; | |
} | |
.col-sm-6 { | |
width: 50%; | |
} | |
.col-sm-5 { | |
width: 41.66666667%; | |
} | |
.col-sm-4 { | |
width: 33.33333333%; | |
} | |
.col-sm-3 { | |
width: 25%; | |
} | |
.col-sm-2 { | |
width: 16.66666667%; | |
} | |
.col-sm-1 { | |
width: 8.33333333%; | |
} | |
.col-sm-pull-12 { | |
right: 100%; | |
} | |
.col-sm-pull-11 { | |
right: 91.66666667%; | |
} | |
.col-sm-pull-10 { | |
right: 83.33333333%; | |
} | |
.col-sm-pull-9 { | |
right: 75%; | |
} | |
.col-sm-pull-8 { | |
right: 66.66666667%; | |
} | |
.col-sm-pull-7 { | |
right: 58.33333333%; | |
} | |
.col-sm-pull-6 { | |
right: 50%; | |
} | |
.col-sm-pull-5 { | |
right: 41.66666667%; | |
} | |
.col-sm-pull-4 { | |
right: 33.33333333%; | |
} | |
.col-sm-pull-3 { | |
right: 25%; | |
} | |
.col-sm-pull-2 { | |
right: 16.66666667%; | |
} | |
.col-sm-pull-1 { | |
right: 8.33333333%; | |
} | |
.col-sm-pull-0 { | |
right: auto; | |
} | |
.col-sm-push-12 { | |
left: 100%; | |
} | |
.col-sm-push-11 { | |
left: 91.66666667%; | |
} | |
.col-sm-push-10 { | |
left: 83.33333333%; | |
} | |
.col-sm-push-9 { | |
left: 75%; | |
} | |
.col-sm-push-8 { | |
left: 66.66666667%; | |
} | |
.col-sm-push-7 { | |
left: 58.33333333%; | |
} | |
.col-sm-push-6 { | |
left: 50%; | |
} | |
.col-sm-push-5 { | |
left: 41.66666667%; | |
} | |
.col-sm-push-4 { | |
left: 33.33333333%; | |
} | |
.col-sm-push-3 { | |
left: 25%; | |
} | |
.col-sm-push-2 { | |
left: 16.66666667%; | |
} | |
.col-sm-push-1 { | |
left: 8.33333333%; | |
} | |
.col-sm-push-0 { | |
left: auto; | |
} | |
.col-sm-offset-12 { | |
margin-left: 100%; | |
} | |
.col-sm-offset-11 { | |
margin-left: 91.66666667%; | |
} | |
.col-sm-offset-10 { | |
margin-left: 83.33333333%; | |
} | |
.col-sm-offset-9 { | |
margin-left: 75%; | |
} | |
.col-sm-offset-8 { | |
margin-left: 66.66666667%; | |
} | |
.col-sm-offset-7 { | |
margin-left: 58.33333333%; | |
} | |
.col-sm-offset-6 { | |
margin-left: 50%; | |
} | |
.col-sm-offset-5 { | |
margin-left: 41.66666667%; | |
} | |
.col-sm-offset-4 { | |
margin-left: 33.33333333%; | |
} | |
.col-sm-offset-3 { | |
margin-left: 25%; | |
} | |
.col-sm-offset-2 { | |
margin-left: 16.66666667%; | |
} | |
.col-sm-offset-1 { | |
margin-left: 8.33333333%; | |
} | |
.col-sm-offset-0 { | |
margin-left: 0%; | |
} | |
} | |
@media (min-width: 992px) { | |
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { | |
float: left; | |
} | |
.col-md-12 { | |
width: 100%; | |
} | |
.col-md-11 { | |
width: 91.66666667%; | |
} | |
.col-md-10 { | |
width: 83.33333333%; | |
} | |
.col-md-9 { | |
width: 75%; | |
} | |
.col-md-8 { | |
width: 66.66666667%; | |
} | |
.col-md-7 { | |
width: 58.33333333%; | |
} | |
.col-md-6 { | |
width: 50%; | |
} | |
.col-md-5 { | |
width: 41.66666667%; | |
} | |
.col-md-4 { | |
width: 33.33333333%; | |
} | |
.col-md-3 { | |
width: 25%; | |
} | |
.col-md-2 { | |
width: 16.66666667%; | |
} | |
.col-md-1 { | |
width: 8.33333333%; | |
} | |
.col-md-pull-12 { | |
right: 100%; | |
} | |
.col-md-pull-11 { | |
right: 91.66666667%; | |
} | |
.col-md-pull-10 { | |
right: 83.33333333%; | |
} | |
.col-md-pull-9 { | |
right: 75%; | |
} | |
.col-md-pull-8 { | |
right: 66.66666667%; | |
} | |
.col-md-pull-7 { | |
right: 58.33333333%; | |
} | |
.col-md-pull-6 { | |
right: 50%; | |
} | |
.col-md-pull-5 { | |
right: 41.66666667%; | |
} | |
.col-md-pull-4 { | |
right: 33.33333333%; | |
} | |
.col-md-pull-3 { | |
right: 25%; | |
} | |
.col-md-pull-2 { | |
right: 16.66666667%; | |
} | |
.col-md-pull-1 { | |
right: 8.33333333%; | |
} | |
.col-md-pull-0 { | |
right: auto; | |
} | |
.col-md-push-12 { | |
left: 100%; | |
} | |
.col-md-push-11 { | |
left: 91.66666667%; | |
} | |
.col-md-push-10 { | |
left: 83.33333333%; | |
} | |
.col-md-push-9 { | |
left: 75%; | |
} | |
.col-md-push-8 { | |
left: 66.66666667%; | |
} | |
.col-md-push-7 { | |
left: 58.33333333%; | |
} | |
.col-md-push-6 { | |
left: 50%; | |
} | |
.col-md-push-5 { | |
left: 41.66666667%; | |
} | |
.col-md-push-4 { | |
left: 33.33333333%; | |
} | |
.col-md-push-3 { | |
left: 25%; | |
} | |
.col-md-push-2 { | |
left: 16.66666667%; | |
} | |
.col-md-push-1 { | |
left: 8.33333333%; | |
} | |
.col-md-push-0 { | |
left: auto; | |
} | |
.col-md-offset-12 { | |
margin-left: 100%; | |
} | |
.col-md-offset-11 { | |
margin-left: 91.66666667%; | |
} | |
.col-md-offset-10 { | |
margin-left: 83.33333333%; | |
} | |
.col-md-offset-9 { | |
margin-left: 75%; | |
} | |
.col-md-offset-8 { | |
margin-left: 66.66666667%; | |
} | |
.col-md-offset-7 { | |
margin-left: 58.33333333%; | |
} | |
.col-md-offset-6 { | |
margin-left: 50%; | |
} | |
.col-md-offset-5 { | |
margin-left: 41.66666667%; | |
} | |
.col-md-offset-4 { | |
margin-left: 33.33333333%; | |
} | |
.col-md-offset-3 { | |
margin-left: 25%; | |
} | |
.col-md-offset-2 { | |
margin-left: 16.66666667%; | |
} | |
.col-md-offset-1 { | |
margin-left: 8.33333333%; | |
} | |
.col-md-offset-0 { | |
margin-left: 0%; | |
} | |
} | |
@media (min-width: 1200px) { | |
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { | |
float: left; | |
} | |
.col-lg-12 { | |
width: 100%; | |
} | |
.col-lg-11 { | |
width: 91.66666667%; | |
} | |
.col-lg-10 { | |
width: 83.33333333%; | |
} | |
.col-lg-9 { | |
width: 75%; | |
} | |
.col-lg-8 { | |
width: 66.66666667%; | |
} | |
.col-lg-7 { | |
width: 58.33333333%; | |
} | |
.col-lg-6 { | |
width: 50%; | |
} | |
.col-lg-5 { | |
width: 41.66666667%; | |
} | |
.col-lg-4 { | |
width: 33.33333333%; | |
} | |
.col-lg-3 { | |
width: 25%; | |
} | |
.col-lg-2 { | |
width: 16.66666667%; | |
} | |
.col-lg-1 { | |
width: 8.33333333%; | |
} | |
.col-lg-pull-12 { | |
right: 100%; | |
} | |
.col-lg-pull-11 { | |
right: 91.66666667%; | |
} | |
.col-lg-pull-10 { | |
right: 83.33333333%; | |
} | |
.col-lg-pull-9 { | |
right: 75%; | |
} | |
.col-lg-pull-8 { | |
right: 66.66666667%; | |
} | |
.col-lg-pull-7 { | |
right: 58.33333333%; | |
} | |
.col-lg-pull-6 { | |
right: 50%; | |
} | |
.col-lg-pull-5 { | |
right: 41.66666667%; | |
} | |
.col-lg-pull-4 { | |
right: 33.33333333%; | |
} | |
.col-lg-pull-3 { | |
right: 25%; | |
} | |
.col-lg-pull-2 { | |
right: 16.66666667%; | |
} | |
.col-lg-pull-1 { | |
right: 8.33333333%; | |
} | |
.col-lg-pull-0 { | |
right: auto; | |
} | |
.col-lg-push-12 { | |
left: 100%; | |
} | |
.col-lg-push-11 { | |
left: 91.66666667%; | |
} | |
.col-lg-push-10 { | |
left: 83.33333333%; | |
} | |
.col-lg-push-9 { | |
left: 75%; | |
} | |
.col-lg-push-8 { | |
left: 66.66666667%; | |
} | |
.col-lg-push-7 { | |
left: 58.33333333%; | |
} | |
.col-lg-push-6 { | |
left: 50%; | |
} | |
.col-lg-push-5 { | |
left: 41.66666667%; | |
} | |
.col-lg-push-4 { | |
left: 33.33333333%; | |
} | |
.col-lg-push-3 { | |
left: 25%; | |
} | |
.col-lg-push-2 { | |
left: 16.66666667%; | |
} | |
.col-lg-push-1 { | |
left: 8.33333333%; | |
} | |
.col-lg-push-0 { | |
left: auto; | |
} | |
.col-lg-offset-12 { | |
margin-left: 100%; | |
} | |
.col-lg-offset-11 { | |
margin-left: 91.66666667%; | |
} | |
.col-lg-offset-10 { | |
margin-left: 83.33333333%; | |
} | |
.col-lg-offset-9 { | |
margin-left: 75%; | |
} | |
.col-lg-offset-8 { | |
margin-left: 66.66666667%; | |
} | |
.col-lg-offset-7 { | |
margin-left: 58.33333333%; | |
} | |
.col-lg-offset-6 { | |
margin-left: 50%; | |
} | |
.col-lg-offset-5 { | |
margin-left: 41.66666667%; | |
} | |
.col-lg-offset-4 { | |
margin-left: 33.33333333%; | |
} | |
.col-lg-offset-3 { | |
margin-left: 25%; | |
} | |
.col-lg-offset-2 { | |
margin-left: 16.66666667%; | |
} | |
.col-lg-offset-1 { | |
margin-left: 8.33333333%; | |
} | |
.col-lg-offset-0 { | |
margin-left: 0%; | |
} | |
} | |
table { | |
background-color: transparent; | |
} | |
caption { | |
padding-top: 8px; | |
padding-bottom: 8px; | |
color: #777777; | |
text-align: left; | |
} | |
th { | |
text-align: left; | |
} | |
.table { | |
width: 100%; | |
max-width: 100%; | |
margin-bottom: 18px; | |
} | |
.table > thead > tr > th, | |
.table > tbody > tr > th, | |
.table > tfoot > tr > th, | |
.table > thead > tr > td, | |
.table > tbody > tr > td, | |
.table > tfoot > tr > td { | |
padding: 8px; | |
line-height: 1.42857143; | |
vertical-align: top; | |
border-top: 1px solid #ddd; | |
} | |
.table > thead > tr > th { | |
vertical-align: bottom; | |
border-bottom: 2px solid #ddd; | |
} | |
.table > caption + thead > tr:first-child > th, | |
.table > colgroup + thead > tr:first-child > th, | |
.table > thead:first-child > tr:first-child > th, | |
.table > caption + thead > tr:first-child > td, | |
.table > colgroup + thead > tr:first-child > td, | |
.table > thead:first-child > tr:first-child > td { | |
border-top: 0; | |
} | |
.table > tbody + tbody { | |
border-top: 2px solid #ddd; | |
} | |
.table .table { | |
background-color: #fff; | |
} | |
.table-condensed > thead > tr > th, | |
.table-condensed > tbody > tr > th, | |
.table-condensed > tfoot > tr > th, | |
.table-condensed > thead > tr > td, | |
.table-condensed > tbody > tr > td, | |
.table-condensed > tfoot > tr > td { | |
padding: 5px; | |
} | |
.table-bordered { | |
border: 1px solid #ddd; | |
} | |
.table-bordered > thead > tr > th, | |
.table-bordered > tbody > tr > th, | |
.table-bordered > tfoot > tr > th, | |
.table-bordered > thead > tr > td, | |
.table-bordered > tbody > tr > td, | |
.table-bordered > tfoot > tr > td { | |
border: 1px solid #ddd; | |
} | |
.table-bordered > thead > tr > th, | |
.table-bordered > thead > tr > td { | |
border-bottom-width: 2px; | |
} | |
.table-striped > tbody > tr:nth-of-type(odd) { | |
background-color: #f9f9f9; | |
} | |
.table-hover > tbody > tr:hover { | |
background-color: #f5f5f5; | |
} | |
table col[class*="col-"] { | |
position: static; | |
float: none; | |
display: table-column; | |
} | |
table td[class*="col-"], | |
table th[class*="col-"] { | |
position: static; | |
float: none; | |
display: table-cell; | |
} | |
.table > thead > tr > td.active, | |
.table > tbody > tr > td.active, | |
.table > tfoot > tr > td.active, | |
.table > thead > tr > th.active, | |
.table > tbody > tr > th.active, | |
.table > tfoot > tr > th.active, | |
.table > thead > tr.active > td, | |
.table > tbody > tr.active > td, | |
.table > tfoot > tr.active > td, | |
.table > thead > tr.active > th, | |
.table > tbody > tr.active > th, | |
.table > tfoot > tr.active > th { | |
background-color: #f5f5f5; | |
} | |
.table-hover > tbody > tr > td.active:hover, | |
.table-hover > tbody > tr > th.active:hover, | |
.table-hover > tbody > tr.active:hover > td, | |
.table-hover > tbody > tr:hover > .active, | |
.table-hover > tbody > tr.active:hover > th { | |
background-color: #e8e8e8; | |
} | |
.table > thead > tr > td.success, | |
.table > tbody > tr > td.success, | |
.table > tfoot > tr > td.success, | |
.table > thead > tr > th.success, | |
.table > tbody > tr > th.success, | |
.table > tfoot > tr > th.success, | |
.table > thead > tr.success > td, | |
.table > tbody > tr.success > td, | |
.table > tfoot > tr.success > td, | |
.table > thead > tr.success > th, | |
.table > tbody > tr.success > th, | |
.table > tfoot > tr.success > th { | |
background-color: #dff0d8; | |
} | |
.table-hover > tbody > tr > td.success:hover, | |
.table-hover > tbody > tr > th.success:hover, | |
.table-hover > tbody > tr.success:hover > td, | |
.table-hover > tbody > tr:hover > .success, | |
.table-hover > tbody > tr.success:hover > th { | |
background-color: #d0e9c6; | |
} | |
.table > thead > tr > td.info, | |
.table > tbody > tr > td.info, | |
.table > tfoot > tr > td.info, | |
.table > thead > tr > th.info, | |
.table > tbody > tr > th.info, | |
.table > tfoot > tr > th.info, | |
.table > thead > tr.info > td, | |
.table > tbody > tr.info > td, | |
.table > tfoot > tr.info > td, | |
.table > thead > tr.info > th, | |
.table > tbody > tr.info > th, | |
.table > tfoot > tr.info > th { | |
background-color: #d9edf7; | |
} | |
.table-hover > tbody > tr > td.info:hover, | |
.table-hover > tbody > tr > th.info:hover, | |
.table-hover > tbody > tr.info:hover > td, | |
.table-hover > tbody > tr:hover > .info, | |
.table-hover > tbody > tr.info:hover > th { | |
background-color: #c4e3f3; | |
} | |
.table > thead > tr > td.warning, | |
.table > tbody > tr > td.warning, | |
.table > tfoot > tr > td.warning, | |
.table > thead > tr > th.warning, | |
.table > tbody > tr > th.warning, | |
.table > tfoot > tr > th.warning, | |
.table > thead > tr.warning > td, | |
.table > tbody > tr.warning > td, | |
.table > tfoot > tr.warning > td, | |
.table > thead > tr.warning > th, | |
.table > tbody > tr.warning > th, | |
.table > tfoot > tr.warning > th { | |
background-color: #fcf8e3; | |
} | |
.table-hover > tbody > tr > td.warning:hover, | |
.table-hover > tbody > tr > th.warning:hover, | |
.table-hover > tbody > tr.warning:hover > td, | |
.table-hover > tbody > tr:hover > .warning, | |
.table-hover > tbody > tr.warning:hover > th { | |
background-color: #faf2cc; | |
} | |
.table > thead > tr > td.danger, | |
.table > tbody > tr > td.danger, | |
.table > tfoot > tr > td.danger, | |
.table > thead > tr > th.danger, | |
.table > tbody > tr > th.danger, | |
.table > tfoot > tr > th.danger, | |
.table > thead > tr.danger > td, | |
.table > tbody > tr.danger > td, | |
.table > tfoot > tr.danger > td, | |
.table > thead > tr.danger > th, | |
.table > tbody > tr.danger > th, | |
.table > tfoot > tr.danger > th { | |
background-color: #f2dede; | |
} | |
.table-hover > tbody > tr > td.danger:hover, | |
.table-hover > tbody > tr > th.danger:hover, | |
.table-hover > tbody > tr.danger:hover > td, | |
.table-hover > tbody > tr:hover > .danger, | |
.table-hover > tbody > tr.danger:hover > th { | |
background-color: #ebcccc; | |
} | |
.table-responsive { | |
overflow-x: auto; | |
min-height: 0.01%; | |
} | |
@media screen and (max-width: 767px) { | |
.table-responsive { | |
width: 100%; | |
margin-bottom: 13.5px; | |
overflow-y: hidden; | |
-ms-overflow-style: -ms-autohiding-scrollbar; | |
border: 1px solid #ddd; | |
} | |
.table-responsive > .table { | |
margin-bottom: 0; | |
} | |
.table-responsive > .table > thead > tr > th, | |
.table-responsive > .table > tbody > tr > th, | |
.table-responsive > .table > tfoot > tr > th, | |
.table-responsive > .table > thead > tr > td, | |
.table-responsive > .table > tbody > tr > td, | |
.table-responsive > .table > tfoot > tr > td { | |
white-space: nowrap; | |
} | |
.table-responsive > .table-bordered { | |
border: 0; | |
} | |
.table-responsive > .table-bordered > thead > tr > th:first-child, | |
.table-responsive > .table-bordered > tbody > tr > th:first-child, | |
.table-responsive > .table-bordered > tfoot > tr > th:first-child, | |
.table-responsive > .table-bordered > thead > tr > td:first-child, | |
.table-responsive > .table-bordered > tbody > tr > td:first-child, | |
.table-responsive > .table-bordered > tfoot > tr > td:first-child { | |
border-left: 0; | |
} | |
.table-responsive > .table-bordered > thead > tr > th:last-child, | |
.table-responsive > .table-bordered > tbody > tr > th:last-child, | |
.table-responsive > .table-bordered > tfoot > tr > th:last-child, | |
.table-responsive > .table-bordered > thead > tr > td:last-child, | |
.table-responsive > .table-bordered > tbody > tr > td:last-child, | |
.table-responsive > .table-bordered > tfoot > tr > td:last-child { | |
border-right: 0; | |
} | |
.table-responsive > .table-bordered > tbody > tr:last-child > th, | |
.table-responsive > .table-bordered > tfoot > tr:last-child > th, | |
.table-responsive > .table-bordered > tbody > tr:last-child > td, | |
.table-responsive > .table-bordered > tfoot > tr:last-child > td { | |
border-bottom: 0; | |
} | |
} | |
fieldset { | |
padding: 0; | |
margin: 0; | |
border: 0; | |
min-width: 0; | |
} | |
legend { | |
display: block; | |
width: 100%; | |
padding: 0; | |
margin-bottom: 18px; | |
font-size: 19.5px; | |
line-height: inherit; | |
color: #333333; | |
border: 0; | |
border-bottom: 1px solid #e5e5e5; | |
} | |
label { | |
display: inline-block; | |
max-width: 100%; | |
margin-bottom: 5px; | |
font-weight: bold; | |
} | |
input[type="search"] { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
input[type="radio"], | |
input[type="checkbox"] { | |
margin: 4px 0 0; | |
margin-top: 1px \9; | |
line-height: normal; | |
} | |
input[type="file"] { | |
display: block; | |
} | |
input[type="range"] { | |
display: block; | |
width: 100%; | |
} | |
select[multiple], | |
select[size] { | |
height: auto; | |
} | |
input[type="file"]:focus, | |
input[type="radio"]:focus, | |
input[type="checkbox"]:focus { | |
outline: thin dotted; | |
outline: 5px auto -webkit-focus-ring-color; | |
outline-offset: -2px; | |
} | |
output { | |
display: block; | |
padding-top: 7px; | |
font-size: 13px; | |
line-height: 1.42857143; | |
color: #555555; | |
} | |
.form-control { | |
display: block; | |
width: 100%; | |
height: 32px; | |
padding: 6px 12px; | |
font-size: 13px; | |
line-height: 1.42857143; | |
color: #555555; | |
background-color: #fff; | |
background-image: none; | |
border: 1px solid #ccc; | |
border-radius: 2px; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
} | |
.form-control:focus { | |
border-color: #66afe9; | |
outline: 0; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); | |
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); | |
} | |
.form-control::-moz-placeholder { | |
color: #999; | |
opacity: 1; | |
} | |
.form-control:-ms-input-placeholder { | |
color: #999; | |
} | |
.form-control::-webkit-input-placeholder { | |
color: #999; | |
} | |
.form-control::-ms-expand { | |
border: 0; | |
background-color: transparent; | |
} | |
.form-control[disabled], | |
.form-control[readonly], | |
fieldset[disabled] .form-control { | |
background-color: #eeeeee; | |
opacity: 1; | |
} | |
.form-control[disabled], | |
fieldset[disabled] .form-control { | |
cursor: not-allowed; | |
} | |
textarea.form-control { | |
height: auto; | |
} | |
input[type="search"] { | |
-webkit-appearance: none; | |
} | |
@media screen and (-webkit-min-device-pixel-ratio: 0) { | |
input[type="date"].form-control, | |
input[type="time"].form-control, | |
input[type="datetime-local"].form-control, | |
input[type="month"].form-control { | |
line-height: 32px; | |
} | |
input[type="date"].input-sm, | |
input[type="time"].input-sm, | |
input[type="datetime-local"].input-sm, | |
input[type="month"].input-sm, | |
.input-group-sm input[type="date"], | |
.input-group-sm input[type="time"], | |
.input-group-sm input[type="datetime-local"], | |
.input-group-sm input[type="month"] { | |
line-height: 30px; | |
} | |
input[type="date"].input-lg, | |
input[type="time"].input-lg, | |
input[type="datetime-local"].input-lg, | |
input[type="month"].input-lg, | |
.input-group-lg input[type="date"], | |
.input-group-lg input[type="time"], | |
.input-group-lg input[type="datetime-local"], | |
.input-group-lg input[type="month"] { | |
line-height: 45px; | |
} | |
} | |
.form-group { | |
margin-bottom: 15px; | |
} | |
.radio, | |
.checkbox { | |
position: relative; | |
display: block; | |
margin-top: 10px; | |
margin-bottom: 10px; | |
} | |
.radio label, | |
.checkbox label { | |
min-height: 18px; | |
padding-left: 20px; | |
margin-bottom: 0; | |
font-weight: normal; | |
cursor: pointer; | |
} | |
.radio input[type="radio"], | |
.radio-inline input[type="radio"], | |
.checkbox input[type="checkbox"], | |
.checkbox-inline input[type="checkbox"] { | |
position: absolute; | |
margin-left: -20px; | |
margin-top: 4px \9; | |
} | |
.radio + .radio, | |
.checkbox + .checkbox { | |
margin-top: -5px; | |
} | |
.radio-inline, | |
.checkbox-inline { | |
position: relative; | |
display: inline-block; | |
padding-left: 20px; | |
margin-bottom: 0; | |
vertical-align: middle; | |
font-weight: normal; | |
cursor: pointer; | |
} | |
.radio-inline + .radio-inline, | |
.checkbox-inline + .checkbox-inline { | |
margin-top: 0; | |
margin-left: 10px; | |
} | |
input[type="radio"][disabled], | |
input[type="checkbox"][disabled], | |
input[type="radio"].disabled, | |
input[type="checkbox"].disabled, | |
fieldset[disabled] input[type="radio"], | |
fieldset[disabled] input[type="checkbox"] { | |
cursor: not-allowed; | |
} | |
.radio-inline.disabled, | |
.checkbox-inline.disabled, | |
fieldset[disabled] .radio-inline, | |
fieldset[disabled] .checkbox-inline { | |
cursor: not-allowed; | |
} | |
.radio.disabled label, | |
.checkbox.disabled label, | |
fieldset[disabled] .radio label, | |
fieldset[disabled] .checkbox label { | |
cursor: not-allowed; | |
} | |
.form-control-static { | |
padding-top: 7px; | |
padding-bottom: 7px; | |
margin-bottom: 0; | |
min-height: 31px; | |
} | |
.form-control-static.input-lg, | |
.form-control-static.input-sm { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.input-sm { | |
height: 30px; | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
} | |
select.input-sm { | |
height: 30px; | |
line-height: 30px; | |
} | |
textarea.input-sm, | |
select[multiple].input-sm { | |
height: auto; | |
} | |
.form-group-sm .form-control { | |
height: 30px; | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
} | |
.form-group-sm select.form-control { | |
height: 30px; | |
line-height: 30px; | |
} | |
.form-group-sm textarea.form-control, | |
.form-group-sm select[multiple].form-control { | |
height: auto; | |
} | |
.form-group-sm .form-control-static { | |
height: 30px; | |
min-height: 30px; | |
padding: 6px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
} | |
.input-lg { | |
height: 45px; | |
padding: 10px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
border-radius: 3px; | |
} | |
select.input-lg { | |
height: 45px; | |
line-height: 45px; | |
} | |
textarea.input-lg, | |
select[multiple].input-lg { | |
height: auto; | |
} | |
.form-group-lg .form-control { | |
height: 45px; | |
padding: 10px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
border-radius: 3px; | |
} | |
.form-group-lg select.form-control { | |
height: 45px; | |
line-height: 45px; | |
} | |
.form-group-lg textarea.form-control, | |
.form-group-lg select[multiple].form-control { | |
height: auto; | |
} | |
.form-group-lg .form-control-static { | |
height: 45px; | |
min-height: 35px; | |
padding: 11px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
} | |
.has-feedback { | |
position: relative; | |
} | |
.has-feedback .form-control { | |
padding-right: 40px; | |
} | |
.form-control-feedback { | |
position: absolute; | |
top: 0; | |
right: 0; | |
z-index: 2; | |
display: block; | |
width: 32px; | |
height: 32px; | |
line-height: 32px; | |
text-align: center; | |
pointer-events: none; | |
} | |
.input-lg + .form-control-feedback, | |
.input-group-lg + .form-control-feedback, | |
.form-group-lg .form-control + .form-control-feedback { | |
width: 45px; | |
height: 45px; | |
line-height: 45px; | |
} | |
.input-sm + .form-control-feedback, | |
.input-group-sm + .form-control-feedback, | |
.form-group-sm .form-control + .form-control-feedback { | |
width: 30px; | |
height: 30px; | |
line-height: 30px; | |
} | |
.has-success .help-block, | |
.has-success .control-label, | |
.has-success .radio, | |
.has-success .checkbox, | |
.has-success .radio-inline, | |
.has-success .checkbox-inline, | |
.has-success.radio label, | |
.has-success.checkbox label, | |
.has-success.radio-inline label, | |
.has-success.checkbox-inline label { | |
color: #3c763d; | |
} | |
.has-success .form-control { | |
border-color: #3c763d; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
} | |
.has-success .form-control:focus { | |
border-color: #2b542c; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; | |
} | |
.has-success .input-group-addon { | |
color: #3c763d; | |
border-color: #3c763d; | |
background-color: #dff0d8; | |
} | |
.has-success .form-control-feedback { | |
color: #3c763d; | |
} | |
.has-warning .help-block, | |
.has-warning .control-label, | |
.has-warning .radio, | |
.has-warning .checkbox, | |
.has-warning .radio-inline, | |
.has-warning .checkbox-inline, | |
.has-warning.radio label, | |
.has-warning.checkbox label, | |
.has-warning.radio-inline label, | |
.has-warning.checkbox-inline label { | |
color: #8a6d3b; | |
} | |
.has-warning .form-control { | |
border-color: #8a6d3b; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
} | |
.has-warning .form-control:focus { | |
border-color: #66512c; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; | |
} | |
.has-warning .input-group-addon { | |
color: #8a6d3b; | |
border-color: #8a6d3b; | |
background-color: #fcf8e3; | |
} | |
.has-warning .form-control-feedback { | |
color: #8a6d3b; | |
} | |
.has-error .help-block, | |
.has-error .control-label, | |
.has-error .radio, | |
.has-error .checkbox, | |
.has-error .radio-inline, | |
.has-error .checkbox-inline, | |
.has-error.radio label, | |
.has-error.checkbox label, | |
.has-error.radio-inline label, | |
.has-error.checkbox-inline label { | |
color: #a94442; | |
} | |
.has-error .form-control { | |
border-color: #a94442; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
} | |
.has-error .form-control:focus { | |
border-color: #843534; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; | |
} | |
.has-error .input-group-addon { | |
color: #a94442; | |
border-color: #a94442; | |
background-color: #f2dede; | |
} | |
.has-error .form-control-feedback { | |
color: #a94442; | |
} | |
.has-feedback label ~ .form-control-feedback { | |
top: 23px; | |
} | |
.has-feedback label.sr-only ~ .form-control-feedback { | |
top: 0; | |
} | |
.help-block { | |
display: block; | |
margin-top: 5px; | |
margin-bottom: 10px; | |
color: #404040; | |
} | |
@media (min-width: 768px) { | |
.form-inline .form-group { | |
display: inline-block; | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.form-inline .form-control { | |
display: inline-block; | |
width: auto; | |
vertical-align: middle; | |
} | |
.form-inline .form-control-static { | |
display: inline-block; | |
} | |
.form-inline .input-group { | |
display: inline-table; | |
vertical-align: middle; | |
} | |
.form-inline .input-group .input-group-addon, | |
.form-inline .input-group .input-group-btn, | |
.form-inline .input-group .form-control { | |
width: auto; | |
} | |
.form-inline .input-group > .form-control { | |
width: 100%; | |
} | |
.form-inline .control-label { | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.form-inline .radio, | |
.form-inline .checkbox { | |
display: inline-block; | |
margin-top: 0; | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.form-inline .radio label, | |
.form-inline .checkbox label { | |
padding-left: 0; | |
} | |
.form-inline .radio input[type="radio"], | |
.form-inline .checkbox input[type="checkbox"] { | |
position: relative; | |
margin-left: 0; | |
} | |
.form-inline .has-feedback .form-control-feedback { | |
top: 0; | |
} | |
} | |
.form-horizontal .radio, | |
.form-horizontal .checkbox, | |
.form-horizontal .radio-inline, | |
.form-horizontal .checkbox-inline { | |
margin-top: 0; | |
margin-bottom: 0; | |
padding-top: 7px; | |
} | |
.form-horizontal .radio, | |
.form-horizontal .checkbox { | |
min-height: 25px; | |
} | |
.form-horizontal .form-group { | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
@media (min-width: 768px) { | |
.form-horizontal .control-label { | |
text-align: right; | |
margin-bottom: 0; | |
padding-top: 7px; | |
} | |
} | |
.form-horizontal .has-feedback .form-control-feedback { | |
right: 0px; | |
} | |
@media (min-width: 768px) { | |
.form-horizontal .form-group-lg .control-label { | |
padding-top: 11px; | |
font-size: 17px; | |
} | |
} | |
@media (min-width: 768px) { | |
.form-horizontal .form-group-sm .control-label { | |
padding-top: 6px; | |
font-size: 12px; | |
} | |
} | |
.btn { | |
display: inline-block; | |
margin-bottom: 0; | |
font-weight: normal; | |
text-align: center; | |
vertical-align: middle; | |
touch-action: manipulation; | |
cursor: pointer; | |
background-image: none; | |
border: 1px solid transparent; | |
white-space: nowrap; | |
padding: 6px 12px; | |
font-size: 13px; | |
line-height: 1.42857143; | |
border-radius: 2px; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
.btn:focus, | |
.btn:active:focus, | |
.btn.active:focus, | |
.btn.focus, | |
.btn:active.focus, | |
.btn.active.focus { | |
outline: thin dotted; | |
outline: 5px auto -webkit-focus-ring-color; | |
outline-offset: -2px; | |
} | |
.btn:hover, | |
.btn:focus, | |
.btn.focus { | |
color: #333; | |
text-decoration: none; | |
} | |
.btn:active, | |
.btn.active { | |
outline: 0; | |
background-image: none; | |
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); | |
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); | |
} | |
.btn.disabled, | |
.btn[disabled], | |
fieldset[disabled] .btn { | |
cursor: not-allowed; | |
opacity: 0.65; | |
filter: alpha(opacity=65); | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} | |
a.btn.disabled, | |
fieldset[disabled] a.btn { | |
pointer-events: none; | |
} | |
.btn-default { | |
color: #333; | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
.btn-default:focus, | |
.btn-default.focus { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #8c8c8c; | |
} | |
.btn-default:hover { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
.btn-default:active, | |
.btn-default.active, | |
.open > .dropdown-toggle.btn-default { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
.btn-default:active:hover, | |
.btn-default.active:hover, | |
.open > .dropdown-toggle.btn-default:hover, | |
.btn-default:active:focus, | |
.btn-default.active:focus, | |
.open > .dropdown-toggle.btn-default:focus, | |
.btn-default:active.focus, | |
.btn-default.active.focus, | |
.open > .dropdown-toggle.btn-default.focus { | |
color: #333; | |
background-color: #d4d4d4; | |
border-color: #8c8c8c; | |
} | |
.btn-default:active, | |
.btn-default.active, | |
.open > .dropdown-toggle.btn-default { | |
background-image: none; | |
} | |
.btn-default.disabled:hover, | |
.btn-default[disabled]:hover, | |
fieldset[disabled] .btn-default:hover, | |
.btn-default.disabled:focus, | |
.btn-default[disabled]:focus, | |
fieldset[disabled] .btn-default:focus, | |
.btn-default.disabled.focus, | |
.btn-default[disabled].focus, | |
fieldset[disabled] .btn-default.focus { | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
.btn-default .badge { | |
color: #fff; | |
background-color: #333; | |
} | |
.btn-primary { | |
color: #fff; | |
background-color: #337ab7; | |
border-color: #2e6da4; | |
} | |
.btn-primary:focus, | |
.btn-primary.focus { | |
color: #fff; | |
background-color: #286090; | |
border-color: #122b40; | |
} | |
.btn-primary:hover { | |
color: #fff; | |
background-color: #286090; | |
border-color: #204d74; | |
} | |
.btn-primary:active, | |
.btn-primary.active, | |
.open > .dropdown-toggle.btn-primary { | |
color: #fff; | |
background-color: #286090; | |
border-color: #204d74; | |
} | |
.btn-primary:active:hover, | |
.btn-primary.active:hover, | |
.open > .dropdown-toggle.btn-primary:hover, | |
.btn-primary:active:focus, | |
.btn-primary.active:focus, | |
.open > .dropdown-toggle.btn-primary:focus, | |
.btn-primary:active.focus, | |
.btn-primary.active.focus, | |
.open > .dropdown-toggle.btn-primary.focus { | |
color: #fff; | |
background-color: #204d74; | |
border-color: #122b40; | |
} | |
.btn-primary:active, | |
.btn-primary.active, | |
.open > .dropdown-toggle.btn-primary { | |
background-image: none; | |
} | |
.btn-primary.disabled:hover, | |
.btn-primary[disabled]:hover, | |
fieldset[disabled] .btn-primary:hover, | |
.btn-primary.disabled:focus, | |
.btn-primary[disabled]:focus, | |
fieldset[disabled] .btn-primary:focus, | |
.btn-primary.disabled.focus, | |
.btn-primary[disabled].focus, | |
fieldset[disabled] .btn-primary.focus { | |
background-color: #337ab7; | |
border-color: #2e6da4; | |
} | |
.btn-primary .badge { | |
color: #337ab7; | |
background-color: #fff; | |
} | |
.btn-success { | |
color: #fff; | |
background-color: #5cb85c; | |
border-color: #4cae4c; | |
} | |
.btn-success:focus, | |
.btn-success.focus { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #255625; | |
} | |
.btn-success:hover { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #398439; | |
} | |
.btn-success:active, | |
.btn-success.active, | |
.open > .dropdown-toggle.btn-success { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #398439; | |
} | |
.btn-success:active:hover, | |
.btn-success.active:hover, | |
.open > .dropdown-toggle.btn-success:hover, | |
.btn-success:active:focus, | |
.btn-success.active:focus, | |
.open > .dropdown-toggle.btn-success:focus, | |
.btn-success:active.focus, | |
.btn-success.active.focus, | |
.open > .dropdown-toggle.btn-success.focus { | |
color: #fff; | |
background-color: #398439; | |
border-color: #255625; | |
} | |
.btn-success:active, | |
.btn-success.active, | |
.open > .dropdown-toggle.btn-success { | |
background-image: none; | |
} | |
.btn-success.disabled:hover, | |
.btn-success[disabled]:hover, | |
fieldset[disabled] .btn-success:hover, | |
.btn-success.disabled:focus, | |
.btn-success[disabled]:focus, | |
fieldset[disabled] .btn-success:focus, | |
.btn-success.disabled.focus, | |
.btn-success[disabled].focus, | |
fieldset[disabled] .btn-success.focus { | |
background-color: #5cb85c; | |
border-color: #4cae4c; | |
} | |
.btn-success .badge { | |
color: #5cb85c; | |
background-color: #fff; | |
} | |
.btn-info { | |
color: #fff; | |
background-color: #5bc0de; | |
border-color: #46b8da; | |
} | |
.btn-info:focus, | |
.btn-info.focus { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #1b6d85; | |
} | |
.btn-info:hover { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #269abc; | |
} | |
.btn-info:active, | |
.btn-info.active, | |
.open > .dropdown-toggle.btn-info { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #269abc; | |
} | |
.btn-info:active:hover, | |
.btn-info.active:hover, | |
.open > .dropdown-toggle.btn-info:hover, | |
.btn-info:active:focus, | |
.btn-info.active:focus, | |
.open > .dropdown-toggle.btn-info:focus, | |
.btn-info:active.focus, | |
.btn-info.active.focus, | |
.open > .dropdown-toggle.btn-info.focus { | |
color: #fff; | |
background-color: #269abc; | |
border-color: #1b6d85; | |
} | |
.btn-info:active, | |
.btn-info.active, | |
.open > .dropdown-toggle.btn-info { | |
background-image: none; | |
} | |
.btn-info.disabled:hover, | |
.btn-info[disabled]:hover, | |
fieldset[disabled] .btn-info:hover, | |
.btn-info.disabled:focus, | |
.btn-info[disabled]:focus, | |
fieldset[disabled] .btn-info:focus, | |
.btn-info.disabled.focus, | |
.btn-info[disabled].focus, | |
fieldset[disabled] .btn-info.focus { | |
background-color: #5bc0de; | |
border-color: #46b8da; | |
} | |
.btn-info .badge { | |
color: #5bc0de; | |
background-color: #fff; | |
} | |
.btn-warning { | |
color: #fff; | |
background-color: #f0ad4e; | |
border-color: #eea236; | |
} | |
.btn-warning:focus, | |
.btn-warning.focus { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #985f0d; | |
} | |
.btn-warning:hover { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #d58512; | |
} | |
.btn-warning:active, | |
.btn-warning.active, | |
.open > .dropdown-toggle.btn-warning { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #d58512; | |
} | |
.btn-warning:active:hover, | |
.btn-warning.active:hover, | |
.open > .dropdown-toggle.btn-warning:hover, | |
.btn-warning:active:focus, | |
.btn-warning.active:focus, | |
.open > .dropdown-toggle.btn-warning:focus, | |
.btn-warning:active.focus, | |
.btn-warning.active.focus, | |
.open > .dropdown-toggle.btn-warning.focus { | |
color: #fff; | |
background-color: #d58512; | |
border-color: #985f0d; | |
} | |
.btn-warning:active, | |
.btn-warning.active, | |
.open > .dropdown-toggle.btn-warning { | |
background-image: none; | |
} | |
.btn-warning.disabled:hover, | |
.btn-warning[disabled]:hover, | |
fieldset[disabled] .btn-warning:hover, | |
.btn-warning.disabled:focus, | |
.btn-warning[disabled]:focus, | |
fieldset[disabled] .btn-warning:focus, | |
.btn-warning.disabled.focus, | |
.btn-warning[disabled].focus, | |
fieldset[disabled] .btn-warning.focus { | |
background-color: #f0ad4e; | |
border-color: #eea236; | |
} | |
.btn-warning .badge { | |
color: #f0ad4e; | |
background-color: #fff; | |
} | |
.btn-danger { | |
color: #fff; | |
background-color: #d9534f; | |
border-color: #d43f3a; | |
} | |
.btn-danger:focus, | |
.btn-danger.focus { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #761c19; | |
} | |
.btn-danger:hover { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #ac2925; | |
} | |
.btn-danger:active, | |
.btn-danger.active, | |
.open > .dropdown-toggle.btn-danger { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #ac2925; | |
} | |
.btn-danger:active:hover, | |
.btn-danger.active:hover, | |
.open > .dropdown-toggle.btn-danger:hover, | |
.btn-danger:active:focus, | |
.btn-danger.active:focus, | |
.open > .dropdown-toggle.btn-danger:focus, | |
.btn-danger:active.focus, | |
.btn-danger.active.focus, | |
.open > .dropdown-toggle.btn-danger.focus { | |
color: #fff; | |
background-color: #ac2925; | |
border-color: #761c19; | |
} | |
.btn-danger:active, | |
.btn-danger.active, | |
.open > .dropdown-toggle.btn-danger { | |
background-image: none; | |
} | |
.btn-danger.disabled:hover, | |
.btn-danger[disabled]:hover, | |
fieldset[disabled] .btn-danger:hover, | |
.btn-danger.disabled:focus, | |
.btn-danger[disabled]:focus, | |
fieldset[disabled] .btn-danger:focus, | |
.btn-danger.disabled.focus, | |
.btn-danger[disabled].focus, | |
fieldset[disabled] .btn-danger.focus { | |
background-color: #d9534f; | |
border-color: #d43f3a; | |
} | |
.btn-danger .badge { | |
color: #d9534f; | |
background-color: #fff; | |
} | |
.btn-link { | |
color: #337ab7; | |
font-weight: normal; | |
border-radius: 0; | |
} | |
.btn-link, | |
.btn-link:active, | |
.btn-link.active, | |
.btn-link[disabled], | |
fieldset[disabled] .btn-link { | |
background-color: transparent; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} | |
.btn-link, | |
.btn-link:hover, | |
.btn-link:focus, | |
.btn-link:active { | |
border-color: transparent; | |
} | |
.btn-link:hover, | |
.btn-link:focus { | |
color: #23527c; | |
text-decoration: underline; | |
background-color: transparent; | |
} | |
.btn-link[disabled]:hover, | |
fieldset[disabled] .btn-link:hover, | |
.btn-link[disabled]:focus, | |
fieldset[disabled] .btn-link:focus { | |
color: #777777; | |
text-decoration: none; | |
} | |
.btn-lg, | |
.btn-group-lg > .btn { | |
padding: 10px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
border-radius: 3px; | |
} | |
.btn-sm, | |
.btn-group-sm > .btn { | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
} | |
.btn-xs, | |
.btn-group-xs > .btn { | |
padding: 1px 5px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
} | |
.btn-block { | |
display: block; | |
width: 100%; | |
} | |
.btn-block + .btn-block { | |
margin-top: 5px; | |
} | |
input[type="submit"].btn-block, | |
input[type="reset"].btn-block, | |
input[type="button"].btn-block { | |
width: 100%; | |
} | |
.fade { | |
opacity: 0; | |
-webkit-transition: opacity 0.15s linear; | |
-o-transition: opacity 0.15s linear; | |
transition: opacity 0.15s linear; | |
} | |
.fade.in { | |
opacity: 1; | |
} | |
.collapse { | |
display: none; | |
} | |
.collapse.in { | |
display: block; | |
} | |
tr.collapse.in { | |
display: table-row; | |
} | |
tbody.collapse.in { | |
display: table-row-group; | |
} | |
.collapsing { | |
position: relative; | |
height: 0; | |
overflow: hidden; | |
-webkit-transition-property: height, visibility; | |
transition-property: height, visibility; | |
-webkit-transition-duration: 0.35s; | |
transition-duration: 0.35s; | |
-webkit-transition-timing-function: ease; | |
transition-timing-function: ease; | |
} | |
.caret { | |
display: inline-block; | |
width: 0; | |
height: 0; | |
margin-left: 2px; | |
vertical-align: middle; | |
border-top: 4px dashed; | |
border-top: 4px solid \9; | |
border-right: 4px solid transparent; | |
border-left: 4px solid transparent; | |
} | |
.dropup, | |
.dropdown { | |
position: relative; | |
} | |
.dropdown-toggle:focus { | |
outline: 0; | |
} | |
.dropdown-menu { | |
position: absolute; | |
top: 100%; | |
left: 0; | |
z-index: 1000; | |
display: none; | |
float: left; | |
min-width: 160px; | |
padding: 5px 0; | |
margin: 2px 0 0; | |
list-style: none; | |
font-size: 13px; | |
text-align: left; | |
background-color: #fff; | |
border: 1px solid #ccc; | |
border: 1px solid rgba(0, 0, 0, 0.15); | |
border-radius: 2px; | |
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); | |
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); | |
background-clip: padding-box; | |
} | |
.dropdown-menu.pull-right { | |
right: 0; | |
left: auto; | |
} | |
.dropdown-menu .divider { | |
height: 1px; | |
margin: 8px 0; | |
overflow: hidden; | |
background-color: #e5e5e5; | |
} | |
.dropdown-menu > li > a { | |
display: block; | |
padding: 3px 20px; | |
clear: both; | |
font-weight: normal; | |
line-height: 1.42857143; | |
color: #333333; | |
white-space: nowrap; | |
} | |
.dropdown-menu > li > a:hover, | |
.dropdown-menu > li > a:focus { | |
text-decoration: none; | |
color: #262626; | |
background-color: #f5f5f5; | |
} | |
.dropdown-menu > .active > a, | |
.dropdown-menu > .active > a:hover, | |
.dropdown-menu > .active > a:focus { | |
color: #fff; | |
text-decoration: none; | |
outline: 0; | |
background-color: #337ab7; | |
} | |
.dropdown-menu > .disabled > a, | |
.dropdown-menu > .disabled > a:hover, | |
.dropdown-menu > .disabled > a:focus { | |
color: #777777; | |
} | |
.dropdown-menu > .disabled > a:hover, | |
.dropdown-menu > .disabled > a:focus { | |
text-decoration: none; | |
background-color: transparent; | |
background-image: none; | |
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
cursor: not-allowed; | |
} | |
.open > .dropdown-menu { | |
display: block; | |
} | |
.open > a { | |
outline: 0; | |
} | |
.dropdown-menu-right { | |
left: auto; | |
right: 0; | |
} | |
.dropdown-menu-left { | |
left: 0; | |
right: auto; | |
} | |
.dropdown-header { | |
display: block; | |
padding: 3px 20px; | |
font-size: 12px; | |
line-height: 1.42857143; | |
color: #777777; | |
white-space: nowrap; | |
} | |
.dropdown-backdrop { | |
position: fixed; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
top: 0; | |
z-index: 990; | |
} | |
.pull-right > .dropdown-menu { | |
right: 0; | |
left: auto; | |
} | |
.dropup .caret, | |
.navbar-fixed-bottom .dropdown .caret { | |
border-top: 0; | |
border-bottom: 4px dashed; | |
border-bottom: 4px solid \9; | |
content: ""; | |
} | |
.dropup .dropdown-menu, | |
.navbar-fixed-bottom .dropdown .dropdown-menu { | |
top: auto; | |
bottom: 100%; | |
margin-bottom: 2px; | |
} | |
@media (min-width: 541px) { | |
.navbar-right .dropdown-menu { | |
left: auto; | |
right: 0; | |
} | |
.navbar-right .dropdown-menu-left { | |
left: 0; | |
right: auto; | |
} | |
} | |
.btn-group, | |
.btn-group-vertical { | |
position: relative; | |
display: inline-block; | |
vertical-align: middle; | |
} | |
.btn-group > .btn, | |
.btn-group-vertical > .btn { | |
position: relative; | |
float: left; | |
} | |
.btn-group > .btn:hover, | |
.btn-group-vertical > .btn:hover, | |
.btn-group > .btn:focus, | |
.btn-group-vertical > .btn:focus, | |
.btn-group > .btn:active, | |
.btn-group-vertical > .btn:active, | |
.btn-group > .btn.active, | |
.btn-group-vertical > .btn.active { | |
z-index: 2; | |
} | |
.btn-group .btn + .btn, | |
.btn-group .btn + .btn-group, | |
.btn-group .btn-group + .btn, | |
.btn-group .btn-group + .btn-group { | |
margin-left: -1px; | |
} | |
.btn-toolbar { | |
margin-left: -5px; | |
} | |
.btn-toolbar .btn, | |
.btn-toolbar .btn-group, | |
.btn-toolbar .input-group { | |
float: left; | |
} | |
.btn-toolbar > .btn, | |
.btn-toolbar > .btn-group, | |
.btn-toolbar > .input-group { | |
margin-left: 5px; | |
} | |
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { | |
border-radius: 0; | |
} | |
.btn-group > .btn:first-child { | |
margin-left: 0; | |
} | |
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { | |
border-bottom-right-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.btn-group > .btn:last-child:not(:first-child), | |
.btn-group > .dropdown-toggle:not(:first-child) { | |
border-bottom-left-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.btn-group > .btn-group { | |
float: left; | |
} | |
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { | |
border-radius: 0; | |
} | |
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, | |
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { | |
border-bottom-right-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { | |
border-bottom-left-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.btn-group .dropdown-toggle:active, | |
.btn-group.open .dropdown-toggle { | |
outline: 0; | |
} | |
.btn-group > .btn + .dropdown-toggle { | |
padding-left: 8px; | |
padding-right: 8px; | |
} | |
.btn-group > .btn-lg + .dropdown-toggle { | |
padding-left: 12px; | |
padding-right: 12px; | |
} | |
.btn-group.open .dropdown-toggle { | |
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); | |
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); | |
} | |
.btn-group.open .dropdown-toggle.btn-link { | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} | |
.btn .caret { | |
margin-left: 0; | |
} | |
.btn-lg .caret { | |
border-width: 5px 5px 0; | |
border-bottom-width: 0; | |
} | |
.dropup .btn-lg .caret { | |
border-width: 0 5px 5px; | |
} | |
.btn-group-vertical > .btn, | |
.btn-group-vertical > .btn-group, | |
.btn-group-vertical > .btn-group > .btn { | |
display: block; | |
float: none; | |
width: 100%; | |
max-width: 100%; | |
} | |
.btn-group-vertical > .btn-group > .btn { | |
float: none; | |
} | |
.btn-group-vertical > .btn + .btn, | |
.btn-group-vertical > .btn + .btn-group, | |
.btn-group-vertical > .btn-group + .btn, | |
.btn-group-vertical > .btn-group + .btn-group { | |
margin-top: -1px; | |
margin-left: 0; | |
} | |
.btn-group-vertical > .btn:not(:first-child):not(:last-child) { | |
border-radius: 0; | |
} | |
.btn-group-vertical > .btn:first-child:not(:last-child) { | |
border-top-right-radius: 2px; | |
border-top-left-radius: 2px; | |
border-bottom-right-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
.btn-group-vertical > .btn:last-child:not(:first-child) { | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
border-bottom-right-radius: 2px; | |
border-bottom-left-radius: 2px; | |
} | |
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { | |
border-radius: 0; | |
} | |
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, | |
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { | |
border-bottom-right-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.btn-group-justified { | |
display: table; | |
width: 100%; | |
table-layout: fixed; | |
border-collapse: separate; | |
} | |
.btn-group-justified > .btn, | |
.btn-group-justified > .btn-group { | |
float: none; | |
display: table-cell; | |
width: 1%; | |
} | |
.btn-group-justified > .btn-group .btn { | |
width: 100%; | |
} | |
.btn-group-justified > .btn-group .dropdown-menu { | |
left: auto; | |
} | |
[data-toggle="buttons"] > .btn input[type="radio"], | |
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], | |
[data-toggle="buttons"] > .btn input[type="checkbox"], | |
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { | |
position: absolute; | |
clip: rect(0, 0, 0, 0); | |
pointer-events: none; | |
} | |
.input-group { | |
position: relative; | |
display: table; | |
border-collapse: separate; | |
} | |
.input-group[class*="col-"] { | |
float: none; | |
padding-left: 0; | |
padding-right: 0; | |
} | |
.input-group .form-control { | |
position: relative; | |
z-index: 2; | |
float: left; | |
width: 100%; | |
margin-bottom: 0; | |
} | |
.input-group .form-control:focus { | |
z-index: 3; | |
} | |
.input-group-lg > .form-control, | |
.input-group-lg > .input-group-addon, | |
.input-group-lg > .input-group-btn > .btn { | |
height: 45px; | |
padding: 10px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
border-radius: 3px; | |
} | |
select.input-group-lg > .form-control, | |
select.input-group-lg > .input-group-addon, | |
select.input-group-lg > .input-group-btn > .btn { | |
height: 45px; | |
line-height: 45px; | |
} | |
textarea.input-group-lg > .form-control, | |
textarea.input-group-lg > .input-group-addon, | |
textarea.input-group-lg > .input-group-btn > .btn, | |
select[multiple].input-group-lg > .form-control, | |
select[multiple].input-group-lg > .input-group-addon, | |
select[multiple].input-group-lg > .input-group-btn > .btn { | |
height: auto; | |
} | |
.input-group-sm > .form-control, | |
.input-group-sm > .input-group-addon, | |
.input-group-sm > .input-group-btn > .btn { | |
height: 30px; | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
} | |
select.input-group-sm > .form-control, | |
select.input-group-sm > .input-group-addon, | |
select.input-group-sm > .input-group-btn > .btn { | |
height: 30px; | |
line-height: 30px; | |
} | |
textarea.input-group-sm > .form-control, | |
textarea.input-group-sm > .input-group-addon, | |
textarea.input-group-sm > .input-group-btn > .btn, | |
select[multiple].input-group-sm > .form-control, | |
select[multiple].input-group-sm > .input-group-addon, | |
select[multiple].input-group-sm > .input-group-btn > .btn { | |
height: auto; | |
} | |
.input-group-addon, | |
.input-group-btn, | |
.input-group .form-control { | |
display: table-cell; | |
} | |
.input-group-addon:not(:first-child):not(:last-child), | |
.input-group-btn:not(:first-child):not(:last-child), | |
.input-group .form-control:not(:first-child):not(:last-child) { | |
border-radius: 0; | |
} | |
.input-group-addon, | |
.input-group-btn { | |
width: 1%; | |
white-space: nowrap; | |
vertical-align: middle; | |
} | |
.input-group-addon { | |
padding: 6px 12px; | |
font-size: 13px; | |
font-weight: normal; | |
line-height: 1; | |
color: #555555; | |
text-align: center; | |
background-color: #eeeeee; | |
border: 1px solid #ccc; | |
border-radius: 2px; | |
} | |
.input-group-addon.input-sm { | |
padding: 5px 10px; | |
font-size: 12px; | |
border-radius: 1px; | |
} | |
.input-group-addon.input-lg { | |
padding: 10px 16px; | |
font-size: 17px; | |
border-radius: 3px; | |
} | |
.input-group-addon input[type="radio"], | |
.input-group-addon input[type="checkbox"] { | |
margin-top: 0; | |
} | |
.input-group .form-control:first-child, | |
.input-group-addon:first-child, | |
.input-group-btn:first-child > .btn, | |
.input-group-btn:first-child > .btn-group > .btn, | |
.input-group-btn:first-child > .dropdown-toggle, | |
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), | |
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { | |
border-bottom-right-radius: 0; | |
border-top-right-radius: 0; | |
} | |
.input-group-addon:first-child { | |
border-right: 0; | |
} | |
.input-group .form-control:last-child, | |
.input-group-addon:last-child, | |
.input-group-btn:last-child > .btn, | |
.input-group-btn:last-child > .btn-group > .btn, | |
.input-group-btn:last-child > .dropdown-toggle, | |
.input-group-btn:first-child > .btn:not(:first-child), | |
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { | |
border-bottom-left-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.input-group-addon:last-child { | |
border-left: 0; | |
} | |
.input-group-btn { | |
position: relative; | |
font-size: 0; | |
white-space: nowrap; | |
} | |
.input-group-btn > .btn { | |
position: relative; | |
} | |
.input-group-btn > .btn + .btn { | |
margin-left: -1px; | |
} | |
.input-group-btn > .btn:hover, | |
.input-group-btn > .btn:focus, | |
.input-group-btn > .btn:active { | |
z-index: 2; | |
} | |
.input-group-btn:first-child > .btn, | |
.input-group-btn:first-child > .btn-group { | |
margin-right: -1px; | |
} | |
.input-group-btn:last-child > .btn, | |
.input-group-btn:last-child > .btn-group { | |
z-index: 2; | |
margin-left: -1px; | |
} | |
.nav { | |
margin-bottom: 0; | |
padding-left: 0; | |
list-style: none; | |
} | |
.nav > li { | |
position: relative; | |
display: block; | |
} | |
.nav > li > a { | |
position: relative; | |
display: block; | |
padding: 10px 15px; | |
} | |
.nav > li > a:hover, | |
.nav > li > a:focus { | |
text-decoration: none; | |
background-color: #eeeeee; | |
} | |
.nav > li.disabled > a { | |
color: #777777; | |
} | |
.nav > li.disabled > a:hover, | |
.nav > li.disabled > a:focus { | |
color: #777777; | |
text-decoration: none; | |
background-color: transparent; | |
cursor: not-allowed; | |
} | |
.nav .open > a, | |
.nav .open > a:hover, | |
.nav .open > a:focus { | |
background-color: #eeeeee; | |
border-color: #337ab7; | |
} | |
.nav .nav-divider { | |
height: 1px; | |
margin: 8px 0; | |
overflow: hidden; | |
background-color: #e5e5e5; | |
} | |
.nav > li > a > img { | |
max-width: none; | |
} | |
.nav-tabs { | |
border-bottom: 1px solid #ddd; | |
} | |
.nav-tabs > li { | |
float: left; | |
margin-bottom: -1px; | |
} | |
.nav-tabs > li > a { | |
margin-right: 2px; | |
line-height: 1.42857143; | |
border: 1px solid transparent; | |
border-radius: 2px 2px 0 0; | |
} | |
.nav-tabs > li > a:hover { | |
border-color: #eeeeee #eeeeee #ddd; | |
} | |
.nav-tabs > li.active > a, | |
.nav-tabs > li.active > a:hover, | |
.nav-tabs > li.active > a:focus { | |
color: #555555; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
border-bottom-color: transparent; | |
cursor: default; | |
} | |
.nav-tabs.nav-justified { | |
width: 100%; | |
border-bottom: 0; | |
} | |
.nav-tabs.nav-justified > li { | |
float: none; | |
} | |
.nav-tabs.nav-justified > li > a { | |
text-align: center; | |
margin-bottom: 5px; | |
} | |
.nav-tabs.nav-justified > .dropdown .dropdown-menu { | |
top: auto; | |
left: auto; | |
} | |
@media (min-width: 768px) { | |
.nav-tabs.nav-justified > li { | |
display: table-cell; | |
width: 1%; | |
} | |
.nav-tabs.nav-justified > li > a { | |
margin-bottom: 0; | |
} | |
} | |
.nav-tabs.nav-justified > li > a { | |
margin-right: 0; | |
border-radius: 2px; | |
} | |
.nav-tabs.nav-justified > .active > a, | |
.nav-tabs.nav-justified > .active > a:hover, | |
.nav-tabs.nav-justified > .active > a:focus { | |
border: 1px solid #ddd; | |
} | |
@media (min-width: 768px) { | |
.nav-tabs.nav-justified > li > a { | |
border-bottom: 1px solid #ddd; | |
border-radius: 2px 2px 0 0; | |
} | |
.nav-tabs.nav-justified > .active > a, | |
.nav-tabs.nav-justified > .active > a:hover, | |
.nav-tabs.nav-justified > .active > a:focus { | |
border-bottom-color: #fff; | |
} | |
} | |
.nav-pills > li { | |
float: left; | |
} | |
.nav-pills > li > a { | |
border-radius: 2px; | |
} | |
.nav-pills > li + li { | |
margin-left: 2px; | |
} | |
.nav-pills > li.active > a, | |
.nav-pills > li.active > a:hover, | |
.nav-pills > li.active > a:focus { | |
color: #fff; | |
background-color: #337ab7; | |
} | |
.nav-stacked > li { | |
float: none; | |
} | |
.nav-stacked > li + li { | |
margin-top: 2px; | |
margin-left: 0; | |
} | |
.nav-justified { | |
width: 100%; | |
} | |
.nav-justified > li { | |
float: none; | |
} | |
.nav-justified > li > a { | |
text-align: center; | |
margin-bottom: 5px; | |
} | |
.nav-justified > .dropdown .dropdown-menu { | |
top: auto; | |
left: auto; | |
} | |
@media (min-width: 768px) { | |
.nav-justified > li { | |
display: table-cell; | |
width: 1%; | |
} | |
.nav-justified > li > a { | |
margin-bottom: 0; | |
} | |
} | |
.nav-tabs-justified { | |
border-bottom: 0; | |
} | |
.nav-tabs-justified > li > a { | |
margin-right: 0; | |
border-radius: 2px; | |
} | |
.nav-tabs-justified > .active > a, | |
.nav-tabs-justified > .active > a:hover, | |
.nav-tabs-justified > .active > a:focus { | |
border: 1px solid #ddd; | |
} | |
@media (min-width: 768px) { | |
.nav-tabs-justified > li > a { | |
border-bottom: 1px solid #ddd; | |
border-radius: 2px 2px 0 0; | |
} | |
.nav-tabs-justified > .active > a, | |
.nav-tabs-justified > .active > a:hover, | |
.nav-tabs-justified > .active > a:focus { | |
border-bottom-color: #fff; | |
} | |
} | |
.tab-content > .tab-pane { | |
display: none; | |
} | |
.tab-content > .active { | |
display: block; | |
} | |
.nav-tabs .dropdown-menu { | |
margin-top: -1px; | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.navbar { | |
position: relative; | |
min-height: 30px; | |
margin-bottom: 18px; | |
border: 1px solid transparent; | |
} | |
@media (min-width: 541px) { | |
.navbar { | |
border-radius: 2px; | |
} | |
} | |
@media (min-width: 541px) { | |
.navbar-header { | |
float: left; | |
} | |
} | |
.navbar-collapse { | |
overflow-x: visible; | |
padding-right: 0px; | |
padding-left: 0px; | |
border-top: 1px solid transparent; | |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); | |
-webkit-overflow-scrolling: touch; | |
} | |
.navbar-collapse.in { | |
overflow-y: auto; | |
} | |
@media (min-width: 541px) { | |
.navbar-collapse { | |
width: auto; | |
border-top: 0; | |
box-shadow: none; | |
} | |
.navbar-collapse.collapse { | |
display: block !important; | |
height: auto !important; | |
padding-bottom: 0; | |
overflow: visible !important; | |
} | |
.navbar-collapse.in { | |
overflow-y: visible; | |
} | |
.navbar-fixed-top .navbar-collapse, | |
.navbar-static-top .navbar-collapse, | |
.navbar-fixed-bottom .navbar-collapse { | |
padding-left: 0; | |
padding-right: 0; | |
} | |
} | |
.navbar-fixed-top .navbar-collapse, | |
.navbar-fixed-bottom .navbar-collapse { | |
max-height: 340px; | |
} | |
@media (max-device-width: 540px) and (orientation: landscape) { | |
.navbar-fixed-top .navbar-collapse, | |
.navbar-fixed-bottom .navbar-collapse { | |
max-height: 200px; | |
} | |
} | |
.container > .navbar-header, | |
.container-fluid > .navbar-header, | |
.container > .navbar-collapse, | |
.container-fluid > .navbar-collapse { | |
margin-right: 0px; | |
margin-left: 0px; | |
} | |
@media (min-width: 541px) { | |
.container > .navbar-header, | |
.container-fluid > .navbar-header, | |
.container > .navbar-collapse, | |
.container-fluid > .navbar-collapse { | |
margin-right: 0; | |
margin-left: 0; | |
} | |
} | |
.navbar-static-top { | |
z-index: 1000; | |
border-width: 0 0 1px; | |
} | |
@media (min-width: 541px) { | |
.navbar-static-top { | |
border-radius: 0; | |
} | |
} | |
.navbar-fixed-top, | |
.navbar-fixed-bottom { | |
position: fixed; | |
right: 0; | |
left: 0; | |
z-index: 1030; | |
} | |
@media (min-width: 541px) { | |
.navbar-fixed-top, | |
.navbar-fixed-bottom { | |
border-radius: 0; | |
} | |
} | |
.navbar-fixed-top { | |
top: 0; | |
border-width: 0 0 1px; | |
} | |
.navbar-fixed-bottom { | |
bottom: 0; | |
margin-bottom: 0; | |
border-width: 1px 0 0; | |
} | |
.navbar-brand { | |
float: left; | |
padding: 6px 0px; | |
font-size: 17px; | |
line-height: 18px; | |
height: 30px; | |
} | |
.navbar-brand:hover, | |
.navbar-brand:focus { | |
text-decoration: none; | |
} | |
.navbar-brand > img { | |
display: block; | |
} | |
@media (min-width: 541px) { | |
.navbar > .container .navbar-brand, | |
.navbar > .container-fluid .navbar-brand { | |
margin-left: 0px; | |
} | |
} | |
.navbar-toggle { | |
position: relative; | |
float: right; | |
margin-right: 0px; | |
padding: 9px 10px; | |
margin-top: -2px; | |
margin-bottom: -2px; | |
background-color: transparent; | |
background-image: none; | |
border: 1px solid transparent; | |
border-radius: 2px; | |
} | |
.navbar-toggle:focus { | |
outline: 0; | |
} | |
.navbar-toggle .icon-bar { | |
display: block; | |
width: 22px; | |
height: 2px; | |
border-radius: 1px; | |
} | |
.navbar-toggle .icon-bar + .icon-bar { | |
margin-top: 4px; | |
} | |
@media (min-width: 541px) { | |
.navbar-toggle { | |
display: none; | |
} | |
} | |
.navbar-nav { | |
margin: 3px 0px; | |
} | |
.navbar-nav > li > a { | |
padding-top: 10px; | |
padding-bottom: 10px; | |
line-height: 18px; | |
} | |
@media (max-width: 540px) { | |
.navbar-nav .open .dropdown-menu { | |
position: static; | |
float: none; | |
width: auto; | |
margin-top: 0; | |
background-color: transparent; | |
border: 0; | |
box-shadow: none; | |
} | |
.navbar-nav .open .dropdown-menu > li > a, | |
.navbar-nav .open .dropdown-menu .dropdown-header { | |
padding: 5px 15px 5px 25px; | |
} | |
.navbar-nav .open .dropdown-menu > li > a { | |
line-height: 18px; | |
} | |
.navbar-nav .open .dropdown-menu > li > a:hover, | |
.navbar-nav .open .dropdown-menu > li > a:focus { | |
background-image: none; | |
} | |
} | |
@media (min-width: 541px) { | |
.navbar-nav { | |
float: left; | |
margin: 0; | |
} | |
.navbar-nav > li { | |
float: left; | |
} | |
.navbar-nav > li > a { | |
padding-top: 6px; | |
padding-bottom: 6px; | |
} | |
} | |
.navbar-form { | |
margin-left: 0px; | |
margin-right: 0px; | |
padding: 10px 0px; | |
border-top: 1px solid transparent; | |
border-bottom: 1px solid transparent; | |
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); | |
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); | |
margin-top: -1px; | |
margin-bottom: -1px; | |
} | |
@media (min-width: 768px) { | |
.navbar-form .form-group { | |
display: inline-block; | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.navbar-form .form-control { | |
display: inline-block; | |
width: auto; | |
vertical-align: middle; | |
} | |
.navbar-form .form-control-static { | |
display: inline-block; | |
} | |
.navbar-form .input-group { | |
display: inline-table; | |
vertical-align: middle; | |
} | |
.navbar-form .input-group .input-group-addon, | |
.navbar-form .input-group .input-group-btn, | |
.navbar-form .input-group .form-control { | |
width: auto; | |
} | |
.navbar-form .input-group > .form-control { | |
width: 100%; | |
} | |
.navbar-form .control-label { | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.navbar-form .radio, | |
.navbar-form .checkbox { | |
display: inline-block; | |
margin-top: 0; | |
margin-bottom: 0; | |
vertical-align: middle; | |
} | |
.navbar-form .radio label, | |
.navbar-form .checkbox label { | |
padding-left: 0; | |
} | |
.navbar-form .radio input[type="radio"], | |
.navbar-form .checkbox input[type="checkbox"] { | |
position: relative; | |
margin-left: 0; | |
} | |
.navbar-form .has-feedback .form-control-feedback { | |
top: 0; | |
} | |
} | |
@media (max-width: 540px) { | |
.navbar-form .form-group { | |
margin-bottom: 5px; | |
} | |
.navbar-form .form-group:last-child { | |
margin-bottom: 0; | |
} | |
} | |
@media (min-width: 541px) { | |
.navbar-form { | |
width: auto; | |
border: 0; | |
margin-left: 0; | |
margin-right: 0; | |
padding-top: 0; | |
padding-bottom: 0; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} | |
} | |
.navbar-nav > li > .dropdown-menu { | |
margin-top: 0; | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { | |
margin-bottom: 0; | |
border-top-right-radius: 2px; | |
border-top-left-radius: 2px; | |
border-bottom-right-radius: 0; | |
border-bottom-left-radius: 0; | |
} | |
.navbar-btn { | |
margin-top: -1px; | |
margin-bottom: -1px; | |
} | |
.navbar-btn.btn-sm { | |
margin-top: 0px; | |
margin-bottom: 0px; | |
} | |
.navbar-btn.btn-xs { | |
margin-top: 4px; | |
margin-bottom: 4px; | |
} | |
.navbar-text { | |
margin-top: 6px; | |
margin-bottom: 6px; | |
} | |
@media (min-width: 541px) { | |
.navbar-text { | |
float: left; | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
} | |
@media (min-width: 541px) { | |
.navbar-left { | |
float: left !important; | |
float: left; | |
} | |
.navbar-right { | |
float: right !important; | |
float: right; | |
margin-right: 0px; | |
} | |
.navbar-right ~ .navbar-right { | |
margin-right: 0; | |
} | |
} | |
.navbar-default { | |
background-color: #f8f8f8; | |
border-color: #e7e7e7; | |
} | |
.navbar-default .navbar-brand { | |
color: #777; | |
} | |
.navbar-default .navbar-brand:hover, | |
.navbar-default .navbar-brand:focus { | |
color: #5e5e5e; | |
background-color: transparent; | |
} | |
.navbar-default .navbar-text { | |
color: #777; | |
} | |
.navbar-default .navbar-nav > li > a { | |
color: #777; | |
} | |
.navbar-default .navbar-nav > li > a:hover, | |
.navbar-default .navbar-nav > li > a:focus { | |
color: #333; | |
background-color: transparent; | |
} | |
.navbar-default .navbar-nav > .active > a, | |
.navbar-default .navbar-nav > .active > a:hover, | |
.navbar-default .navbar-nav > .active > a:focus { | |
color: #555; | |
background-color: #e7e7e7; | |
} | |
.navbar-default .navbar-nav > .disabled > a, | |
.navbar-default .navbar-nav > .disabled > a:hover, | |
.navbar-default .navbar-nav > .disabled > a:focus { | |
color: #ccc; | |
background-color: transparent; | |
} | |
.navbar-default .navbar-toggle { | |
border-color: #ddd; | |
} | |
.navbar-default .navbar-toggle:hover, | |
.navbar-default .navbar-toggle:focus { | |
background-color: #ddd; | |
} | |
.navbar-default .navbar-toggle .icon-bar { | |
background-color: #888; | |
} | |
.navbar-default .navbar-collapse, | |
.navbar-default .navbar-form { | |
border-color: #e7e7e7; | |
} | |
.navbar-default .navbar-nav > .open > a, | |
.navbar-default .navbar-nav > .open > a:hover, | |
.navbar-default .navbar-nav > .open > a:focus { | |
background-color: #e7e7e7; | |
color: #555; | |
} | |
@media (max-width: 540px) { | |
.navbar-default .navbar-nav .open .dropdown-menu > li > a { | |
color: #777; | |
} | |
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, | |
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { | |
color: #333; | |
background-color: transparent; | |
} | |
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, | |
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, | |
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { | |
color: #555; | |
background-color: #e7e7e7; | |
} | |
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, | |
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, | |
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { | |
color: #ccc; | |
background-color: transparent; | |
} | |
} | |
.navbar-default .navbar-link { | |
color: #777; | |
} | |
.navbar-default .navbar-link:hover { | |
color: #333; | |
} | |
.navbar-default .btn-link { | |
color: #777; | |
} | |
.navbar-default .btn-link:hover, | |
.navbar-default .btn-link:focus { | |
color: #333; | |
} | |
.navbar-default .btn-link[disabled]:hover, | |
fieldset[disabled] .navbar-default .btn-link:hover, | |
.navbar-default .btn-link[disabled]:focus, | |
fieldset[disabled] .navbar-default .btn-link:focus { | |
color: #ccc; | |
} | |
.navbar-inverse { | |
background-color: #222; | |
border-color: #080808; | |
} | |
.navbar-inverse .navbar-brand { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .navbar-brand:hover, | |
.navbar-inverse .navbar-brand:focus { | |
color: #fff; | |
background-color: transparent; | |
} | |
.navbar-inverse .navbar-text { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .navbar-nav > li > a { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .navbar-nav > li > a:hover, | |
.navbar-inverse .navbar-nav > li > a:focus { | |
color: #fff; | |
background-color: transparent; | |
} | |
.navbar-inverse .navbar-nav > .active > a, | |
.navbar-inverse .navbar-nav > .active > a:hover, | |
.navbar-inverse .navbar-nav > .active > a:focus { | |
color: #fff; | |
background-color: #080808; | |
} | |
.navbar-inverse .navbar-nav > .disabled > a, | |
.navbar-inverse .navbar-nav > .disabled > a:hover, | |
.navbar-inverse .navbar-nav > .disabled > a:focus { | |
color: #444; | |
background-color: transparent; | |
} | |
.navbar-inverse .navbar-toggle { | |
border-color: #333; | |
} | |
.navbar-inverse .navbar-toggle:hover, | |
.navbar-inverse .navbar-toggle:focus { | |
background-color: #333; | |
} | |
.navbar-inverse .navbar-toggle .icon-bar { | |
background-color: #fff; | |
} | |
.navbar-inverse .navbar-collapse, | |
.navbar-inverse .navbar-form { | |
border-color: #101010; | |
} | |
.navbar-inverse .navbar-nav > .open > a, | |
.navbar-inverse .navbar-nav > .open > a:hover, | |
.navbar-inverse .navbar-nav > .open > a:focus { | |
background-color: #080808; | |
color: #fff; | |
} | |
@media (max-width: 540px) { | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { | |
border-color: #080808; | |
} | |
.navbar-inverse .navbar-nav .open .dropdown-menu .divider { | |
background-color: #080808; | |
} | |
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, | |
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { | |
color: #fff; | |
background-color: transparent; | |
} | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { | |
color: #fff; | |
background-color: #080808; | |
} | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, | |
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { | |
color: #444; | |
background-color: transparent; | |
} | |
} | |
.navbar-inverse .navbar-link { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .navbar-link:hover { | |
color: #fff; | |
} | |
.navbar-inverse .btn-link { | |
color: #9d9d9d; | |
} | |
.navbar-inverse .btn-link:hover, | |
.navbar-inverse .btn-link:focus { | |
color: #fff; | |
} | |
.navbar-inverse .btn-link[disabled]:hover, | |
fieldset[disabled] .navbar-inverse .btn-link:hover, | |
.navbar-inverse .btn-link[disabled]:focus, | |
fieldset[disabled] .navbar-inverse .btn-link:focus { | |
color: #444; | |
} | |
.breadcrumb { | |
padding: 8px 15px; | |
margin-bottom: 18px; | |
list-style: none; | |
background-color: #f5f5f5; | |
border-radius: 2px; | |
} | |
.breadcrumb > li { | |
display: inline-block; | |
} | |
.breadcrumb > li + li:before { | |
content: "/\00a0"; | |
padding: 0 5px; | |
color: #5e5e5e; | |
} | |
.breadcrumb > .active { | |
color: #777777; | |
} | |
.pagination { | |
display: inline-block; | |
padding-left: 0; | |
margin: 18px 0; | |
border-radius: 2px; | |
} | |
.pagination > li { | |
display: inline; | |
} | |
.pagination > li > a, | |
.pagination > li > span { | |
position: relative; | |
float: left; | |
padding: 6px 12px; | |
line-height: 1.42857143; | |
text-decoration: none; | |
color: #337ab7; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
margin-left: -1px; | |
} | |
.pagination > li:first-child > a, | |
.pagination > li:first-child > span { | |
margin-left: 0; | |
border-bottom-left-radius: 2px; | |
border-top-left-radius: 2px; | |
} | |
.pagination > li:last-child > a, | |
.pagination > li:last-child > span { | |
border-bottom-right-radius: 2px; | |
border-top-right-radius: 2px; | |
} | |
.pagination > li > a:hover, | |
.pagination > li > span:hover, | |
.pagination > li > a:focus, | |
.pagination > li > span:focus { | |
z-index: 2; | |
color: #23527c; | |
background-color: #eeeeee; | |
border-color: #ddd; | |
} | |
.pagination > .active > a, | |
.pagination > .active > span, | |
.pagination > .active > a:hover, | |
.pagination > .active > span:hover, | |
.pagination > .active > a:focus, | |
.pagination > .active > span:focus { | |
z-index: 3; | |
color: #fff; | |
background-color: #337ab7; | |
border-color: #337ab7; | |
cursor: default; | |
} | |
.pagination > .disabled > span, | |
.pagination > .disabled > span:hover, | |
.pagination > .disabled > span:focus, | |
.pagination > .disabled > a, | |
.pagination > .disabled > a:hover, | |
.pagination > .disabled > a:focus { | |
color: #777777; | |
background-color: #fff; | |
border-color: #ddd; | |
cursor: not-allowed; | |
} | |
.pagination-lg > li > a, | |
.pagination-lg > li > span { | |
padding: 10px 16px; | |
font-size: 17px; | |
line-height: 1.3333333; | |
} | |
.pagination-lg > li:first-child > a, | |
.pagination-lg > li:first-child > span { | |
border-bottom-left-radius: 3px; | |
border-top-left-radius: 3px; | |
} | |
.pagination-lg > li:last-child > a, | |
.pagination-lg > li:last-child > span { | |
border-bottom-right-radius: 3px; | |
border-top-right-radius: 3px; | |
} | |
.pagination-sm > li > a, | |
.pagination-sm > li > span { | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
} | |
.pagination-sm > li:first-child > a, | |
.pagination-sm > li:first-child > span { | |
border-bottom-left-radius: 1px; | |
border-top-left-radius: 1px; | |
} | |
.pagination-sm > li:last-child > a, | |
.pagination-sm > li:last-child > span { | |
border-bottom-right-radius: 1px; | |
border-top-right-radius: 1px; | |
} | |
.pager { | |
padding-left: 0; | |
margin: 18px 0; | |
list-style: none; | |
text-align: center; | |
} | |
.pager li { | |
display: inline; | |
} | |
.pager li > a, | |
.pager li > span { | |
display: inline-block; | |
padding: 5px 14px; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
border-radius: 15px; | |
} | |
.pager li > a:hover, | |
.pager li > a:focus { | |
text-decoration: none; | |
background-color: #eeeeee; | |
} | |
.pager .next > a, | |
.pager .next > span { | |
float: right; | |
} | |
.pager .previous > a, | |
.pager .previous > span { | |
float: left; | |
} | |
.pager .disabled > a, | |
.pager .disabled > a:hover, | |
.pager .disabled > a:focus, | |
.pager .disabled > span { | |
color: #777777; | |
background-color: #fff; | |
cursor: not-allowed; | |
} | |
.label { | |
display: inline; | |
padding: .2em .6em .3em; | |
font-size: 75%; | |
font-weight: bold; | |
line-height: 1; | |
color: #fff; | |
text-align: center; | |
white-space: nowrap; | |
vertical-align: baseline; | |
border-radius: .25em; | |
} | |
a.label:hover, | |
a.label:focus { | |
color: #fff; | |
text-decoration: none; | |
cursor: pointer; | |
} | |
.label:empty { | |
display: none; | |
} | |
.btn .label { | |
position: relative; | |
top: -1px; | |
} | |
.label-default { | |
background-color: #777777; | |
} | |
.label-default[href]:hover, | |
.label-default[href]:focus { | |
background-color: #5e5e5e; | |
} | |
.label-primary { | |
background-color: #337ab7; | |
} | |
.label-primary[href]:hover, | |
.label-primary[href]:focus { | |
background-color: #286090; | |
} | |
.label-success { | |
background-color: #5cb85c; | |
} | |
.label-success[href]:hover, | |
.label-success[href]:focus { | |
background-color: #449d44; | |
} | |
.label-info { | |
background-color: #5bc0de; | |
} | |
.label-info[href]:hover, | |
.label-info[href]:focus { | |
background-color: #31b0d5; | |
} | |
.label-warning { | |
background-color: #f0ad4e; | |
} | |
.label-warning[href]:hover, | |
.label-warning[href]:focus { | |
background-color: #ec971f; | |
} | |
.label-danger { | |
background-color: #d9534f; | |
} | |
.label-danger[href]:hover, | |
.label-danger[href]:focus { | |
background-color: #c9302c; | |
} | |
.badge { | |
display: inline-block; | |
min-width: 10px; | |
padding: 3px 7px; | |
font-size: 12px; | |
font-weight: bold; | |
color: #fff; | |
line-height: 1; | |
vertical-align: middle; | |
white-space: nowrap; | |
text-align: center; | |
background-color: #777777; | |
border-radius: 10px; | |
} | |
.badge:empty { | |
display: none; | |
} | |
.btn .badge { | |
position: relative; | |
top: -1px; | |
} | |
.btn-xs .badge, | |
.btn-group-xs > .btn .badge { | |
top: 0; | |
padding: 1px 5px; | |
} | |
a.badge:hover, | |
a.badge:focus { | |
color: #fff; | |
text-decoration: none; | |
cursor: pointer; | |
} | |
.list-group-item.active > .badge, | |
.nav-pills > .active > a > .badge { | |
color: #337ab7; | |
background-color: #fff; | |
} | |
.list-group-item > .badge { | |
float: right; | |
} | |
.list-group-item > .badge + .badge { | |
margin-right: 5px; | |
} | |
.nav-pills > li > a > .badge { | |
margin-left: 3px; | |
} | |
.jumbotron { | |
padding-top: 30px; | |
padding-bottom: 30px; | |
margin-bottom: 30px; | |
color: inherit; | |
background-color: #eeeeee; | |
} | |
.jumbotron h1, | |
.jumbotron .h1 { | |
color: inherit; | |
} | |
.jumbotron p { | |
margin-bottom: 15px; | |
font-size: 20px; | |
font-weight: 200; | |
} | |
.jumbotron > hr { | |
border-top-color: #d5d5d5; | |
} | |
.container .jumbotron, | |
.container-fluid .jumbotron { | |
border-radius: 3px; | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
.jumbotron .container { | |
max-width: 100%; | |
} | |
@media screen and (min-width: 768px) { | |
.jumbotron { | |
padding-top: 48px; | |
padding-bottom: 48px; | |
} | |
.container .jumbotron, | |
.container-fluid .jumbotron { | |
padding-left: 60px; | |
padding-right: 60px; | |
} | |
.jumbotron h1, | |
.jumbotron .h1 { | |
font-size: 59px; | |
} | |
} | |
.thumbnail { | |
display: block; | |
padding: 4px; | |
margin-bottom: 18px; | |
line-height: 1.42857143; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
border-radius: 2px; | |
-webkit-transition: border 0.2s ease-in-out; | |
-o-transition: border 0.2s ease-in-out; | |
transition: border 0.2s ease-in-out; | |
} | |
.thumbnail > img, | |
.thumbnail a > img { | |
margin-left: auto; | |
margin-right: auto; | |
} | |
a.thumbnail:hover, | |
a.thumbnail:focus, | |
a.thumbnail.active { | |
border-color: #337ab7; | |
} | |
.thumbnail .caption { | |
padding: 9px; | |
color: #000; | |
} | |
.alert { | |
padding: 15px; | |
margin-bottom: 18px; | |
border: 1px solid transparent; | |
border-radius: 2px; | |
} | |
.alert h4 { | |
margin-top: 0; | |
color: inherit; | |
} | |
.alert .alert-link { | |
font-weight: bold; | |
} | |
.alert > p, | |
.alert > ul { | |
margin-bottom: 0; | |
} | |
.alert > p + p { | |
margin-top: 5px; | |
} | |
.alert-dismissable, | |
.alert-dismissible { | |
padding-right: 35px; | |
} | |
.alert-dismissable .close, | |
.alert-dismissible .close { | |
position: relative; | |
top: -2px; | |
right: -21px; | |
color: inherit; | |
} | |
.alert-success { | |
background-color: #dff0d8; | |
border-color: #d6e9c6; | |
color: #3c763d; | |
} | |
.alert-success hr { | |
border-top-color: #c9e2b3; | |
} | |
.alert-success .alert-link { | |
color: #2b542c; | |
} | |
.alert-info { | |
background-color: #d9edf7; | |
border-color: #bce8f1; | |
color: #31708f; | |
} | |
.alert-info hr { | |
border-top-color: #a6e1ec; | |
} | |
.alert-info .alert-link { | |
color: #245269; | |
} | |
.alert-warning { | |
background-color: #fcf8e3; | |
border-color: #faebcc; | |
color: #8a6d3b; | |
} | |
.alert-warning hr { | |
border-top-color: #f7e1b5; | |
} | |
.alert-warning .alert-link { | |
color: #66512c; | |
} | |
.alert-danger { | |
background-color: #f2dede; | |
border-color: #ebccd1; | |
color: #a94442; | |
} | |
.alert-danger hr { | |
border-top-color: #e4b9c0; | |
} | |
.alert-danger .alert-link { | |
color: #843534; | |
} | |
@-webkit-keyframes progress-bar-stripes { | |
from { | |
background-position: 40px 0; | |
} | |
to { | |
background-position: 0 0; | |
} | |
} | |
@keyframes progress-bar-stripes { | |
from { | |
background-position: 40px 0; | |
} | |
to { | |
background-position: 0 0; | |
} | |
} | |
.progress { | |
overflow: hidden; | |
height: 18px; | |
margin-bottom: 18px; | |
background-color: #f5f5f5; | |
border-radius: 2px; | |
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); | |
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); | |
} | |
.progress-bar { | |
float: left; | |
width: 0%; | |
height: 100%; | |
font-size: 12px; | |
line-height: 18px; | |
color: #fff; | |
text-align: center; | |
background-color: #337ab7; | |
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); | |
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); | |
-webkit-transition: width 0.6s ease; | |
-o-transition: width 0.6s ease; | |
transition: width 0.6s ease; | |
} | |
.progress-striped .progress-bar, | |
.progress-bar-striped { | |
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-size: 40px 40px; | |
} | |
.progress.active .progress-bar, | |
.progress-bar.active { | |
-webkit-animation: progress-bar-stripes 2s linear infinite; | |
-o-animation: progress-bar-stripes 2s linear infinite; | |
animation: progress-bar-stripes 2s linear infinite; | |
} | |
.progress-bar-success { | |
background-color: #5cb85c; | |
} | |
.progress-striped .progress-bar-success { | |
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
} | |
.progress-bar-info { | |
background-color: #5bc0de; | |
} | |
.progress-striped .progress-bar-info { | |
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
} | |
.progress-bar-warning { | |
background-color: #f0ad4e; | |
} | |
.progress-striped .progress-bar-warning { | |
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
} | |
.progress-bar-danger { | |
background-color: #d9534f; | |
} | |
.progress-striped .progress-bar-danger { | |
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); | |
} | |
.media { | |
margin-top: 15px; | |
} | |
.media:first-child { | |
margin-top: 0; | |
} | |
.media, | |
.media-body { | |
zoom: 1; | |
overflow: hidden; | |
} | |
.media-body { | |
width: 10000px; | |
} | |
.media-object { | |
display: block; | |
} | |
.media-object.img-thumbnail { | |
max-width: none; | |
} | |
.media-right, | |
.media > .pull-right { | |
padding-left: 10px; | |
} | |
.media-left, | |
.media > .pull-left { | |
padding-right: 10px; | |
} | |
.media-left, | |
.media-right, | |
.media-body { | |
display: table-cell; | |
vertical-align: top; | |
} | |
.media-middle { | |
vertical-align: middle; | |
} | |
.media-bottom { | |
vertical-align: bottom; | |
} | |
.media-heading { | |
margin-top: 0; | |
margin-bottom: 5px; | |
} | |
.media-list { | |
padding-left: 0; | |
list-style: none; | |
} | |
.list-group { | |
margin-bottom: 20px; | |
padding-left: 0; | |
} | |
.list-group-item { | |
position: relative; | |
display: block; | |
padding: 10px 15px; | |
margin-bottom: -1px; | |
background-color: #fff; | |
border: 1px solid #ddd; | |
} | |
.list-group-item:first-child { | |
border-top-right-radius: 2px; | |
border-top-left-radius: 2px; | |
} | |
.list-group-item:last-child { | |
margin-bottom: 0; | |
border-bottom-right-radius: 2px; | |
border-bottom-left-radius: 2px; | |
} | |
a.list-group-item, | |
button.list-group-item { | |
color: #555; | |
} | |
a.list-group-item .list-group-item-heading, | |
button.list-group-item .list-group-item-heading { | |
color: #333; | |
} | |
a.list-group-item:hover, | |
button.list-group-item:hover, | |
a.list-group-item:focus, | |
button.list-group-item:focus { | |
text-decoration: none; | |
color: #555; | |
background-color: #f5f5f5; | |
} | |
button.list-group-item { | |
width: 100%; | |
text-align: left; | |
} | |
.list-group-item.disabled, | |
.list-group-item.disabled:hover, | |
.list-group-item.disabled:focus { | |
background-color: #eeeeee; | |
color: #777777; | |
cursor: not-allowed; | |
} | |
.list-group-item.disabled .list-group-item-heading, | |
.list-group-item.disabled:hover .list-group-item-heading, | |
.list-group-item.disabled:focus .list-group-item-heading { | |
color: inherit; | |
} | |
.list-group-item.disabled .list-group-item-text, | |
.list-group-item.disabled:hover .list-group-item-text, | |
.list-group-item.disabled:focus .list-group-item-text { | |
color: #777777; | |
} | |
.list-group-item.active, | |
.list-group-item.active:hover, | |
.list-group-item.active:focus { | |
z-index: 2; | |
color: #fff; | |
background-color: #337ab7; | |
border-color: #337ab7; | |
} | |
.list-group-item.active .list-group-item-heading, | |
.list-group-item.active:hover .list-group-item-heading, | |
.list-group-item.active:focus .list-group-item-heading, | |
.list-group-item.active .list-group-item-heading > small, | |
.list-group-item.active:hover .list-group-item-heading > small, | |
.list-group-item.active:focus .list-group-item-heading > small, | |
.list-group-item.active .list-group-item-heading > .small, | |
.list-group-item.active:hover .list-group-item-heading > .small, | |
.list-group-item.active:focus .list-group-item-heading > .small { | |
color: inherit; | |
} | |
.list-group-item.active .list-group-item-text, | |
.list-group-item.active:hover .list-group-item-text, | |
.list-group-item.active:focus .list-group-item-text { | |
color: #c7ddef; | |
} | |
.list-group-item-success { | |
color: #3c763d; | |
background-color: #dff0d8; | |
} | |
a.list-group-item-success, | |
button.list-group-item-success { | |
color: #3c763d; | |
} | |
a.list-group-item-success .list-group-item-heading, | |
button.list-group-item-success .list-group-item-heading { | |
color: inherit; | |
} | |
a.list-group-item-success:hover, | |
button.list-group-item-success:hover, | |
a.list-group-item-success:focus, | |
button.list-group-item-success:focus { | |
color: #3c763d; | |
background-color: #d0e9c6; | |
} | |
a.list-group-item-success.active, | |
button.list-group-item-success.active, | |
a.list-group-item-success.active:hover, | |
button.list-group-item-success.active:hover, | |
a.list-group-item-success.active:focus, | |
button.list-group-item-success.active:focus { | |
color: #fff; | |
background-color: #3c763d; | |
border-color: #3c763d; | |
} | |
.list-group-item-info { | |
color: #31708f; | |
background-color: #d9edf7; | |
} | |
a.list-group-item-info, | |
button.list-group-item-info { | |
color: #31708f; | |
} | |
a.list-group-item-info .list-group-item-heading, | |
button.list-group-item-info .list-group-item-heading { | |
color: inherit; | |
} | |
a.list-group-item-info:hover, | |
button.list-group-item-info:hover, | |
a.list-group-item-info:focus, | |
button.list-group-item-info:focus { | |
color: #31708f; | |
background-color: #c4e3f3; | |
} | |
a.list-group-item-info.active, | |
button.list-group-item-info.active, | |
a.list-group-item-info.active:hover, | |
button.list-group-item-info.active:hover, | |
a.list-group-item-info.active:focus, | |
button.list-group-item-info.active:focus { | |
color: #fff; | |
background-color: #31708f; | |
border-color: #31708f; | |
} | |
.list-group-item-warning { | |
color: #8a6d3b; | |
background-color: #fcf8e3; | |
} | |
a.list-group-item-warning, | |
button.list-group-item-warning { | |
color: #8a6d3b; | |
} | |
a.list-group-item-warning .list-group-item-heading, | |
button.list-group-item-warning .list-group-item-heading { | |
color: inherit; | |
} | |
a.list-group-item-warning:hover, | |
button.list-group-item-warning:hover, | |
a.list-group-item-warning:focus, | |
button.list-group-item-warning:focus { | |
color: #8a6d3b; | |
background-color: #faf2cc; | |
} | |
a.list-group-item-warning.active, | |
button.list-group-item-warning.active, | |
a.list-group-item-warning.active:hover, | |
button.list-group-item-warning.active:hover, | |
a.list-group-item-warning.active:focus, | |
button.list-group-item-warning.active:focus { | |
color: #fff; | |
background-color: #8a6d3b; | |
border-color: #8a6d3b; | |
} | |
.list-group-item-danger { | |
color: #a94442; | |
background-color: #f2dede; | |
} | |
a.list-group-item-danger, | |
button.list-group-item-danger { | |
color: #a94442; | |
} | |
a.list-group-item-danger .list-group-item-heading, | |
button.list-group-item-danger .list-group-item-heading { | |
color: inherit; | |
} | |
a.list-group-item-danger:hover, | |
button.list-group-item-danger:hover, | |
a.list-group-item-danger:focus, | |
button.list-group-item-danger:focus { | |
color: #a94442; | |
background-color: #ebcccc; | |
} | |
a.list-group-item-danger.active, | |
button.list-group-item-danger.active, | |
a.list-group-item-danger.active:hover, | |
button.list-group-item-danger.active:hover, | |
a.list-group-item-danger.active:focus, | |
button.list-group-item-danger.active:focus { | |
color: #fff; | |
background-color: #a94442; | |
border-color: #a94442; | |
} | |
.list-group-item-heading { | |
margin-top: 0; | |
margin-bottom: 5px; | |
} | |
.list-group-item-text { | |
margin-bottom: 0; | |
line-height: 1.3; | |
} | |
.panel { | |
margin-bottom: 18px; | |
background-color: #fff; | |
border: 1px solid transparent; | |
border-radius: 2px; | |
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); | |
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); | |
} | |
.panel-body { | |
padding: 15px; | |
} | |
.panel-heading { | |
padding: 10px 15px; | |
border-bottom: 1px solid transparent; | |
border-top-right-radius: 1px; | |
border-top-left-radius: 1px; | |
} | |
.panel-heading > .dropdown .dropdown-toggle { | |
color: inherit; | |
} | |
.panel-title { | |
margin-top: 0; | |
margin-bottom: 0; | |
font-size: 15px; | |
color: inherit; | |
} | |
.panel-title > a, | |
.panel-title > small, | |
.panel-title > .small, | |
.panel-title > small > a, | |
.panel-title > .small > a { | |
color: inherit; | |
} | |
.panel-footer { | |
padding: 10px 15px; | |
background-color: #f5f5f5; | |
border-top: 1px solid #ddd; | |
border-bottom-right-radius: 1px; | |
border-bottom-left-radius: 1px; | |
} | |
.panel > .list-group, | |
.panel > .panel-collapse > .list-group { | |
margin-bottom: 0; | |
} | |
.panel > .list-group .list-group-item, | |
.panel > .panel-collapse > .list-group .list-group-item { | |
border-width: 1px 0; | |
border-radius: 0; | |
} | |
.panel > .list-group:first-child .list-group-item:first-child, | |
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { | |
border-top: 0; | |
border-top-right-radius: 1px; | |
border-top-left-radius: 1px; | |
} | |
.panel > .list-group:last-child .list-group-item:last-child, | |
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { | |
border-bottom: 0; | |
border-bottom-right-radius: 1px; | |
border-bottom-left-radius: 1px; | |
} | |
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { | |
border-top-right-radius: 0; | |
border-top-left-radius: 0; | |
} | |
.panel-heading + .list-group .list-group-item:first-child { | |
border-top-width: 0; | |
} | |
.list-group + .panel-footer { | |
border-top-width: 0; | |
} | |
.panel > .table, | |
.panel > .table-responsive > .table, | |
.panel > .panel-collapse > .table { | |
margin-bottom: 0; | |
} | |
.panel > .table caption, | |
.panel > .table-responsive > .table caption, | |
.panel > .panel-collapse > .table caption { | |
padding-left: 15px; | |
padding-right: 15px; | |
} | |
.panel > .table:first-child, | |
.panel > .table-responsive:first-child > .table:first-child { | |
border-top-right-radius: 1px; | |
border-top-left-radius: 1px; | |
} | |
.panel > .table:first-child > thead:first-child > tr:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, | |
.panel > .table:first-child > tbody:first-child > tr:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { | |
border-top-left-radius: 1px; | |
border-top-right-radius: 1px; | |
} | |
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, | |
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, | |
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, | |
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, | |
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { | |
border-top-left-radius: 1px; | |
} | |
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, | |
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, | |
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, | |
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, | |
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, | |
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, | |
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, | |
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { | |
border-top-right-radius: 1px; | |
} | |
.panel > .table:last-child, | |
.panel > .table-responsive:last-child > .table:last-child { | |
border-bottom-right-radius: 1px; | |
border-bottom-left-radius: 1px; | |
} | |
.panel > .table:last-child > tbody:last-child > tr:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, | |
.panel > .table:last-child > tfoot:last-child > tr:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { | |
border-bottom-left-radius: 1px; | |
border-bottom-right-radius: 1px; | |
} | |
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, | |
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, | |
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, | |
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, | |
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, | |
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, | |
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, | |
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { | |
border-bottom-left-radius: 1px; | |
} | |
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, | |
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, | |
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, | |
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, | |
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { | |
border-bottom-right-radius: 1px; | |
} | |
.panel > .panel-body + .table, | |
.panel > .panel-body + .table-responsive, | |
.panel > .table + .panel-body, | |
.panel > .table-responsive + .panel-body { | |
border-top: 1px solid #ddd; | |
} | |
.panel > .table > tbody:first-child > tr:first-child th, | |
.panel > .table > tbody:first-child > tr:first-child td { | |
border-top: 0; | |
} | |
.panel > .table-bordered, | |
.panel > .table-responsive > .table-bordered { | |
border: 0; | |
} | |
.panel > .table-bordered > thead > tr > th:first-child, | |
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, | |
.panel > .table-bordered > tbody > tr > th:first-child, | |
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, | |
.panel > .table-bordered > tfoot > tr > th:first-child, | |
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, | |
.panel > .table-bordered > thead > tr > td:first-child, | |
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, | |
.panel > .table-bordered > tbody > tr > td:first-child, | |
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, | |
.panel > .table-bordered > tfoot > tr > td:first-child, | |
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { | |
border-left: 0; | |
} | |
.panel > .table-bordered > thead > tr > th:last-child, | |
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, | |
.panel > .table-bordered > tbody > tr > th:last-child, | |
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, | |
.panel > .table-bordered > tfoot > tr > th:last-child, | |
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, | |
.panel > .table-bordered > thead > tr > td:last-child, | |
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, | |
.panel > .table-bordered > tbody > tr > td:last-child, | |
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, | |
.panel > .table-bordered > tfoot > tr > td:last-child, | |
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { | |
border-right: 0; | |
} | |
.panel > .table-bordered > thead > tr:first-child > td, | |
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, | |
.panel > .table-bordered > tbody > tr:first-child > td, | |
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, | |
.panel > .table-bordered > thead > tr:first-child > th, | |
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, | |
.panel > .table-bordered > tbody > tr:first-child > th, | |
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { | |
border-bottom: 0; | |
} | |
.panel > .table-bordered > tbody > tr:last-child > td, | |
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, | |
.panel > .table-bordered > tfoot > tr:last-child > td, | |
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, | |
.panel > .table-bordered > tbody > tr:last-child > th, | |
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, | |
.panel > .table-bordered > tfoot > tr:last-child > th, | |
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { | |
border-bottom: 0; | |
} | |
.panel > .table-responsive { | |
border: 0; | |
margin-bottom: 0; | |
} | |
.panel-group { | |
margin-bottom: 18px; | |
} | |
.panel-group .panel { | |
margin-bottom: 0; | |
border-radius: 2px; | |
} | |
.panel-group .panel + .panel { | |
margin-top: 5px; | |
} | |
.panel-group .panel-heading { | |
border-bottom: 0; | |
} | |
.panel-group .panel-heading + .panel-collapse > .panel-body, | |
.panel-group .panel-heading + .panel-collapse > .list-group { | |
border-top: 1px solid #ddd; | |
} | |
.panel-group .panel-footer { | |
border-top: 0; | |
} | |
.panel-group .panel-footer + .panel-collapse .panel-body { | |
border-bottom: 1px solid #ddd; | |
} | |
.panel-default { | |
border-color: #ddd; | |
} | |
.panel-default > .panel-heading { | |
color: #333333; | |
background-color: #f5f5f5; | |
border-color: #ddd; | |
} | |
.panel-default > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #ddd; | |
} | |
.panel-default > .panel-heading .badge { | |
color: #f5f5f5; | |
background-color: #333333; | |
} | |
.panel-default > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #ddd; | |
} | |
.panel-primary { | |
border-color: #337ab7; | |
} | |
.panel-primary > .panel-heading { | |
color: #fff; | |
background-color: #337ab7; | |
border-color: #337ab7; | |
} | |
.panel-primary > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #337ab7; | |
} | |
.panel-primary > .panel-heading .badge { | |
color: #337ab7; | |
background-color: #fff; | |
} | |
.panel-primary > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #337ab7; | |
} | |
.panel-success { | |
border-color: #d6e9c6; | |
} | |
.panel-success > .panel-heading { | |
color: #3c763d; | |
background-color: #dff0d8; | |
border-color: #d6e9c6; | |
} | |
.panel-success > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #d6e9c6; | |
} | |
.panel-success > .panel-heading .badge { | |
color: #dff0d8; | |
background-color: #3c763d; | |
} | |
.panel-success > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #d6e9c6; | |
} | |
.panel-info { | |
border-color: #bce8f1; | |
} | |
.panel-info > .panel-heading { | |
color: #31708f; | |
background-color: #d9edf7; | |
border-color: #bce8f1; | |
} | |
.panel-info > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #bce8f1; | |
} | |
.panel-info > .panel-heading .badge { | |
color: #d9edf7; | |
background-color: #31708f; | |
} | |
.panel-info > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #bce8f1; | |
} | |
.panel-warning { | |
border-color: #faebcc; | |
} | |
.panel-warning > .panel-heading { | |
color: #8a6d3b; | |
background-color: #fcf8e3; | |
border-color: #faebcc; | |
} | |
.panel-warning > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #faebcc; | |
} | |
.panel-warning > .panel-heading .badge { | |
color: #fcf8e3; | |
background-color: #8a6d3b; | |
} | |
.panel-warning > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #faebcc; | |
} | |
.panel-danger { | |
border-color: #ebccd1; | |
} | |
.panel-danger > .panel-heading { | |
color: #a94442; | |
background-color: #f2dede; | |
border-color: #ebccd1; | |
} | |
.panel-danger > .panel-heading + .panel-collapse > .panel-body { | |
border-top-color: #ebccd1; | |
} | |
.panel-danger > .panel-heading .badge { | |
color: #f2dede; | |
background-color: #a94442; | |
} | |
.panel-danger > .panel-footer + .panel-collapse > .panel-body { | |
border-bottom-color: #ebccd1; | |
} | |
.embed-responsive { | |
position: relative; | |
display: block; | |
height: 0; | |
padding: 0; | |
overflow: hidden; | |
} | |
.embed-responsive .embed-responsive-item, | |
.embed-responsive iframe, | |
.embed-responsive embed, | |
.embed-responsive object, | |
.embed-responsive video { | |
position: absolute; | |
top: 0; | |
left: 0; | |
bottom: 0; | |
height: 100%; | |
width: 100%; | |
border: 0; | |
} | |
.embed-responsive-16by9 { | |
padding-bottom: 56.25%; | |
} | |
.embed-responsive-4by3 { | |
padding-bottom: 75%; | |
} | |
.well { | |
min-height: 20px; | |
padding: 19px; | |
margin-bottom: 20px; | |
background-color: #f5f5f5; | |
border: 1px solid #e3e3e3; | |
border-radius: 2px; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); | |
} | |
.well blockquote { | |
border-color: #ddd; | |
border-color: rgba(0, 0, 0, 0.15); | |
} | |
.well-lg { | |
padding: 24px; | |
border-radius: 3px; | |
} | |
.well-sm { | |
padding: 9px; | |
border-radius: 1px; | |
} | |
.close { | |
float: right; | |
font-size: 19.5px; | |
font-weight: bold; | |
line-height: 1; | |
color: #000; | |
text-shadow: 0 1px 0 #fff; | |
opacity: 0.2; | |
filter: alpha(opacity=20); | |
} | |
.close:hover, | |
.close:focus { | |
color: #000; | |
text-decoration: none; | |
cursor: pointer; | |
opacity: 0.5; | |
filter: alpha(opacity=50); | |
} | |
button.close { | |
padding: 0; | |
cursor: pointer; | |
background: transparent; | |
border: 0; | |
-webkit-appearance: none; | |
} | |
.modal-open { | |
overflow: hidden; | |
} | |
.modal { | |
display: none; | |
overflow: hidden; | |
position: fixed; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 1050; | |
-webkit-overflow-scrolling: touch; | |
outline: 0; | |
} | |
.modal.fade .modal-dialog { | |
-webkit-transform: translate(0, -25%); | |
-ms-transform: translate(0, -25%); | |
-o-transform: translate(0, -25%); | |
transform: translate(0, -25%); | |
-webkit-transition: -webkit-transform 0.3s ease-out; | |
-moz-transition: -moz-transform 0.3s ease-out; | |
-o-transition: -o-transform 0.3s ease-out; | |
transition: transform 0.3s ease-out; | |
} | |
.modal.in .modal-dialog { | |
-webkit-transform: translate(0, 0); | |
-ms-transform: translate(0, 0); | |
-o-transform: translate(0, 0); | |
transform: translate(0, 0); | |
} | |
.modal-open .modal { | |
overflow-x: hidden; | |
overflow-y: auto; | |
} | |
.modal-dialog { | |
position: relative; | |
width: auto; | |
margin: 10px; | |
} | |
.modal-content { | |
position: relative; | |
background-color: #fff; | |
border: 1px solid #999; | |
border: 1px solid rgba(0, 0, 0, 0.2); | |
border-radius: 3px; | |
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); | |
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); | |
background-clip: padding-box; | |
outline: 0; | |
} | |
.modal-backdrop { | |
position: fixed; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 1040; | |
background-color: #000; | |
} | |
.modal-backdrop.fade { | |
opacity: 0; | |
filter: alpha(opacity=0); | |
} | |
.modal-backdrop.in { | |
opacity: 0.5; | |
filter: alpha(opacity=50); | |
} | |
.modal-header { | |
padding: 15px; | |
border-bottom: 1px solid #e5e5e5; | |
} | |
.modal-header .close { | |
margin-top: -2px; | |
} | |
.modal-title { | |
margin: 0; | |
line-height: 1.42857143; | |
} | |
.modal-body { | |
position: relative; | |
padding: 15px; | |
} | |
.modal-footer { | |
padding: 15px; | |
text-align: right; | |
border-top: 1px solid #e5e5e5; | |
} | |
.modal-footer .btn + .btn { | |
margin-left: 5px; | |
margin-bottom: 0; | |
} | |
.modal-footer .btn-group .btn + .btn { | |
margin-left: -1px; | |
} | |
.modal-footer .btn-block + .btn-block { | |
margin-left: 0; | |
} | |
.modal-scrollbar-measure { | |
position: absolute; | |
top: -9999px; | |
width: 50px; | |
height: 50px; | |
overflow: scroll; | |
} | |
@media (min-width: 768px) { | |
.modal-dialog { | |
width: 600px; | |
margin: 30px auto; | |
} | |
.modal-content { | |
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); | |
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); | |
} | |
.modal-sm { | |
width: 300px; | |
} | |
} | |
@media (min-width: 992px) { | |
.modal-lg { | |
width: 900px; | |
} | |
} | |
.tooltip { | |
position: absolute; | |
z-index: 1070; | |
display: block; | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-style: normal; | |
font-weight: normal; | |
letter-spacing: normal; | |
line-break: auto; | |
line-height: 1.42857143; | |
text-align: left; | |
text-align: start; | |
text-decoration: none; | |
text-shadow: none; | |
text-transform: none; | |
white-space: normal; | |
word-break: normal; | |
word-spacing: normal; | |
word-wrap: normal; | |
font-size: 12px; | |
opacity: 0; | |
filter: alpha(opacity=0); | |
} | |
.tooltip.in { | |
opacity: 0.9; | |
filter: alpha(opacity=90); | |
} | |
.tooltip.top { | |
margin-top: -3px; | |
padding: 5px 0; | |
} | |
.tooltip.right { | |
margin-left: 3px; | |
padding: 0 5px; | |
} | |
.tooltip.bottom { | |
margin-top: 3px; | |
padding: 5px 0; | |
} | |
.tooltip.left { | |
margin-left: -3px; | |
padding: 0 5px; | |
} | |
.tooltip-inner { | |
max-width: 200px; | |
padding: 3px 8px; | |
color: #fff; | |
text-align: center; | |
background-color: #000; | |
border-radius: 2px; | |
} | |
.tooltip-arrow { | |
position: absolute; | |
width: 0; | |
height: 0; | |
border-color: transparent; | |
border-style: solid; | |
} | |
.tooltip.top .tooltip-arrow { | |
bottom: 0; | |
left: 50%; | |
margin-left: -5px; | |
border-width: 5px 5px 0; | |
border-top-color: #000; | |
} | |
.tooltip.top-left .tooltip-arrow { | |
bottom: 0; | |
right: 5px; | |
margin-bottom: -5px; | |
border-width: 5px 5px 0; | |
border-top-color: #000; | |
} | |
.tooltip.top-right .tooltip-arrow { | |
bottom: 0; | |
left: 5px; | |
margin-bottom: -5px; | |
border-width: 5px 5px 0; | |
border-top-color: #000; | |
} | |
.tooltip.right .tooltip-arrow { | |
top: 50%; | |
left: 0; | |
margin-top: -5px; | |
border-width: 5px 5px 5px 0; | |
border-right-color: #000; | |
} | |
.tooltip.left .tooltip-arrow { | |
top: 50%; | |
right: 0; | |
margin-top: -5px; | |
border-width: 5px 0 5px 5px; | |
border-left-color: #000; | |
} | |
.tooltip.bottom .tooltip-arrow { | |
top: 0; | |
left: 50%; | |
margin-left: -5px; | |
border-width: 0 5px 5px; | |
border-bottom-color: #000; | |
} | |
.tooltip.bottom-left .tooltip-arrow { | |
top: 0; | |
right: 5px; | |
margin-top: -5px; | |
border-width: 0 5px 5px; | |
border-bottom-color: #000; | |
} | |
.tooltip.bottom-right .tooltip-arrow { | |
top: 0; | |
left: 5px; | |
margin-top: -5px; | |
border-width: 0 5px 5px; | |
border-bottom-color: #000; | |
} | |
.popover { | |
position: absolute; | |
top: 0; | |
left: 0; | |
z-index: 1060; | |
display: none; | |
max-width: 276px; | |
padding: 1px; | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
font-style: normal; | |
font-weight: normal; | |
letter-spacing: normal; | |
line-break: auto; | |
line-height: 1.42857143; | |
text-align: left; | |
text-align: start; | |
text-decoration: none; | |
text-shadow: none; | |
text-transform: none; | |
white-space: normal; | |
word-break: normal; | |
word-spacing: normal; | |
word-wrap: normal; | |
font-size: 13px; | |
background-color: #fff; | |
background-clip: padding-box; | |
border: 1px solid #ccc; | |
border: 1px solid rgba(0, 0, 0, 0.2); | |
border-radius: 3px; | |
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); | |
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); | |
} | |
.popover.top { | |
margin-top: -10px; | |
} | |
.popover.right { | |
margin-left: 10px; | |
} | |
.popover.bottom { | |
margin-top: 10px; | |
} | |
.popover.left { | |
margin-left: -10px; | |
} | |
.popover-title { | |
margin: 0; | |
padding: 8px 14px; | |
font-size: 13px; | |
background-color: #f7f7f7; | |
border-bottom: 1px solid #ebebeb; | |
border-radius: 2px 2px 0 0; | |
} | |
.popover-content { | |
padding: 9px 14px; | |
} | |
.popover > .arrow, | |
.popover > .arrow:after { | |
position: absolute; | |
display: block; | |
width: 0; | |
height: 0; | |
border-color: transparent; | |
border-style: solid; | |
} | |
.popover > .arrow { | |
border-width: 11px; | |
} | |
.popover > .arrow:after { | |
border-width: 10px; | |
content: ""; | |
} | |
.popover.top > .arrow { | |
left: 50%; | |
margin-left: -11px; | |
border-bottom-width: 0; | |
border-top-color: #999999; | |
border-top-color: rgba(0, 0, 0, 0.25); | |
bottom: -11px; | |
} | |
.popover.top > .arrow:after { | |
content: " "; | |
bottom: 1px; | |
margin-left: -10px; | |
border-bottom-width: 0; | |
border-top-color: #fff; | |
} | |
.popover.right > .arrow { | |
top: 50%; | |
left: -11px; | |
margin-top: -11px; | |
border-left-width: 0; | |
border-right-color: #999999; | |
border-right-color: rgba(0, 0, 0, 0.25); | |
} | |
.popover.right > .arrow:after { | |
content: " "; | |
left: 1px; | |
bottom: -10px; | |
border-left-width: 0; | |
border-right-color: #fff; | |
} | |
.popover.bottom > .arrow { | |
left: 50%; | |
margin-left: -11px; | |
border-top-width: 0; | |
border-bottom-color: #999999; | |
border-bottom-color: rgba(0, 0, 0, 0.25); | |
top: -11px; | |
} | |
.popover.bottom > .arrow:after { | |
content: " "; | |
top: 1px; | |
margin-left: -10px; | |
border-top-width: 0; | |
border-bottom-color: #fff; | |
} | |
.popover.left > .arrow { | |
top: 50%; | |
right: -11px; | |
margin-top: -11px; | |
border-right-width: 0; | |
border-left-color: #999999; | |
border-left-color: rgba(0, 0, 0, 0.25); | |
} | |
.popover.left > .arrow:after { | |
content: " "; | |
right: 1px; | |
border-right-width: 0; | |
border-left-color: #fff; | |
bottom: -10px; | |
} | |
.carousel { | |
position: relative; | |
} | |
.carousel-inner { | |
position: relative; | |
overflow: hidden; | |
width: 100%; | |
} | |
.carousel-inner > .item { | |
display: none; | |
position: relative; | |
-webkit-transition: 0.6s ease-in-out left; | |
-o-transition: 0.6s ease-in-out left; | |
transition: 0.6s ease-in-out left; | |
} | |
.carousel-inner > .item > img, | |
.carousel-inner > .item > a > img { | |
line-height: 1; | |
} | |
@media all and (transform-3d), (-webkit-transform-3d) { | |
.carousel-inner > .item { | |
-webkit-transition: -webkit-transform 0.6s ease-in-out; | |
-moz-transition: -moz-transform 0.6s ease-in-out; | |
-o-transition: -o-transform 0.6s ease-in-out; | |
transition: transform 0.6s ease-in-out; | |
-webkit-backface-visibility: hidden; | |
-moz-backface-visibility: hidden; | |
backface-visibility: hidden; | |
-webkit-perspective: 1000px; | |
-moz-perspective: 1000px; | |
perspective: 1000px; | |
} | |
.carousel-inner > .item.next, | |
.carousel-inner > .item.active.right { | |
-webkit-transform: translate3d(100%, 0, 0); | |
transform: translate3d(100%, 0, 0); | |
left: 0; | |
} | |
.carousel-inner > .item.prev, | |
.carousel-inner > .item.active.left { | |
-webkit-transform: translate3d(-100%, 0, 0); | |
transform: translate3d(-100%, 0, 0); | |
left: 0; | |
} | |
.carousel-inner > .item.next.left, | |
.carousel-inner > .item.prev.right, | |
.carousel-inner > .item.active { | |
-webkit-transform: translate3d(0, 0, 0); | |
transform: translate3d(0, 0, 0); | |
left: 0; | |
} | |
} | |
.carousel-inner > .active, | |
.carousel-inner > .next, | |
.carousel-inner > .prev { | |
display: block; | |
} | |
.carousel-inner > .active { | |
left: 0; | |
} | |
.carousel-inner > .next, | |
.carousel-inner > .prev { | |
position: absolute; | |
top: 0; | |
width: 100%; | |
} | |
.carousel-inner > .next { | |
left: 100%; | |
} | |
.carousel-inner > .prev { | |
left: -100%; | |
} | |
.carousel-inner > .next.left, | |
.carousel-inner > .prev.right { | |
left: 0; | |
} | |
.carousel-inner > .active.left { | |
left: -100%; | |
} | |
.carousel-inner > .active.right { | |
left: 100%; | |
} | |
.carousel-control { | |
position: absolute; | |
top: 0; | |
left: 0; | |
bottom: 0; | |
width: 15%; | |
opacity: 0.5; | |
filter: alpha(opacity=50); | |
font-size: 20px; | |
color: #fff; | |
text-align: center; | |
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); | |
background-color: rgba(0, 0, 0, 0); | |
} | |
.carousel-control.left { | |
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); | |
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); | |
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); | |
background-repeat: repeat-x; | |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); | |
} | |
.carousel-control.right { | |
left: auto; | |
right: 0; | |
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); | |
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); | |
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); | |
background-repeat: repeat-x; | |
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); | |
} | |
.carousel-control:hover, | |
.carousel-control:focus { | |
outline: 0; | |
color: #fff; | |
text-decoration: none; | |
opacity: 0.9; | |
filter: alpha(opacity=90); | |
} | |
.carousel-control .icon-prev, | |
.carousel-control .icon-next, | |
.carousel-control .glyphicon-chevron-left, | |
.carousel-control .glyphicon-chevron-right { | |
position: absolute; | |
top: 50%; | |
margin-top: -10px; | |
z-index: 5; | |
display: inline-block; | |
} | |
.carousel-control .icon-prev, | |
.carousel-control .glyphicon-chevron-left { | |
left: 50%; | |
margin-left: -10px; | |
} | |
.carousel-control .icon-next, | |
.carousel-control .glyphicon-chevron-right { | |
right: 50%; | |
margin-right: -10px; | |
} | |
.carousel-control .icon-prev, | |
.carousel-control .icon-next { | |
width: 20px; | |
height: 20px; | |
line-height: 1; | |
font-family: serif; | |
} | |
.carousel-control .icon-prev:before { | |
content: '\2039'; | |
} | |
.carousel-control .icon-next:before { | |
content: '\203a'; | |
} | |
.carousel-indicators { | |
position: absolute; | |
bottom: 10px; | |
left: 50%; | |
z-index: 15; | |
width: 60%; | |
margin-left: -30%; | |
padding-left: 0; | |
list-style: none; | |
text-align: center; | |
} | |
.carousel-indicators li { | |
display: inline-block; | |
width: 10px; | |
height: 10px; | |
margin: 1px; | |
text-indent: -999px; | |
border: 1px solid #fff; | |
border-radius: 10px; | |
cursor: pointer; | |
background-color: #000 \9; | |
background-color: rgba(0, 0, 0, 0); | |
} | |
.carousel-indicators .active { | |
margin: 0; | |
width: 12px; | |
height: 12px; | |
background-color: #fff; | |
} | |
.carousel-caption { | |
position: absolute; | |
left: 15%; | |
right: 15%; | |
bottom: 20px; | |
z-index: 10; | |
padding-top: 20px; | |
padding-bottom: 20px; | |
color: #fff; | |
text-align: center; | |
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); | |
} | |
.carousel-caption .btn { | |
text-shadow: none; | |
} | |
@media screen and (min-width: 768px) { | |
.carousel-control .glyphicon-chevron-left, | |
.carousel-control .glyphicon-chevron-right, | |
.carousel-control .icon-prev, | |
.carousel-control .icon-next { | |
width: 30px; | |
height: 30px; | |
margin-top: -10px; | |
font-size: 30px; | |
} | |
.carousel-control .glyphicon-chevron-left, | |
.carousel-control .icon-prev { | |
margin-left: -10px; | |
} | |
.carousel-control .glyphicon-chevron-right, | |
.carousel-control .icon-next { | |
margin-right: -10px; | |
} | |
.carousel-caption { | |
left: 20%; | |
right: 20%; | |
padding-bottom: 30px; | |
} | |
.carousel-indicators { | |
bottom: 20px; | |
} | |
} | |
.clearfix:before, | |
.clearfix:after, | |
.dl-horizontal dd:before, | |
.dl-horizontal dd:after, | |
.container:before, | |
.container:after, | |
.container-fluid:before, | |
.container-fluid:after, | |
.row:before, | |
.row:after, | |
.form-horizontal .form-group:before, | |
.form-horizontal .form-group:after, | |
.btn-toolbar:before, | |
.btn-toolbar:after, | |
.btn-group-vertical > .btn-group:before, | |
.btn-group-vertical > .btn-group:after, | |
.nav:before, | |
.nav:after, | |
.navbar:before, | |
.navbar:after, | |
.navbar-header:before, | |
.navbar-header:after, | |
.navbar-collapse:before, | |
.navbar-collapse:after, | |
.pager:before, | |
.pager:after, | |
.panel-body:before, | |
.panel-body:after, | |
.modal-header:before, | |
.modal-header:after, | |
.modal-footer:before, | |
.modal-footer:after, | |
.item_buttons:before, | |
.item_buttons:after { | |
content: " "; | |
display: table; | |
} | |
.clearfix:after, | |
.dl-horizontal dd:after, | |
.container:after, | |
.container-fluid:after, | |
.row:after, | |
.form-horizontal .form-group:after, | |
.btn-toolbar:after, | |
.btn-group-vertical > .btn-group:after, | |
.nav:after, | |
.navbar:after, | |
.navbar-header:after, | |
.navbar-collapse:after, | |
.pager:after, | |
.panel-body:after, | |
.modal-header:after, | |
.modal-footer:after, | |
.item_buttons:after { | |
clear: both; | |
} | |
.center-block { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.pull-right { | |
float: right !important; | |
} | |
.pull-left { | |
float: left !important; | |
} | |
.hide { | |
display: none !important; | |
} | |
.show { | |
display: block !important; | |
} | |
.invisible { | |
visibility: hidden; | |
} | |
.text-hide { | |
font: 0/0 a; | |
color: transparent; | |
text-shadow: none; | |
background-color: transparent; | |
border: 0; | |
} | |
.hidden { | |
display: none !important; | |
} | |
.affix { | |
position: fixed; | |
} | |
@-ms-viewport { | |
width: device-width; | |
} | |
.visible-xs, | |
.visible-sm, | |
.visible-md, | |
.visible-lg { | |
display: none !important; | |
} | |
.visible-xs-block, | |
.visible-xs-inline, | |
.visible-xs-inline-block, | |
.visible-sm-block, | |
.visible-sm-inline, | |
.visible-sm-inline-block, | |
.visible-md-block, | |
.visible-md-inline, | |
.visible-md-inline-block, | |
.visible-lg-block, | |
.visible-lg-inline, | |
.visible-lg-inline-block { | |
display: none !important; | |
} | |
@media (max-width: 767px) { | |
.visible-xs { | |
display: block !important; | |
} | |
table.visible-xs { | |
display: table !important; | |
} | |
tr.visible-xs { | |
display: table-row !important; | |
} | |
th.visible-xs, | |
td.visible-xs { | |
display: table-cell !important; | |
} | |
} | |
@media (max-width: 767px) { | |
.visible-xs-block { | |
display: block !important; | |
} | |
} | |
@media (max-width: 767px) { | |
.visible-xs-inline { | |
display: inline !important; | |
} | |
} | |
@media (max-width: 767px) { | |
.visible-xs-inline-block { | |
display: inline-block !important; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.visible-sm { | |
display: block !important; | |
} | |
table.visible-sm { | |
display: table !important; | |
} | |
tr.visible-sm { | |
display: table-row !important; | |
} | |
th.visible-sm, | |
td.visible-sm { | |
display: table-cell !important; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.visible-sm-block { | |
display: block !important; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.visible-sm-inline { | |
display: inline !important; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.visible-sm-inline-block { | |
display: inline-block !important; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
.visible-md { | |
display: block !important; | |
} | |
table.visible-md { | |
display: table !important; | |
} | |
tr.visible-md { | |
display: table-row !important; | |
} | |
th.visible-md, | |
td.visible-md { | |
display: table-cell !important; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
.visible-md-block { | |
display: block !important; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
.visible-md-inline { | |
display: inline !important; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
.visible-md-inline-block { | |
display: inline-block !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.visible-lg { | |
display: block !important; | |
} | |
table.visible-lg { | |
display: table !important; | |
} | |
tr.visible-lg { | |
display: table-row !important; | |
} | |
th.visible-lg, | |
td.visible-lg { | |
display: table-cell !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.visible-lg-block { | |
display: block !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.visible-lg-inline { | |
display: inline !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.visible-lg-inline-block { | |
display: inline-block !important; | |
} | |
} | |
@media (max-width: 767px) { | |
.hidden-xs { | |
display: none !important; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
.hidden-sm { | |
display: none !important; | |
} | |
} | |
@media (min-width: 992px) and (max-width: 1199px) { | |
.hidden-md { | |
display: none !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.hidden-lg { | |
display: none !important; | |
} | |
} | |
.visible-print { | |
display: none !important; | |
} | |
@media print { | |
.visible-print { | |
display: block !important; | |
} | |
table.visible-print { | |
display: table !important; | |
} | |
tr.visible-print { | |
display: table-row !important; | |
} | |
th.visible-print, | |
td.visible-print { | |
display: table-cell !important; | |
} | |
} | |
.visible-print-block { | |
display: none !important; | |
} | |
@media print { | |
.visible-print-block { | |
display: block !important; | |
} | |
} | |
.visible-print-inline { | |
display: none !important; | |
} | |
@media print { | |
.visible-print-inline { | |
display: inline !important; | |
} | |
} | |
.visible-print-inline-block { | |
display: none !important; | |
} | |
@media print { | |
.visible-print-inline-block { | |
display: inline-block !important; | |
} | |
} | |
@media print { | |
.hidden-print { | |
display: none !important; | |
} | |
} | |
/*! | |
* | |
* Font Awesome | |
* | |
*/ | |
/*! | |
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome | |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | |
*/ | |
/* FONT PATH | |
* -------------------------- */ | |
@font-face { | |
font-family: 'FontAwesome'; | |
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0'); | |
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg'); | |
font-weight: normal; | |
font-style: normal; | |
} | |
.fa { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
/* makes the font 33% larger relative to the icon container */ | |
.fa-lg { | |
font-size: 1.33333333em; | |
line-height: 0.75em; | |
vertical-align: -15%; | |
} | |
.fa-2x { | |
font-size: 2em; | |
} | |
.fa-3x { | |
font-size: 3em; | |
} | |
.fa-4x { | |
font-size: 4em; | |
} | |
.fa-5x { | |
font-size: 5em; | |
} | |
.fa-fw { | |
width: 1.28571429em; | |
text-align: center; | |
} | |
.fa-ul { | |
padding-left: 0; | |
margin-left: 2.14285714em; | |
list-style-type: none; | |
} | |
.fa-ul > li { | |
position: relative; | |
} | |
.fa-li { | |
position: absolute; | |
left: -2.14285714em; | |
width: 2.14285714em; | |
top: 0.14285714em; | |
text-align: center; | |
} | |
.fa-li.fa-lg { | |
left: -1.85714286em; | |
} | |
.fa-border { | |
padding: .2em .25em .15em; | |
border: solid 0.08em #eee; | |
border-radius: .1em; | |
} | |
.pull-right { | |
float: right; | |
} | |
.pull-left { | |
float: left; | |
} | |
.fa.pull-left { | |
margin-right: .3em; | |
} | |
.fa.pull-right { | |
margin-left: .3em; | |
} | |
.fa-spin { | |
-webkit-animation: fa-spin 2s infinite linear; | |
animation: fa-spin 2s infinite linear; | |
} | |
@-webkit-keyframes fa-spin { | |
0% { | |
-webkit-transform: rotate(0deg); | |
transform: rotate(0deg); | |
} | |
100% { | |
-webkit-transform: rotate(359deg); | |
transform: rotate(359deg); | |
} | |
} | |
@keyframes fa-spin { | |
0% { | |
-webkit-transform: rotate(0deg); | |
transform: rotate(0deg); | |
} | |
100% { | |
-webkit-transform: rotate(359deg); | |
transform: rotate(359deg); | |
} | |
} | |
.fa-rotate-90 { | |
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); | |
-webkit-transform: rotate(90deg); | |
-ms-transform: rotate(90deg); | |
transform: rotate(90deg); | |
} | |
.fa-rotate-180 { | |
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); | |
-webkit-transform: rotate(180deg); | |
-ms-transform: rotate(180deg); | |
transform: rotate(180deg); | |
} | |
.fa-rotate-270 { | |
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); | |
-webkit-transform: rotate(270deg); | |
-ms-transform: rotate(270deg); | |
transform: rotate(270deg); | |
} | |
.fa-flip-horizontal { | |
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); | |
-webkit-transform: scale(-1, 1); | |
-ms-transform: scale(-1, 1); | |
transform: scale(-1, 1); | |
} | |
.fa-flip-vertical { | |
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); | |
-webkit-transform: scale(1, -1); | |
-ms-transform: scale(1, -1); | |
transform: scale(1, -1); | |
} | |
:root .fa-rotate-90, | |
:root .fa-rotate-180, | |
:root .fa-rotate-270, | |
:root .fa-flip-horizontal, | |
:root .fa-flip-vertical { | |
filter: none; | |
} | |
.fa-stack { | |
position: relative; | |
display: inline-block; | |
width: 2em; | |
height: 2em; | |
line-height: 2em; | |
vertical-align: middle; | |
} | |
.fa-stack-1x, | |
.fa-stack-2x { | |
position: absolute; | |
left: 0; | |
width: 100%; | |
text-align: center; | |
} | |
.fa-stack-1x { | |
line-height: inherit; | |
} | |
.fa-stack-2x { | |
font-size: 2em; | |
} | |
.fa-inverse { | |
color: #fff; | |
} | |
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen | |
readers do not read off random characters that represent icons */ | |
.fa-glass:before { | |
content: "\f000"; | |
} | |
.fa-music:before { | |
content: "\f001"; | |
} | |
.fa-search:before { | |
content: "\f002"; | |
} | |
.fa-envelope-o:before { | |
content: "\f003"; | |
} | |
.fa-heart:before { | |
content: "\f004"; | |
} | |
.fa-star:before { | |
content: "\f005"; | |
} | |
.fa-star-o:before { | |
content: "\f006"; | |
} | |
.fa-user:before { | |
content: "\f007"; | |
} | |
.fa-film:before { | |
content: "\f008"; | |
} | |
.fa-th-large:before { | |
content: "\f009"; | |
} | |
.fa-th:before { | |
content: "\f00a"; | |
} | |
.fa-th-list:before { | |
content: "\f00b"; | |
} | |
.fa-check:before { | |
content: "\f00c"; | |
} | |
.fa-remove:before, | |
.fa-close:before, | |
.fa-times:before { | |
content: "\f00d"; | |
} | |
.fa-search-plus:before { | |
content: "\f00e"; | |
} | |
.fa-search-minus:before { | |
content: "\f010"; | |
} | |
.fa-power-off:before { | |
content: "\f011"; | |
} | |
.fa-signal:before { | |
content: "\f012"; | |
} | |
.fa-gear:before, | |
.fa-cog:before { | |
content: "\f013"; | |
} | |
.fa-trash-o:before { | |
content: "\f014"; | |
} | |
.fa-home:before { | |
content: "\f015"; | |
} | |
.fa-file-o:before { | |
content: "\f016"; | |
} | |
.fa-clock-o:before { | |
content: "\f017"; | |
} | |
.fa-road:before { | |
content: "\f018"; | |
} | |
.fa-download:before { | |
content: "\f019"; | |
} | |
.fa-arrow-circle-o-down:before { | |
content: "\f01a"; | |
} | |
.fa-arrow-circle-o-up:before { | |
content: "\f01b"; | |
} | |
.fa-inbox:before { | |
content: "\f01c"; | |
} | |
.fa-play-circle-o:before { | |
content: "\f01d"; | |
} | |
.fa-rotate-right:before, | |
.fa-repeat:before { | |
content: "\f01e"; | |
} | |
.fa-refresh:before { | |
content: "\f021"; | |
} | |
.fa-list-alt:before { | |
content: "\f022"; | |
} | |
.fa-lock:before { | |
content: "\f023"; | |
} | |
.fa-flag:before { | |
content: "\f024"; | |
} | |
.fa-headphones:before { | |
content: "\f025"; | |
} | |
.fa-volume-off:before { | |
content: "\f026"; | |
} | |
.fa-volume-down:before { | |
content: "\f027"; | |
} | |
.fa-volume-up:before { | |
content: "\f028"; | |
} | |
.fa-qrcode:before { | |
content: "\f029"; | |
} | |
.fa-barcode:before { | |
content: "\f02a"; | |
} | |
.fa-tag:before { | |
content: "\f02b"; | |
} | |
.fa-tags:before { | |
content: "\f02c"; | |
} | |
.fa-book:before { | |
content: "\f02d"; | |
} | |
.fa-bookmark:before { | |
content: "\f02e"; | |
} | |
.fa-print:before { | |
content: "\f02f"; | |
} | |
.fa-camera:before { | |
content: "\f030"; | |
} | |
.fa-font:before { | |
content: "\f031"; | |
} | |
.fa-bold:before { | |
content: "\f032"; | |
} | |
.fa-italic:before { | |
content: "\f033"; | |
} | |
.fa-text-height:before { | |
content: "\f034"; | |
} | |
.fa-text-width:before { | |
content: "\f035"; | |
} | |
.fa-align-left:before { | |
content: "\f036"; | |
} | |
.fa-align-center:before { | |
content: "\f037"; | |
} | |
.fa-align-right:before { | |
content: "\f038"; | |
} | |
.fa-align-justify:before { | |
content: "\f039"; | |
} | |
.fa-list:before { | |
content: "\f03a"; | |
} | |
.fa-dedent:before, | |
.fa-outdent:before { | |
content: "\f03b"; | |
} | |
.fa-indent:before { | |
content: "\f03c"; | |
} | |
.fa-video-camera:before { | |
content: "\f03d"; | |
} | |
.fa-photo:before, | |
.fa-image:before, | |
.fa-picture-o:before { | |
content: "\f03e"; | |
} | |
.fa-pencil:before { | |
content: "\f040"; | |
} | |
.fa-map-marker:before { | |
content: "\f041"; | |
} | |
.fa-adjust:before { | |
content: "\f042"; | |
} | |
.fa-tint:before { | |
content: "\f043"; | |
} | |
.fa-edit:before, | |
.fa-pencil-square-o:before { | |
content: "\f044"; | |
} | |
.fa-share-square-o:before { | |
content: "\f045"; | |
} | |
.fa-check-square-o:before { | |
content: "\f046"; | |
} | |
.fa-arrows:before { | |
content: "\f047"; | |
} | |
.fa-step-backward:before { | |
content: "\f048"; | |
} | |
.fa-fast-backward:before { | |
content: "\f049"; | |
} | |
.fa-backward:before { | |
content: "\f04a"; | |
} | |
.fa-play:before { | |
content: "\f04b"; | |
} | |
.fa-pause:before { | |
content: "\f04c"; | |
} | |
.fa-stop:before { | |
content: "\f04d"; | |
} | |
.fa-forward:before { | |
content: "\f04e"; | |
} | |
.fa-fast-forward:before { | |
content: "\f050"; | |
} | |
.fa-step-forward:before { | |
content: "\f051"; | |
} | |
.fa-eject:before { | |
content: "\f052"; | |
} | |
.fa-chevron-left:before { | |
content: "\f053"; | |
} | |
.fa-chevron-right:before { | |
content: "\f054"; | |
} | |
.fa-plus-circle:before { | |
content: "\f055"; | |
} | |
.fa-minus-circle:before { | |
content: "\f056"; | |
} | |
.fa-times-circle:before { | |
content: "\f057"; | |
} | |
.fa-check-circle:before { | |
content: "\f058"; | |
} | |
.fa-question-circle:before { | |
content: "\f059"; | |
} | |
.fa-info-circle:before { | |
content: "\f05a"; | |
} | |
.fa-crosshairs:before { | |
content: "\f05b"; | |
} | |
.fa-times-circle-o:before { | |
content: "\f05c"; | |
} | |
.fa-check-circle-o:before { | |
content: "\f05d"; | |
} | |
.fa-ban:before { | |
content: "\f05e"; | |
} | |
.fa-arrow-left:before { | |
content: "\f060"; | |
} | |
.fa-arrow-right:before { | |
content: "\f061"; | |
} | |
.fa-arrow-up:before { | |
content: "\f062"; | |
} | |
.fa-arrow-down:before { | |
content: "\f063"; | |
} | |
.fa-mail-forward:before, | |
.fa-share:before { | |
content: "\f064"; | |
} | |
.fa-expand:before { | |
content: "\f065"; | |
} | |
.fa-compress:before { | |
content: "\f066"; | |
} | |
.fa-plus:before { | |
content: "\f067"; | |
} | |
.fa-minus:before { | |
content: "\f068"; | |
} | |
.fa-asterisk:before { | |
content: "\f069"; | |
} | |
.fa-exclamation-circle:before { | |
content: "\f06a"; | |
} | |
.fa-gift:before { | |
content: "\f06b"; | |
} | |
.fa-leaf:before { | |
content: "\f06c"; | |
} | |
.fa-fire:before { | |
content: "\f06d"; | |
} | |
.fa-eye:before { | |
content: "\f06e"; | |
} | |
.fa-eye-slash:before { | |
content: "\f070"; | |
} | |
.fa-warning:before, | |
.fa-exclamation-triangle:before { | |
content: "\f071"; | |
} | |
.fa-plane:before { | |
content: "\f072"; | |
} | |
.fa-calendar:before { | |
content: "\f073"; | |
} | |
.fa-random:before { | |
content: "\f074"; | |
} | |
.fa-comment:before { | |
content: "\f075"; | |
} | |
.fa-magnet:before { | |
content: "\f076"; | |
} | |
.fa-chevron-up:before { | |
content: "\f077"; | |
} | |
.fa-chevron-down:before { | |
content: "\f078"; | |
} | |
.fa-retweet:before { | |
content: "\f079"; | |
} | |
.fa-shopping-cart:before { | |
content: "\f07a"; | |
} | |
.fa-folder:before { | |
content: "\f07b"; | |
} | |
.fa-folder-open:before { | |
content: "\f07c"; | |
} | |
.fa-arrows-v:before { | |
content: "\f07d"; | |
} | |
.fa-arrows-h:before { | |
content: "\f07e"; | |
} | |
.fa-bar-chart-o:before, | |
.fa-bar-chart:before { | |
content: "\f080"; | |
} | |
.fa-twitter-square:before { | |
content: "\f081"; | |
} | |
.fa-facebook-square:before { | |
content: "\f082"; | |
} | |
.fa-camera-retro:before { | |
content: "\f083"; | |
} | |
.fa-key:before { | |
content: "\f084"; | |
} | |
.fa-gears:before, | |
.fa-cogs:before { | |
content: "\f085"; | |
} | |
.fa-comments:before { | |
content: "\f086"; | |
} | |
.fa-thumbs-o-up:before { | |
content: "\f087"; | |
} | |
.fa-thumbs-o-down:before { | |
content: "\f088"; | |
} | |
.fa-star-half:before { | |
content: "\f089"; | |
} | |
.fa-heart-o:before { | |
content: "\f08a"; | |
} | |
.fa-sign-out:before { | |
content: "\f08b"; | |
} | |
.fa-linkedin-square:before { | |
content: "\f08c"; | |
} | |
.fa-thumb-tack:before { | |
content: "\f08d"; | |
} | |
.fa-external-link:before { | |
content: "\f08e"; | |
} | |
.fa-sign-in:before { | |
content: "\f090"; | |
} | |
.fa-trophy:before { | |
content: "\f091"; | |
} | |
.fa-github-square:before { | |
content: "\f092"; | |
} | |
.fa-upload:before { | |
content: "\f093"; | |
} | |
.fa-lemon-o:before { | |
content: "\f094"; | |
} | |
.fa-phone:before { | |
content: "\f095"; | |
} | |
.fa-square-o:before { | |
content: "\f096"; | |
} | |
.fa-bookmark-o:before { | |
content: "\f097"; | |
} | |
.fa-phone-square:before { | |
content: "\f098"; | |
} | |
.fa-twitter:before { | |
content: "\f099"; | |
} | |
.fa-facebook:before { | |
content: "\f09a"; | |
} | |
.fa-github:before { | |
content: "\f09b"; | |
} | |
.fa-unlock:before { | |
content: "\f09c"; | |
} | |
.fa-credit-card:before { | |
content: "\f09d"; | |
} | |
.fa-rss:before { | |
content: "\f09e"; | |
} | |
.fa-hdd-o:before { | |
content: "\f0a0"; | |
} | |
.fa-bullhorn:before { | |
content: "\f0a1"; | |
} | |
.fa-bell:before { | |
content: "\f0f3"; | |
} | |
.fa-certificate:before { | |
content: "\f0a3"; | |
} | |
.fa-hand-o-right:before { | |
content: "\f0a4"; | |
} | |
.fa-hand-o-left:before { | |
content: "\f0a5"; | |
} | |
.fa-hand-o-up:before { | |
content: "\f0a6"; | |
} | |
.fa-hand-o-down:before { | |
content: "\f0a7"; | |
} | |
.fa-arrow-circle-left:before { | |
content: "\f0a8"; | |
} | |
.fa-arrow-circle-right:before { | |
content: "\f0a9"; | |
} | |
.fa-arrow-circle-up:before { | |
content: "\f0aa"; | |
} | |
.fa-arrow-circle-down:before { | |
content: "\f0ab"; | |
} | |
.fa-globe:before { | |
content: "\f0ac"; | |
} | |
.fa-wrench:before { | |
content: "\f0ad"; | |
} | |
.fa-tasks:before { | |
content: "\f0ae"; | |
} | |
.fa-filter:before { | |
content: "\f0b0"; | |
} | |
.fa-briefcase:before { | |
content: "\f0b1"; | |
} | |
.fa-arrows-alt:before { | |
content: "\f0b2"; | |
} | |
.fa-group:before, | |
.fa-users:before { | |
content: "\f0c0"; | |
} | |
.fa-chain:before, | |
.fa-link:before { | |
content: "\f0c1"; | |
} | |
.fa-cloud:before { | |
content: "\f0c2"; | |
} | |
.fa-flask:before { | |
content: "\f0c3"; | |
} | |
.fa-cut:before, | |
.fa-scissors:before { | |
content: "\f0c4"; | |
} | |
.fa-copy:before, | |
.fa-files-o:before { | |
content: "\f0c5"; | |
} | |
.fa-paperclip:before { | |
content: "\f0c6"; | |
} | |
.fa-save:before, | |
.fa-floppy-o:before { | |
content: "\f0c7"; | |
} | |
.fa-square:before { | |
content: "\f0c8"; | |
} | |
.fa-navicon:before, | |
.fa-reorder:before, | |
.fa-bars:before { | |
content: "\f0c9"; | |
} | |
.fa-list-ul:before { | |
content: "\f0ca"; | |
} | |
.fa-list-ol:before { | |
content: "\f0cb"; | |
} | |
.fa-strikethrough:before { | |
content: "\f0cc"; | |
} | |
.fa-underline:before { | |
content: "\f0cd"; | |
} | |
.fa-table:before { | |
content: "\f0ce"; | |
} | |
.fa-magic:before { | |
content: "\f0d0"; | |
} | |
.fa-truck:before { | |
content: "\f0d1"; | |
} | |
.fa-pinterest:before { | |
content: "\f0d2"; | |
} | |
.fa-pinterest-square:before { | |
content: "\f0d3"; | |
} | |
.fa-google-plus-square:before { | |
content: "\f0d4"; | |
} | |
.fa-google-plus:before { | |
content: "\f0d5"; | |
} | |
.fa-money:before { | |
content: "\f0d6"; | |
} | |
.fa-caret-down:before { | |
content: "\f0d7"; | |
} | |
.fa-caret-up:before { | |
content: "\f0d8"; | |
} | |
.fa-caret-left:before { | |
content: "\f0d9"; | |
} | |
.fa-caret-right:before { | |
content: "\f0da"; | |
} | |
.fa-columns:before { | |
content: "\f0db"; | |
} | |
.fa-unsorted:before, | |
.fa-sort:before { | |
content: "\f0dc"; | |
} | |
.fa-sort-down:before, | |
.fa-sort-desc:before { | |
content: "\f0dd"; | |
} | |
.fa-sort-up:before, | |
.fa-sort-asc:before { | |
content: "\f0de"; | |
} | |
.fa-envelope:before { | |
content: "\f0e0"; | |
} | |
.fa-linkedin:before { | |
content: "\f0e1"; | |
} | |
.fa-rotate-left:before, | |
.fa-undo:before { | |
content: "\f0e2"; | |
} | |
.fa-legal:before, | |
.fa-gavel:before { | |
content: "\f0e3"; | |
} | |
.fa-dashboard:before, | |
.fa-tachometer:before { | |
content: "\f0e4"; | |
} | |
.fa-comment-o:before { | |
content: "\f0e5"; | |
} | |
.fa-comments-o:before { | |
content: "\f0e6"; | |
} | |
.fa-flash:before, | |
.fa-bolt:before { | |
content: "\f0e7"; | |
} | |
.fa-sitemap:before { | |
content: "\f0e8"; | |
} | |
.fa-umbrella:before { | |
content: "\f0e9"; | |
} | |
.fa-paste:before, | |
.fa-clipboard:before { | |
content: "\f0ea"; | |
} | |
.fa-lightbulb-o:before { | |
content: "\f0eb"; | |
} | |
.fa-exchange:before { | |
content: "\f0ec"; | |
} | |
.fa-cloud-download:before { | |
content: "\f0ed"; | |
} | |
.fa-cloud-upload:before { | |
content: "\f0ee"; | |
} | |
.fa-user-md:before { | |
content: "\f0f0"; | |
} | |
.fa-stethoscope:before { | |
content: "\f0f1"; | |
} | |
.fa-suitcase:before { | |
content: "\f0f2"; | |
} | |
.fa-bell-o:before { | |
content: "\f0a2"; | |
} | |
.fa-coffee:before { | |
content: "\f0f4"; | |
} | |
.fa-cutlery:before { | |
content: "\f0f5"; | |
} | |
.fa-file-text-o:before { | |
content: "\f0f6"; | |
} | |
.fa-building-o:before { | |
content: "\f0f7"; | |
} | |
.fa-hospital-o:before { | |
content: "\f0f8"; | |
} | |
.fa-ambulance:before { | |
content: "\f0f9"; | |
} | |
.fa-medkit:before { | |
content: "\f0fa"; | |
} | |
.fa-fighter-jet:before { | |
content: "\f0fb"; | |
} | |
.fa-beer:before { | |
content: "\f0fc"; | |
} | |
.fa-h-square:before { | |
content: "\f0fd"; | |
} | |
.fa-plus-square:before { | |
content: "\f0fe"; | |
} | |
.fa-angle-double-left:before { | |
content: "\f100"; | |
} | |
.fa-angle-double-right:before { | |
content: "\f101"; | |
} | |
.fa-angle-double-up:before { | |
content: "\f102"; | |
} | |
.fa-angle-double-down:before { | |
content: "\f103"; | |
} | |
.fa-angle-left:before { | |
content: "\f104"; | |
} | |
.fa-angle-right:before { | |
content: "\f105"; | |
} | |
.fa-angle-up:before { | |
content: "\f106"; | |
} | |
.fa-angle-down:before { | |
content: "\f107"; | |
} | |
.fa-desktop:before { | |
content: "\f108"; | |
} | |
.fa-laptop:before { | |
content: "\f109"; | |
} | |
.fa-tablet:before { | |
content: "\f10a"; | |
} | |
.fa-mobile-phone:before, | |
.fa-mobile:before { | |
content: "\f10b"; | |
} | |
.fa-circle-o:before { | |
content: "\f10c"; | |
} | |
.fa-quote-left:before { | |
content: "\f10d"; | |
} | |
.fa-quote-right:before { | |
content: "\f10e"; | |
} | |
.fa-spinner:before { | |
content: "\f110"; | |
} | |
.fa-circle:before { | |
content: "\f111"; | |
} | |
.fa-mail-reply:before, | |
.fa-reply:before { | |
content: "\f112"; | |
} | |
.fa-github-alt:before { | |
content: "\f113"; | |
} | |
.fa-folder-o:before { | |
content: "\f114"; | |
} | |
.fa-folder-open-o:before { | |
content: "\f115"; | |
} | |
.fa-smile-o:before { | |
content: "\f118"; | |
} | |
.fa-frown-o:before { | |
content: "\f119"; | |
} | |
.fa-meh-o:before { | |
content: "\f11a"; | |
} | |
.fa-gamepad:before { | |
content: "\f11b"; | |
} | |
.fa-keyboard-o:before { | |
content: "\f11c"; | |
} | |
.fa-flag-o:before { | |
content: "\f11d"; | |
} | |
.fa-flag-checkered:before { | |
content: "\f11e"; | |
} | |
.fa-terminal:before { | |
content: "\f120"; | |
} | |
.fa-code:before { | |
content: "\f121"; | |
} | |
.fa-mail-reply-all:before, | |
.fa-reply-all:before { | |
content: "\f122"; | |
} | |
.fa-star-half-empty:before, | |
.fa-star-half-full:before, | |
.fa-star-half-o:before { | |
content: "\f123"; | |
} | |
.fa-location-arrow:before { | |
content: "\f124"; | |
} | |
.fa-crop:before { | |
content: "\f125"; | |
} | |
.fa-code-fork:before { | |
content: "\f126"; | |
} | |
.fa-unlink:before, | |
.fa-chain-broken:before { | |
content: "\f127"; | |
} | |
.fa-question:before { | |
content: "\f128"; | |
} | |
.fa-info:before { | |
content: "\f129"; | |
} | |
.fa-exclamation:before { | |
content: "\f12a"; | |
} | |
.fa-superscript:before { | |
content: "\f12b"; | |
} | |
.fa-subscript:before { | |
content: "\f12c"; | |
} | |
.fa-eraser:before { | |
content: "\f12d"; | |
} | |
.fa-puzzle-piece:before { | |
content: "\f12e"; | |
} | |
.fa-microphone:before { | |
content: "\f130"; | |
} | |
.fa-microphone-slash:before { | |
content: "\f131"; | |
} | |
.fa-shield:before { | |
content: "\f132"; | |
} | |
.fa-calendar-o:before { | |
content: "\f133"; | |
} | |
.fa-fire-extinguisher:before { | |
content: "\f134"; | |
} | |
.fa-rocket:before { | |
content: "\f135"; | |
} | |
.fa-maxcdn:before { | |
content: "\f136"; | |
} | |
.fa-chevron-circle-left:before { | |
content: "\f137"; | |
} | |
.fa-chevron-circle-right:before { | |
content: "\f138"; | |
} | |
.fa-chevron-circle-up:before { | |
content: "\f139"; | |
} | |
.fa-chevron-circle-down:before { | |
content: "\f13a"; | |
} | |
.fa-html5:before { | |
content: "\f13b"; | |
} | |
.fa-css3:before { | |
content: "\f13c"; | |
} | |
.fa-anchor:before { | |
content: "\f13d"; | |
} | |
.fa-unlock-alt:before { | |
content: "\f13e"; | |
} | |
.fa-bullseye:before { | |
content: "\f140"; | |
} | |
.fa-ellipsis-h:before { | |
content: "\f141"; | |
} | |
.fa-ellipsis-v:before { | |
content: "\f142"; | |
} | |
.fa-rss-square:before { | |
content: "\f143"; | |
} | |
.fa-play-circle:before { | |
content: "\f144"; | |
} | |
.fa-ticket:before { | |
content: "\f145"; | |
} | |
.fa-minus-square:before { | |
content: "\f146"; | |
} | |
.fa-minus-square-o:before { | |
content: "\f147"; | |
} | |
.fa-level-up:before { | |
content: "\f148"; | |
} | |
.fa-level-down:before { | |
content: "\f149"; | |
} | |
.fa-check-square:before { | |
content: "\f14a"; | |
} | |
.fa-pencil-square:before { | |
content: "\f14b"; | |
} | |
.fa-external-link-square:before { | |
content: "\f14c"; | |
} | |
.fa-share-square:before { | |
content: "\f14d"; | |
} | |
.fa-compass:before { | |
content: "\f14e"; | |
} | |
.fa-toggle-down:before, | |
.fa-caret-square-o-down:before { | |
content: "\f150"; | |
} | |
.fa-toggle-up:before, | |
.fa-caret-square-o-up:before { | |
content: "\f151"; | |
} | |
.fa-toggle-right:before, | |
.fa-caret-square-o-right:before { | |
content: "\f152"; | |
} | |
.fa-euro:before, | |
.fa-eur:before { | |
content: "\f153"; | |
} | |
.fa-gbp:before { | |
content: "\f154"; | |
} | |
.fa-dollar:before, | |
.fa-usd:before { | |
content: "\f155"; | |
} | |
.fa-rupee:before, | |
.fa-inr:before { | |
content: "\f156"; | |
} | |
.fa-cny:before, | |
.fa-rmb:before, | |
.fa-yen:before, | |
.fa-jpy:before { | |
content: "\f157"; | |
} | |
.fa-ruble:before, | |
.fa-rouble:before, | |
.fa-rub:before { | |
content: "\f158"; | |
} | |
.fa-won:before, | |
.fa-krw:before { | |
content: "\f159"; | |
} | |
.fa-bitcoin:before, | |
.fa-btc:before { | |
content: "\f15a"; | |
} | |
.fa-file:before { | |
content: "\f15b"; | |
} | |
.fa-file-text:before { | |
content: "\f15c"; | |
} | |
.fa-sort-alpha-asc:before { | |
content: "\f15d"; | |
} | |
.fa-sort-alpha-desc:before { | |
content: "\f15e"; | |
} | |
.fa-sort-amount-asc:before { | |
content: "\f160"; | |
} | |
.fa-sort-amount-desc:before { | |
content: "\f161"; | |
} | |
.fa-sort-numeric-asc:before { | |
content: "\f162"; | |
} | |
.fa-sort-numeric-desc:before { | |
content: "\f163"; | |
} | |
.fa-thumbs-up:before { | |
content: "\f164"; | |
} | |
.fa-thumbs-down:before { | |
content: "\f165"; | |
} | |
.fa-youtube-square:before { | |
content: "\f166"; | |
} | |
.fa-youtube:before { | |
content: "\f167"; | |
} | |
.fa-xing:before { | |
content: "\f168"; | |
} | |
.fa-xing-square:before { | |
content: "\f169"; | |
} | |
.fa-youtube-play:before { | |
content: "\f16a"; | |
} | |
.fa-dropbox:before { | |
content: "\f16b"; | |
} | |
.fa-stack-overflow:before { | |
content: "\f16c"; | |
} | |
.fa-instagram:before { | |
content: "\f16d"; | |
} | |
.fa-flickr:before { | |
content: "\f16e"; | |
} | |
.fa-adn:before { | |
content: "\f170"; | |
} | |
.fa-bitbucket:before { | |
content: "\f171"; | |
} | |
.fa-bitbucket-square:before { | |
content: "\f172"; | |
} | |
.fa-tumblr:before { | |
content: "\f173"; | |
} | |
.fa-tumblr-square:before { | |
content: "\f174"; | |
} | |
.fa-long-arrow-down:before { | |
content: "\f175"; | |
} | |
.fa-long-arrow-up:before { | |
content: "\f176"; | |
} | |
.fa-long-arrow-left:before { | |
content: "\f177"; | |
} | |
.fa-long-arrow-right:before { | |
content: "\f178"; | |
} | |
.fa-apple:before { | |
content: "\f179"; | |
} | |
.fa-windows:before { | |
content: "\f17a"; | |
} | |
.fa-android:before { | |
content: "\f17b"; | |
} | |
.fa-linux:before { | |
content: "\f17c"; | |
} | |
.fa-dribbble:before { | |
content: "\f17d"; | |
} | |
.fa-skype:before { | |
content: "\f17e"; | |
} | |
.fa-foursquare:before { | |
content: "\f180"; | |
} | |
.fa-trello:before { | |
content: "\f181"; | |
} | |
.fa-female:before { | |
content: "\f182"; | |
} | |
.fa-male:before { | |
content: "\f183"; | |
} | |
.fa-gittip:before { | |
content: "\f184"; | |
} | |
.fa-sun-o:before { | |
content: "\f185"; | |
} | |
.fa-moon-o:before { | |
content: "\f186"; | |
} | |
.fa-archive:before { | |
content: "\f187"; | |
} | |
.fa-bug:before { | |
content: "\f188"; | |
} | |
.fa-vk:before { | |
content: "\f189"; | |
} | |
.fa-weibo:before { | |
content: "\f18a"; | |
} | |
.fa-renren:before { | |
content: "\f18b"; | |
} | |
.fa-pagelines:before { | |
content: "\f18c"; | |
} | |
.fa-stack-exchange:before { | |
content: "\f18d"; | |
} | |
.fa-arrow-circle-o-right:before { | |
content: "\f18e"; | |
} | |
.fa-arrow-circle-o-left:before { | |
content: "\f190"; | |
} | |
.fa-toggle-left:before, | |
.fa-caret-square-o-left:before { | |
content: "\f191"; | |
} | |
.fa-dot-circle-o:before { | |
content: "\f192"; | |
} | |
.fa-wheelchair:before { | |
content: "\f193"; | |
} | |
.fa-vimeo-square:before { | |
content: "\f194"; | |
} | |
.fa-turkish-lira:before, | |
.fa-try:before { | |
content: "\f195"; | |
} | |
.fa-plus-square-o:before { | |
content: "\f196"; | |
} | |
.fa-space-shuttle:before { | |
content: "\f197"; | |
} | |
.fa-slack:before { | |
content: "\f198"; | |
} | |
.fa-envelope-square:before { | |
content: "\f199"; | |
} | |
.fa-wordpress:before { | |
content: "\f19a"; | |
} | |
.fa-openid:before { | |
content: "\f19b"; | |
} | |
.fa-institution:before, | |
.fa-bank:before, | |
.fa-university:before { | |
content: "\f19c"; | |
} | |
.fa-mortar-board:before, | |
.fa-graduation-cap:before { | |
content: "\f19d"; | |
} | |
.fa-yahoo:before { | |
content: "\f19e"; | |
} | |
.fa-google:before { | |
content: "\f1a0"; | |
} | |
.fa-reddit:before { | |
content: "\f1a1"; | |
} | |
.fa-reddit-square:before { | |
content: "\f1a2"; | |
} | |
.fa-stumbleupon-circle:before { | |
content: "\f1a3"; | |
} | |
.fa-stumbleupon:before { | |
content: "\f1a4"; | |
} | |
.fa-delicious:before { | |
content: "\f1a5"; | |
} | |
.fa-digg:before { | |
content: "\f1a6"; | |
} | |
.fa-pied-piper:before { | |
content: "\f1a7"; | |
} | |
.fa-pied-piper-alt:before { | |
content: "\f1a8"; | |
} | |
.fa-drupal:before { | |
content: "\f1a9"; | |
} | |
.fa-joomla:before { | |
content: "\f1aa"; | |
} | |
.fa-language:before { | |
content: "\f1ab"; | |
} | |
.fa-fax:before { | |
content: "\f1ac"; | |
} | |
.fa-building:before { | |
content: "\f1ad"; | |
} | |
.fa-child:before { | |
content: "\f1ae"; | |
} | |
.fa-paw:before { | |
content: "\f1b0"; | |
} | |
.fa-spoon:before { | |
content: "\f1b1"; | |
} | |
.fa-cube:before { | |
content: "\f1b2"; | |
} | |
.fa-cubes:before { | |
content: "\f1b3"; | |
} | |
.fa-behance:before { | |
content: "\f1b4"; | |
} | |
.fa-behance-square:before { | |
content: "\f1b5"; | |
} | |
.fa-steam:before { | |
content: "\f1b6"; | |
} | |
.fa-steam-square:before { | |
content: "\f1b7"; | |
} | |
.fa-recycle:before { | |
content: "\f1b8"; | |
} | |
.fa-automobile:before, | |
.fa-car:before { | |
content: "\f1b9"; | |
} | |
.fa-cab:before, | |
.fa-taxi:before { | |
content: "\f1ba"; | |
} | |
.fa-tree:before { | |
content: "\f1bb"; | |
} | |
.fa-spotify:before { | |
content: "\f1bc"; | |
} | |
.fa-deviantart:before { | |
content: "\f1bd"; | |
} | |
.fa-soundcloud:before { | |
content: "\f1be"; | |
} | |
.fa-database:before { | |
content: "\f1c0"; | |
} | |
.fa-file-pdf-o:before { | |
content: "\f1c1"; | |
} | |
.fa-file-word-o:before { | |
content: "\f1c2"; | |
} | |
.fa-file-excel-o:before { | |
content: "\f1c3"; | |
} | |
.fa-file-powerpoint-o:before { | |
content: "\f1c4"; | |
} | |
.fa-file-photo-o:before, | |
.fa-file-picture-o:before, | |
.fa-file-image-o:before { | |
content: "\f1c5"; | |
} | |
.fa-file-zip-o:before, | |
.fa-file-archive-o:before { | |
content: "\f1c6"; | |
} | |
.fa-file-sound-o:before, | |
.fa-file-audio-o:before { | |
content: "\f1c7"; | |
} | |
.fa-file-movie-o:before, | |
.fa-file-video-o:before { | |
content: "\f1c8"; | |
} | |
.fa-file-code-o:before { | |
content: "\f1c9"; | |
} | |
.fa-vine:before { | |
content: "\f1ca"; | |
} | |
.fa-codepen:before { | |
content: "\f1cb"; | |
} | |
.fa-jsfiddle:before { | |
content: "\f1cc"; | |
} | |
.fa-life-bouy:before, | |
.fa-life-buoy:before, | |
.fa-life-saver:before, | |
.fa-support:before, | |
.fa-life-ring:before { | |
content: "\f1cd"; | |
} | |
.fa-circle-o-notch:before { | |
content: "\f1ce"; | |
} | |
.fa-ra:before, | |
.fa-rebel:before { | |
content: "\f1d0"; | |
} | |
.fa-ge:before, | |
.fa-empire:before { | |
content: "\f1d1"; | |
} | |
.fa-git-square:before { | |
content: "\f1d2"; | |
} | |
.fa-git:before { | |
content: "\f1d3"; | |
} | |
.fa-hacker-news:before { | |
content: "\f1d4"; | |
} | |
.fa-tencent-weibo:before { | |
content: "\f1d5"; | |
} | |
.fa-qq:before { | |
content: "\f1d6"; | |
} | |
.fa-wechat:before, | |
.fa-weixin:before { | |
content: "\f1d7"; | |
} | |
.fa-send:before, | |
.fa-paper-plane:before { | |
content: "\f1d8"; | |
} | |
.fa-send-o:before, | |
.fa-paper-plane-o:before { | |
content: "\f1d9"; | |
} | |
.fa-history:before { | |
content: "\f1da"; | |
} | |
.fa-circle-thin:before { | |
content: "\f1db"; | |
} | |
.fa-header:before { | |
content: "\f1dc"; | |
} | |
.fa-paragraph:before { | |
content: "\f1dd"; | |
} | |
.fa-sliders:before { | |
content: "\f1de"; | |
} | |
.fa-share-alt:before { | |
content: "\f1e0"; | |
} | |
.fa-share-alt-square:before { | |
content: "\f1e1"; | |
} | |
.fa-bomb:before { | |
content: "\f1e2"; | |
} | |
.fa-soccer-ball-o:before, | |
.fa-futbol-o:before { | |
content: "\f1e3"; | |
} | |
.fa-tty:before { | |
content: "\f1e4"; | |
} | |
.fa-binoculars:before { | |
content: "\f1e5"; | |
} | |
.fa-plug:before { | |
content: "\f1e6"; | |
} | |
.fa-slideshare:before { | |
content: "\f1e7"; | |
} | |
.fa-twitch:before { | |
content: "\f1e8"; | |
} | |
.fa-yelp:before { | |
content: "\f1e9"; | |
} | |
.fa-newspaper-o:before { | |
content: "\f1ea"; | |
} | |
.fa-wifi:before { | |
content: "\f1eb"; | |
} | |
.fa-calculator:before { | |
content: "\f1ec"; | |
} | |
.fa-paypal:before { | |
content: "\f1ed"; | |
} | |
.fa-google-wallet:before { | |
content: "\f1ee"; | |
} | |
.fa-cc-visa:before { | |
content: "\f1f0"; | |
} | |
.fa-cc-mastercard:before { | |
content: "\f1f1"; | |
} | |
.fa-cc-discover:before { | |
content: "\f1f2"; | |
} | |
.fa-cc-amex:before { | |
content: "\f1f3"; | |
} | |
.fa-cc-paypal:before { | |
content: "\f1f4"; | |
} | |
.fa-cc-stripe:before { | |
content: "\f1f5"; | |
} | |
.fa-bell-slash:before { | |
content: "\f1f6"; | |
} | |
.fa-bell-slash-o:before { | |
content: "\f1f7"; | |
} | |
.fa-trash:before { | |
content: "\f1f8"; | |
} | |
.fa-copyright:before { | |
content: "\f1f9"; | |
} | |
.fa-at:before { | |
content: "\f1fa"; | |
} | |
.fa-eyedropper:before { | |
content: "\f1fb"; | |
} | |
.fa-paint-brush:before { | |
content: "\f1fc"; | |
} | |
.fa-birthday-cake:before { | |
content: "\f1fd"; | |
} | |
.fa-area-chart:before { | |
content: "\f1fe"; | |
} | |
.fa-pie-chart:before { | |
content: "\f200"; | |
} | |
.fa-line-chart:before { | |
content: "\f201"; | |
} | |
.fa-lastfm:before { | |
content: "\f202"; | |
} | |
.fa-lastfm-square:before { | |
content: "\f203"; | |
} | |
.fa-toggle-off:before { | |
content: "\f204"; | |
} | |
.fa-toggle-on:before { | |
content: "\f205"; | |
} | |
.fa-bicycle:before { | |
content: "\f206"; | |
} | |
.fa-bus:before { | |
content: "\f207"; | |
} | |
.fa-ioxhost:before { | |
content: "\f208"; | |
} | |
.fa-angellist:before { | |
content: "\f209"; | |
} | |
.fa-cc:before { | |
content: "\f20a"; | |
} | |
.fa-shekel:before, | |
.fa-sheqel:before, | |
.fa-ils:before { | |
content: "\f20b"; | |
} | |
.fa-meanpath:before { | |
content: "\f20c"; | |
} | |
/*! | |
* | |
* IPython base | |
* | |
*/ | |
.modal.fade .modal-dialog { | |
-webkit-transform: translate(0, 0); | |
-ms-transform: translate(0, 0); | |
-o-transform: translate(0, 0); | |
transform: translate(0, 0); | |
} | |
code { | |
color: #000; | |
} | |
pre { | |
font-size: inherit; | |
line-height: inherit; | |
} | |
label { | |
font-weight: normal; | |
} | |
/* Make the page background atleast 100% the height of the view port */ | |
/* Make the page itself atleast 70% the height of the view port */ | |
.border-box-sizing { | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
} | |
.corner-all { | |
border-radius: 2px; | |
} | |
.no-padding { | |
padding: 0px; | |
} | |
/* Flexible box model classes */ | |
/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */ | |
/* This file is a compatability layer. It allows the usage of flexible box | |
model layouts accross multiple browsers, including older browsers. The newest, | |
universal implementation of the flexible box model is used when available (see | |
`Modern browsers` comments below). Browsers that are known to implement this | |
new spec completely include: | |
Firefox 28.0+ | |
Chrome 29.0+ | |
Internet Explorer 11+ | |
Opera 17.0+ | |
Browsers not listed, including Safari, are supported via the styling under the | |
`Old browsers` comments below. | |
*/ | |
.hbox { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
} | |
.hbox > * { | |
/* Old browsers */ | |
-webkit-box-flex: 0; | |
-moz-box-flex: 0; | |
box-flex: 0; | |
/* Modern browsers */ | |
flex: none; | |
} | |
.vbox { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
} | |
.vbox > * { | |
/* Old browsers */ | |
-webkit-box-flex: 0; | |
-moz-box-flex: 0; | |
box-flex: 0; | |
/* Modern browsers */ | |
flex: none; | |
} | |
.hbox.reverse, | |
.vbox.reverse, | |
.reverse { | |
/* Old browsers */ | |
-webkit-box-direction: reverse; | |
-moz-box-direction: reverse; | |
box-direction: reverse; | |
/* Modern browsers */ | |
flex-direction: row-reverse; | |
} | |
.hbox.box-flex0, | |
.vbox.box-flex0, | |
.box-flex0 { | |
/* Old browsers */ | |
-webkit-box-flex: 0; | |
-moz-box-flex: 0; | |
box-flex: 0; | |
/* Modern browsers */ | |
flex: none; | |
width: auto; | |
} | |
.hbox.box-flex1, | |
.vbox.box-flex1, | |
.box-flex1 { | |
/* Old browsers */ | |
-webkit-box-flex: 1; | |
-moz-box-flex: 1; | |
box-flex: 1; | |
/* Modern browsers */ | |
flex: 1; | |
} | |
.hbox.box-flex, | |
.vbox.box-flex, | |
.box-flex { | |
/* Old browsers */ | |
/* Old browsers */ | |
-webkit-box-flex: 1; | |
-moz-box-flex: 1; | |
box-flex: 1; | |
/* Modern browsers */ | |
flex: 1; | |
} | |
.hbox.box-flex2, | |
.vbox.box-flex2, | |
.box-flex2 { | |
/* Old browsers */ | |
-webkit-box-flex: 2; | |
-moz-box-flex: 2; | |
box-flex: 2; | |
/* Modern browsers */ | |
flex: 2; | |
} | |
.box-group1 { | |
/* Deprecated */ | |
-webkit-box-flex-group: 1; | |
-moz-box-flex-group: 1; | |
box-flex-group: 1; | |
} | |
.box-group2 { | |
/* Deprecated */ | |
-webkit-box-flex-group: 2; | |
-moz-box-flex-group: 2; | |
box-flex-group: 2; | |
} | |
.hbox.start, | |
.vbox.start, | |
.start { | |
/* Old browsers */ | |
-webkit-box-pack: start; | |
-moz-box-pack: start; | |
box-pack: start; | |
/* Modern browsers */ | |
justify-content: flex-start; | |
} | |
.hbox.end, | |
.vbox.end, | |
.end { | |
/* Old browsers */ | |
-webkit-box-pack: end; | |
-moz-box-pack: end; | |
box-pack: end; | |
/* Modern browsers */ | |
justify-content: flex-end; | |
} | |
.hbox.center, | |
.vbox.center, | |
.center { | |
/* Old browsers */ | |
-webkit-box-pack: center; | |
-moz-box-pack: center; | |
box-pack: center; | |
/* Modern browsers */ | |
justify-content: center; | |
} | |
.hbox.baseline, | |
.vbox.baseline, | |
.baseline { | |
/* Old browsers */ | |
-webkit-box-pack: baseline; | |
-moz-box-pack: baseline; | |
box-pack: baseline; | |
/* Modern browsers */ | |
justify-content: baseline; | |
} | |
.hbox.stretch, | |
.vbox.stretch, | |
.stretch { | |
/* Old browsers */ | |
-webkit-box-pack: stretch; | |
-moz-box-pack: stretch; | |
box-pack: stretch; | |
/* Modern browsers */ | |
justify-content: stretch; | |
} | |
.hbox.align-start, | |
.vbox.align-start, | |
.align-start { | |
/* Old browsers */ | |
-webkit-box-align: start; | |
-moz-box-align: start; | |
box-align: start; | |
/* Modern browsers */ | |
align-items: flex-start; | |
} | |
.hbox.align-end, | |
.vbox.align-end, | |
.align-end { | |
/* Old browsers */ | |
-webkit-box-align: end; | |
-moz-box-align: end; | |
box-align: end; | |
/* Modern browsers */ | |
align-items: flex-end; | |
} | |
.hbox.align-center, | |
.vbox.align-center, | |
.align-center { | |
/* Old browsers */ | |
-webkit-box-align: center; | |
-moz-box-align: center; | |
box-align: center; | |
/* Modern browsers */ | |
align-items: center; | |
} | |
.hbox.align-baseline, | |
.vbox.align-baseline, | |
.align-baseline { | |
/* Old browsers */ | |
-webkit-box-align: baseline; | |
-moz-box-align: baseline; | |
box-align: baseline; | |
/* Modern browsers */ | |
align-items: baseline; | |
} | |
.hbox.align-stretch, | |
.vbox.align-stretch, | |
.align-stretch { | |
/* Old browsers */ | |
-webkit-box-align: stretch; | |
-moz-box-align: stretch; | |
box-align: stretch; | |
/* Modern browsers */ | |
align-items: stretch; | |
} | |
div.error { | |
margin: 2em; | |
text-align: center; | |
} | |
div.error > h1 { | |
font-size: 500%; | |
line-height: normal; | |
} | |
div.error > p { | |
font-size: 200%; | |
line-height: normal; | |
} | |
div.traceback-wrapper { | |
text-align: left; | |
max-width: 800px; | |
margin: auto; | |
} | |
/** | |
* Primary styles | |
* | |
* Author: Jupyter Development Team | |
*/ | |
body { | |
background-color: #fff; | |
/* This makes sure that the body covers the entire window and needs to | |
be in a different element than the display: box in wrapper below */ | |
position: absolute; | |
left: 0px; | |
right: 0px; | |
top: 0px; | |
bottom: 0px; | |
overflow: visible; | |
} | |
body > #header { | |
/* Initially hidden to prevent FLOUC */ | |
display: none; | |
background-color: #fff; | |
/* Display over codemirror */ | |
position: relative; | |
z-index: 100; | |
} | |
body > #header #header-container { | |
padding-bottom: 5px; | |
padding-top: 5px; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
} | |
body > #header .header-bar { | |
width: 100%; | |
height: 1px; | |
background: #e7e7e7; | |
margin-bottom: -1px; | |
} | |
@media print { | |
body > #header { | |
display: none !important; | |
} | |
} | |
#header-spacer { | |
width: 100%; | |
visibility: hidden; | |
} | |
@media print { | |
#header-spacer { | |
display: none; | |
} | |
} | |
#ipython_notebook { | |
padding-left: 0px; | |
padding-top: 1px; | |
padding-bottom: 1px; | |
} | |
@media (max-width: 991px) { | |
#ipython_notebook { | |
margin-left: 10px; | |
} | |
} | |
#noscript { | |
width: auto; | |
padding-top: 16px; | |
padding-bottom: 16px; | |
text-align: center; | |
font-size: 22px; | |
color: red; | |
font-weight: bold; | |
} | |
#ipython_notebook img { | |
height: 28px; | |
} | |
#site { | |
width: 100%; | |
display: none; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
overflow: auto; | |
} | |
@media print { | |
#site { | |
height: auto !important; | |
} | |
} | |
/* Smaller buttons */ | |
.ui-button .ui-button-text { | |
padding: 0.2em 0.8em; | |
font-size: 77%; | |
} | |
input.ui-button { | |
padding: 0.3em 0.9em; | |
} | |
span#login_widget { | |
float: right; | |
} | |
span#login_widget > .button, | |
#logout { | |
color: #333; | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
span#login_widget > .button:focus, | |
#logout:focus, | |
span#login_widget > .button.focus, | |
#logout.focus { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #8c8c8c; | |
} | |
span#login_widget > .button:hover, | |
#logout:hover { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
span#login_widget > .button:active, | |
#logout:active, | |
span#login_widget > .button.active, | |
#logout.active, | |
.open > .dropdown-togglespan#login_widget > .button, | |
.open > .dropdown-toggle#logout { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
span#login_widget > .button:active:hover, | |
#logout:active:hover, | |
span#login_widget > .button.active:hover, | |
#logout.active:hover, | |
.open > .dropdown-togglespan#login_widget > .button:hover, | |
.open > .dropdown-toggle#logout:hover, | |
span#login_widget > .button:active:focus, | |
#logout:active:focus, | |
span#login_widget > .button.active:focus, | |
#logout.active:focus, | |
.open > .dropdown-togglespan#login_widget > .button:focus, | |
.open > .dropdown-toggle#logout:focus, | |
span#login_widget > .button:active.focus, | |
#logout:active.focus, | |
span#login_widget > .button.active.focus, | |
#logout.active.focus, | |
.open > .dropdown-togglespan#login_widget > .button.focus, | |
.open > .dropdown-toggle#logout.focus { | |
color: #333; | |
background-color: #d4d4d4; | |
border-color: #8c8c8c; | |
} | |
span#login_widget > .button:active, | |
#logout:active, | |
span#login_widget > .button.active, | |
#logout.active, | |
.open > .dropdown-togglespan#login_widget > .button, | |
.open > .dropdown-toggle#logout { | |
background-image: none; | |
} | |
span#login_widget > .button.disabled:hover, | |
#logout.disabled:hover, | |
span#login_widget > .button[disabled]:hover, | |
#logout[disabled]:hover, | |
fieldset[disabled] span#login_widget > .button:hover, | |
fieldset[disabled] #logout:hover, | |
span#login_widget > .button.disabled:focus, | |
#logout.disabled:focus, | |
span#login_widget > .button[disabled]:focus, | |
#logout[disabled]:focus, | |
fieldset[disabled] span#login_widget > .button:focus, | |
fieldset[disabled] #logout:focus, | |
span#login_widget > .button.disabled.focus, | |
#logout.disabled.focus, | |
span#login_widget > .button[disabled].focus, | |
#logout[disabled].focus, | |
fieldset[disabled] span#login_widget > .button.focus, | |
fieldset[disabled] #logout.focus { | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
span#login_widget > .button .badge, | |
#logout .badge { | |
color: #fff; | |
background-color: #333; | |
} | |
.nav-header { | |
text-transform: none; | |
} | |
#header > span { | |
margin-top: 10px; | |
} | |
.modal_stretch .modal-dialog { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
min-height: 80vh; | |
} | |
.modal_stretch .modal-dialog .modal-body { | |
max-height: calc(100vh - 200px); | |
overflow: auto; | |
flex: 1; | |
} | |
@media (min-width: 768px) { | |
.modal .modal-dialog { | |
width: 700px; | |
} | |
} | |
@media (min-width: 768px) { | |
select.form-control { | |
margin-left: 12px; | |
margin-right: 12px; | |
} | |
} | |
/*! | |
* | |
* IPython auth | |
* | |
*/ | |
.center-nav { | |
display: inline-block; | |
margin-bottom: -4px; | |
} | |
/*! | |
* | |
* IPython tree view | |
* | |
*/ | |
/* We need an invisible input field on top of the sentense*/ | |
/* "Drag file onto the list ..." */ | |
.alternate_upload { | |
background-color: none; | |
display: inline; | |
} | |
.alternate_upload.form { | |
padding: 0; | |
margin: 0; | |
} | |
.alternate_upload input.fileinput { | |
text-align: center; | |
vertical-align: middle; | |
display: inline; | |
opacity: 0; | |
z-index: 2; | |
width: 12ex; | |
margin-right: -12ex; | |
} | |
.alternate_upload .btn-upload { | |
height: 22px; | |
} | |
/** | |
* Primary styles | |
* | |
* Author: Jupyter Development Team | |
*/ | |
ul#tabs { | |
margin-bottom: 4px; | |
} | |
ul#tabs a { | |
padding-top: 6px; | |
padding-bottom: 4px; | |
} | |
ul.breadcrumb a:focus, | |
ul.breadcrumb a:hover { | |
text-decoration: none; | |
} | |
ul.breadcrumb i.icon-home { | |
font-size: 16px; | |
margin-right: 4px; | |
} | |
ul.breadcrumb span { | |
color: #5e5e5e; | |
} | |
.list_toolbar { | |
padding: 4px 0 4px 0; | |
vertical-align: middle; | |
} | |
.list_toolbar .tree-buttons { | |
padding-top: 1px; | |
} | |
.dynamic-buttons { | |
padding-top: 3px; | |
display: inline-block; | |
} | |
.list_toolbar [class*="span"] { | |
min-height: 24px; | |
} | |
.list_header { | |
font-weight: bold; | |
background-color: #EEE; | |
} | |
.list_placeholder { | |
font-weight: bold; | |
padding-top: 4px; | |
padding-bottom: 4px; | |
padding-left: 7px; | |
padding-right: 7px; | |
} | |
.list_container { | |
margin-top: 4px; | |
margin-bottom: 20px; | |
border: 1px solid #ddd; | |
border-radius: 2px; | |
} | |
.list_container > div { | |
border-bottom: 1px solid #ddd; | |
} | |
.list_container > div:hover .list-item { | |
background-color: red; | |
} | |
.list_container > div:last-child { | |
border: none; | |
} | |
.list_item:hover .list_item { | |
background-color: #ddd; | |
} | |
.list_item a { | |
text-decoration: none; | |
} | |
.list_item:hover { | |
background-color: #fafafa; | |
} | |
.list_header > div, | |
.list_item > div { | |
padding-top: 4px; | |
padding-bottom: 4px; | |
padding-left: 7px; | |
padding-right: 7px; | |
line-height: 22px; | |
} | |
.list_header > div input, | |
.list_item > div input { | |
margin-right: 7px; | |
margin-left: 14px; | |
vertical-align: baseline; | |
line-height: 22px; | |
position: relative; | |
top: -1px; | |
} | |
.list_header > div .item_link, | |
.list_item > div .item_link { | |
margin-left: -1px; | |
vertical-align: baseline; | |
line-height: 22px; | |
} | |
.new-file input[type=checkbox] { | |
visibility: hidden; | |
} | |
.item_name { | |
line-height: 22px; | |
height: 24px; | |
} | |
.item_icon { | |
font-size: 14px; | |
color: #5e5e5e; | |
margin-right: 7px; | |
margin-left: 7px; | |
line-height: 22px; | |
vertical-align: baseline; | |
} | |
.item_buttons { | |
line-height: 1em; | |
margin-left: -5px; | |
} | |
.item_buttons .btn, | |
.item_buttons .btn-group, | |
.item_buttons .input-group { | |
float: left; | |
} | |
.item_buttons > .btn, | |
.item_buttons > .btn-group, | |
.item_buttons > .input-group { | |
margin-left: 5px; | |
} | |
.item_buttons .btn { | |
min-width: 13ex; | |
} | |
.item_buttons .running-indicator { | |
padding-top: 4px; | |
color: #5cb85c; | |
} | |
.item_buttons .kernel-name { | |
padding-top: 4px; | |
color: #5bc0de; | |
margin-right: 7px; | |
float: left; | |
} | |
.toolbar_info { | |
height: 24px; | |
line-height: 24px; | |
} | |
.list_item input:not([type=checkbox]) { | |
padding-top: 3px; | |
padding-bottom: 3px; | |
height: 22px; | |
line-height: 14px; | |
margin: 0px; | |
} | |
.highlight_text { | |
color: blue; | |
} | |
#project_name { | |
display: inline-block; | |
padding-left: 7px; | |
margin-left: -2px; | |
} | |
#project_name > .breadcrumb { | |
padding: 0px; | |
margin-bottom: 0px; | |
background-color: transparent; | |
font-weight: bold; | |
} | |
#tree-selector { | |
padding-right: 0px; | |
} | |
#button-select-all { | |
min-width: 50px; | |
} | |
#select-all { | |
margin-left: 7px; | |
margin-right: 2px; | |
} | |
.menu_icon { | |
margin-right: 2px; | |
} | |
.tab-content .row { | |
margin-left: 0px; | |
margin-right: 0px; | |
} | |
.folder_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f114"; | |
} | |
.folder_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.folder_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.notebook_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f02d"; | |
position: relative; | |
top: -1px; | |
} | |
.notebook_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.notebook_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.running_notebook_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f02d"; | |
position: relative; | |
top: -1px; | |
color: #5cb85c; | |
} | |
.running_notebook_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.running_notebook_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.file_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f016"; | |
position: relative; | |
top: -2px; | |
} | |
.file_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.file_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
#notebook_toolbar .pull-right { | |
padding-top: 0px; | |
margin-right: -1px; | |
} | |
ul#new-menu { | |
left: auto; | |
right: 0; | |
} | |
.kernel-menu-icon { | |
padding-right: 12px; | |
width: 24px; | |
content: "\f096"; | |
} | |
.kernel-menu-icon:before { | |
content: "\f096"; | |
} | |
.kernel-menu-icon-current:before { | |
content: "\f00c"; | |
} | |
#tab_content { | |
padding-top: 20px; | |
} | |
#running .panel-group .panel { | |
margin-top: 3px; | |
margin-bottom: 1em; | |
} | |
#running .panel-group .panel .panel-heading { | |
background-color: #EEE; | |
padding-top: 4px; | |
padding-bottom: 4px; | |
padding-left: 7px; | |
padding-right: 7px; | |
line-height: 22px; | |
} | |
#running .panel-group .panel .panel-heading a:focus, | |
#running .panel-group .panel .panel-heading a:hover { | |
text-decoration: none; | |
} | |
#running .panel-group .panel .panel-body { | |
padding: 0px; | |
} | |
#running .panel-group .panel .panel-body .list_container { | |
margin-top: 0px; | |
margin-bottom: 0px; | |
border: 0px; | |
border-radius: 0px; | |
} | |
#running .panel-group .panel .panel-body .list_container .list_item { | |
border-bottom: 1px solid #ddd; | |
} | |
#running .panel-group .panel .panel-body .list_container .list_item:last-child { | |
border-bottom: 0px; | |
} | |
.delete-button { | |
display: none; | |
} | |
.duplicate-button { | |
display: none; | |
} | |
.rename-button { | |
display: none; | |
} | |
.shutdown-button { | |
display: none; | |
} | |
.dynamic-instructions { | |
display: inline-block; | |
padding-top: 4px; | |
} | |
/*! | |
* | |
* IPython text editor webapp | |
* | |
*/ | |
.selected-keymap i.fa { | |
padding: 0px 5px; | |
} | |
.selected-keymap i.fa:before { | |
content: "\f00c"; | |
} | |
#mode-menu { | |
overflow: auto; | |
max-height: 20em; | |
} | |
.edit_app #header { | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
} | |
.edit_app #menubar .navbar { | |
/* Use a negative 1 bottom margin, so the border overlaps the border of the | |
header */ | |
margin-bottom: -1px; | |
} | |
.dirty-indicator { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
width: 20px; | |
} | |
.dirty-indicator.pull-left { | |
margin-right: .3em; | |
} | |
.dirty-indicator.pull-right { | |
margin-left: .3em; | |
} | |
.dirty-indicator-dirty { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
width: 20px; | |
} | |
.dirty-indicator-dirty.pull-left { | |
margin-right: .3em; | |
} | |
.dirty-indicator-dirty.pull-right { | |
margin-left: .3em; | |
} | |
.dirty-indicator-clean { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
width: 20px; | |
} | |
.dirty-indicator-clean.pull-left { | |
margin-right: .3em; | |
} | |
.dirty-indicator-clean.pull-right { | |
margin-left: .3em; | |
} | |
.dirty-indicator-clean:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f00c"; | |
} | |
.dirty-indicator-clean:before.pull-left { | |
margin-right: .3em; | |
} | |
.dirty-indicator-clean:before.pull-right { | |
margin-left: .3em; | |
} | |
#filename { | |
font-size: 16pt; | |
display: table; | |
padding: 0px 5px; | |
} | |
#current-mode { | |
padding-left: 5px; | |
padding-right: 5px; | |
} | |
#texteditor-backdrop { | |
padding-top: 20px; | |
padding-bottom: 20px; | |
} | |
@media not print { | |
#texteditor-backdrop { | |
background-color: #EEE; | |
} | |
} | |
@media print { | |
#texteditor-backdrop #texteditor-container .CodeMirror-gutter, | |
#texteditor-backdrop #texteditor-container .CodeMirror-gutters { | |
background-color: #fff; | |
} | |
} | |
@media not print { | |
#texteditor-backdrop #texteditor-container .CodeMirror-gutter, | |
#texteditor-backdrop #texteditor-container .CodeMirror-gutters { | |
background-color: #fff; | |
} | |
} | |
@media not print { | |
#texteditor-backdrop #texteditor-container { | |
padding: 0px; | |
background-color: #fff; | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
} | |
} | |
/*! | |
* | |
* IPython notebook | |
* | |
*/ | |
/* CSS font colors for translated ANSI colors. */ | |
.ansibold { | |
font-weight: bold; | |
} | |
/* use dark versions for foreground, to improve visibility */ | |
.ansiblack { | |
color: black; | |
} | |
.ansired { | |
color: darkred; | |
} | |
.ansigreen { | |
color: darkgreen; | |
} | |
.ansiyellow { | |
color: #c4a000; | |
} | |
.ansiblue { | |
color: darkblue; | |
} | |
.ansipurple { | |
color: darkviolet; | |
} | |
.ansicyan { | |
color: steelblue; | |
} | |
.ansigray { | |
color: gray; | |
} | |
/* and light for background, for the same reason */ | |
.ansibgblack { | |
background-color: black; | |
} | |
.ansibgred { | |
background-color: red; | |
} | |
.ansibggreen { | |
background-color: green; | |
} | |
.ansibgyellow { | |
background-color: yellow; | |
} | |
.ansibgblue { | |
background-color: blue; | |
} | |
.ansibgpurple { | |
background-color: magenta; | |
} | |
.ansibgcyan { | |
background-color: cyan; | |
} | |
.ansibggray { | |
background-color: gray; | |
} | |
div.cell { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
border-radius: 2px; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
border-width: 1px; | |
border-style: solid; | |
border-color: transparent; | |
width: 100%; | |
padding: 5px; | |
/* This acts as a spacer between cells, that is outside the border */ | |
margin: 0px; | |
outline: none; | |
border-left-width: 1px; | |
padding-left: 5px; | |
background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%); | |
} | |
div.cell.jupyter-soft-selected { | |
border-left-color: #90CAF9; | |
border-left-color: #E3F2FD; | |
border-left-width: 1px; | |
padding-left: 5px; | |
border-right-color: #E3F2FD; | |
border-right-width: 1px; | |
background: #E3F2FD; | |
} | |
@media print { | |
div.cell.jupyter-soft-selected { | |
border-color: transparent; | |
} | |
} | |
div.cell.selected { | |
border-color: #ababab; | |
border-left-width: 0px; | |
padding-left: 6px; | |
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%); | |
} | |
@media print { | |
div.cell.selected { | |
border-color: transparent; | |
} | |
} | |
div.cell.selected.jupyter-soft-selected { | |
border-left-width: 0; | |
padding-left: 6px; | |
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%); | |
} | |
.edit_mode div.cell.selected { | |
border-color: #66BB6A; | |
border-left-width: 0px; | |
padding-left: 6px; | |
background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%); | |
} | |
@media print { | |
.edit_mode div.cell.selected { | |
border-color: transparent; | |
} | |
} | |
.prompt { | |
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */ | |
min-width: 14ex; | |
/* This padding is tuned to match the padding on the CodeMirror editor. */ | |
padding: 0.4em; | |
margin: 0px; | |
font-family: monospace; | |
text-align: right; | |
/* This has to match that of the the CodeMirror class line-height below */ | |
line-height: 1.21429em; | |
/* Don't highlight prompt number selection */ | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
/* Use default cursor */ | |
cursor: default; | |
} | |
@media (max-width: 540px) { | |
.prompt { | |
text-align: left; | |
} | |
} | |
div.inner_cell { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
/* Old browsers */ | |
-webkit-box-flex: 1; | |
-moz-box-flex: 1; | |
box-flex: 1; | |
/* Modern browsers */ | |
flex: 1; | |
} | |
@-moz-document url-prefix() { | |
div.inner_cell { | |
overflow-x: hidden; | |
} | |
} | |
/* input_area and input_prompt must match in top border and margin for alignment */ | |
div.input_area { | |
border: 1px solid #cfcfcf; | |
border-radius: 2px; | |
background: #f7f7f7; | |
line-height: 1.21429em; | |
} | |
/* This is needed so that empty prompt areas can collapse to zero height when there | |
is no content in the output_subarea and the prompt. The main purpose of this is | |
to make sure that empty JavaScript output_subareas have no height. */ | |
div.prompt:empty { | |
padding-top: 0; | |
padding-bottom: 0; | |
} | |
div.unrecognized_cell { | |
padding: 5px 5px 5px 0px; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
} | |
div.unrecognized_cell .inner_cell { | |
border-radius: 2px; | |
padding: 5px; | |
font-weight: bold; | |
color: red; | |
border: 1px solid #cfcfcf; | |
background: #eaeaea; | |
} | |
div.unrecognized_cell .inner_cell a { | |
color: inherit; | |
text-decoration: none; | |
} | |
div.unrecognized_cell .inner_cell a:hover { | |
color: inherit; | |
text-decoration: none; | |
} | |
@media (max-width: 540px) { | |
div.unrecognized_cell > div.prompt { | |
display: none; | |
} | |
} | |
div.code_cell { | |
/* avoid page breaking on code cells when printing */ | |
} | |
@media print { | |
div.code_cell { | |
page-break-inside: avoid; | |
} | |
} | |
/* any special styling for code cells that are currently running goes here */ | |
div.input { | |
page-break-inside: avoid; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
} | |
@media (max-width: 540px) { | |
div.input { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
} | |
} | |
/* input_area and input_prompt must match in top border and margin for alignment */ | |
div.input_prompt { | |
color: #303F9F; | |
border-top: 1px solid transparent; | |
} | |
div.input_area > div.highlight { | |
margin: 0.4em; | |
border: none; | |
padding: 0px; | |
background-color: transparent; | |
} | |
div.input_area > div.highlight > pre { | |
margin: 0px; | |
border: none; | |
padding: 0px; | |
background-color: transparent; | |
} | |
/* The following gets added to the <head> if it is detected that the user has a | |
* monospace font with inconsistent normal/bold/italic height. See | |
* notebookmain.js. Such fonts will have keywords vertically offset with | |
* respect to the rest of the text. The user should select a better font. | |
* See: https://github.com/ipython/ipython/issues/1503 | |
* | |
* .CodeMirror span { | |
* vertical-align: bottom; | |
* } | |
*/ | |
.CodeMirror { | |
line-height: 1.21429em; | |
/* Changed from 1em to our global default */ | |
font-size: 14px; | |
height: auto; | |
/* Changed to auto to autogrow */ | |
background: none; | |
/* Changed from white to allow our bg to show through */ | |
} | |
.CodeMirror-scroll { | |
/* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/ | |
/* We have found that if it is visible, vertical scrollbars appear with font size changes.*/ | |
overflow-y: hidden; | |
overflow-x: auto; | |
} | |
.CodeMirror-lines { | |
/* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */ | |
/* we have set a different line-height and want this to scale with that. */ | |
padding: 0.4em; | |
} | |
.CodeMirror-linenumber { | |
padding: 0 8px 0 4px; | |
} | |
.CodeMirror-gutters { | |
border-bottom-left-radius: 2px; | |
border-top-left-radius: 2px; | |
} | |
.CodeMirror pre { | |
/* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */ | |
/* .CodeMirror-lines */ | |
padding: 0; | |
border: 0; | |
border-radius: 0; | |
} | |
/* | |
Original style from softwaremaniacs.org (c) Ivan Sagalaev <[email protected]> | |
Adapted from GitHub theme | |
*/ | |
.highlight-base { | |
color: #000; | |
} | |
.highlight-variable { | |
color: #000; | |
} | |
.highlight-variable-2 { | |
color: #1a1a1a; | |
} | |
.highlight-variable-3 { | |
color: #333333; | |
} | |
.highlight-string { | |
color: #BA2121; | |
} | |
.highlight-comment { | |
color: #408080; | |
font-style: italic; | |
} | |
.highlight-number { | |
color: #080; | |
} | |
.highlight-atom { | |
color: #88F; | |
} | |
.highlight-keyword { | |
color: #008000; | |
font-weight: bold; | |
} | |
.highlight-builtin { | |
color: #008000; | |
} | |
.highlight-error { | |
color: #f00; | |
} | |
.highlight-operator { | |
color: #AA22FF; | |
font-weight: bold; | |
} | |
.highlight-meta { | |
color: #AA22FF; | |
} | |
/* previously not defined, copying from default codemirror */ | |
.highlight-def { | |
color: #00f; | |
} | |
.highlight-string-2 { | |
color: #f50; | |
} | |
.highlight-qualifier { | |
color: #555; | |
} | |
.highlight-bracket { | |
color: #997; | |
} | |
.highlight-tag { | |
color: #170; | |
} | |
.highlight-attribute { | |
color: #00c; | |
} | |
.highlight-header { | |
color: blue; | |
} | |
.highlight-quote { | |
color: #090; | |
} | |
.highlight-link { | |
color: #00c; | |
} | |
/* apply the same style to codemirror */ | |
.cm-s-ipython span.cm-keyword { | |
color: #008000; | |
font-weight: bold; | |
} | |
.cm-s-ipython span.cm-atom { | |
color: #88F; | |
} | |
.cm-s-ipython span.cm-number { | |
color: #080; | |
} | |
.cm-s-ipython span.cm-def { | |
color: #00f; | |
} | |
.cm-s-ipython span.cm-variable { | |
color: #000; | |
} | |
.cm-s-ipython span.cm-operator { | |
color: #AA22FF; | |
font-weight: bold; | |
} | |
.cm-s-ipython span.cm-variable-2 { | |
color: #1a1a1a; | |
} | |
.cm-s-ipython span.cm-variable-3 { | |
color: #333333; | |
} | |
.cm-s-ipython span.cm-comment { | |
color: #408080; | |
font-style: italic; | |
} | |
.cm-s-ipython span.cm-string { | |
color: #BA2121; | |
} | |
.cm-s-ipython span.cm-string-2 { | |
color: #f50; | |
} | |
.cm-s-ipython span.cm-meta { | |
color: #AA22FF; | |
} | |
.cm-s-ipython span.cm-qualifier { | |
color: #555; | |
} | |
.cm-s-ipython span.cm-builtin { | |
color: #008000; | |
} | |
.cm-s-ipython span.cm-bracket { | |
color: #997; | |
} | |
.cm-s-ipython span.cm-tag { | |
color: #170; | |
} | |
.cm-s-ipython span.cm-attribute { | |
color: #00c; | |
} | |
.cm-s-ipython span.cm-header { | |
color: blue; | |
} | |
.cm-s-ipython span.cm-quote { | |
color: #090; | |
} | |
.cm-s-ipython span.cm-link { | |
color: #00c; | |
} | |
.cm-s-ipython span.cm-error { | |
color: #f00; | |
} | |
.cm-s-ipython span.cm-tab { | |
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=); | |
background-position: right; | |
background-repeat: no-repeat; | |
} | |
div.output_wrapper { | |
/* this position must be relative to enable descendents to be absolute within it */ | |
position: relative; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
z-index: 1; | |
} | |
/* class for the output area when it should be height-limited */ | |
div.output_scroll { | |
/* ideally, this would be max-height, but FF barfs all over that */ | |
height: 24em; | |
/* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */ | |
width: 100%; | |
overflow: auto; | |
border-radius: 2px; | |
-webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8); | |
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8); | |
display: block; | |
} | |
/* output div while it is collapsed */ | |
div.output_collapsed { | |
margin: 0px; | |
padding: 0px; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
} | |
div.out_prompt_overlay { | |
height: 100%; | |
padding: 0px 0.4em; | |
position: absolute; | |
border-radius: 2px; | |
} | |
div.out_prompt_overlay:hover { | |
/* use inner shadow to get border that is computed the same on WebKit/FF */ | |
-webkit-box-shadow: inset 0 0 1px #000; | |
box-shadow: inset 0 0 1px #000; | |
background: rgba(240, 240, 240, 0.5); | |
} | |
div.output_prompt { | |
color: #D84315; | |
} | |
/* This class is the outer container of all output sections. */ | |
div.output_area { | |
padding: 0px; | |
page-break-inside: avoid; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
} | |
div.output_area .MathJax_Display { | |
text-align: left !important; | |
} | |
div.output_area .rendered_html table { | |
margin-left: 0; | |
margin-right: 0; | |
} | |
div.output_area .rendered_html img { | |
margin-left: 0; | |
margin-right: 0; | |
} | |
div.output_area img, | |
div.output_area svg { | |
max-width: 100%; | |
height: auto; | |
} | |
div.output_area img.unconfined, | |
div.output_area svg.unconfined { | |
max-width: none; | |
} | |
/* This is needed to protect the pre formating from global settings such | |
as that of bootstrap */ | |
.output { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
} | |
@media (max-width: 540px) { | |
div.output_area { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: vertical; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: column; | |
align-items: stretch; | |
} | |
} | |
div.output_area pre { | |
margin: 0; | |
padding: 0; | |
border: 0; | |
vertical-align: baseline; | |
color: black; | |
background-color: transparent; | |
border-radius: 0; | |
} | |
/* This class is for the output subarea inside the output_area and after | |
the prompt div. */ | |
div.output_subarea { | |
overflow-x: auto; | |
padding: 0.4em; | |
/* Old browsers */ | |
-webkit-box-flex: 1; | |
-moz-box-flex: 1; | |
box-flex: 1; | |
/* Modern browsers */ | |
flex: 1; | |
max-width: calc(100% - 14ex); | |
} | |
div.output_scroll div.output_subarea { | |
overflow-x: visible; | |
} | |
/* The rest of the output_* classes are for special styling of the different | |
output types */ | |
/* all text output has this class: */ | |
div.output_text { | |
text-align: left; | |
color: #000; | |
/* This has to match that of the the CodeMirror class line-height below */ | |
line-height: 1.21429em; | |
} | |
/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */ | |
div.output_stderr { | |
background: #fdd; | |
/* very light red background for stderr */ | |
} | |
div.output_latex { | |
text-align: left; | |
} | |
/* Empty output_javascript divs should have no height */ | |
div.output_javascript:empty { | |
padding: 0; | |
} | |
.js-error { | |
color: darkred; | |
} | |
/* raw_input styles */ | |
div.raw_input_container { | |
line-height: 1.21429em; | |
padding-top: 5px; | |
} | |
pre.raw_input_prompt { | |
/* nothing needed here. */ | |
} | |
input.raw_input { | |
font-family: monospace; | |
font-size: inherit; | |
color: inherit; | |
width: auto; | |
/* make sure input baseline aligns with prompt */ | |
vertical-align: baseline; | |
/* padding + margin = 0.5em between prompt and cursor */ | |
padding: 0em 0.25em; | |
margin: 0em 0.25em; | |
} | |
input.raw_input:focus { | |
box-shadow: none; | |
} | |
p.p-space { | |
margin-bottom: 10px; | |
} | |
div.output_unrecognized { | |
padding: 5px; | |
font-weight: bold; | |
color: red; | |
} | |
div.output_unrecognized a { | |
color: inherit; | |
text-decoration: none; | |
} | |
div.output_unrecognized a:hover { | |
color: inherit; | |
text-decoration: none; | |
} | |
.rendered_html { | |
color: #000; | |
/* any extras will just be numbers: */ | |
} | |
.rendered_html em { | |
font-style: italic; | |
} | |
.rendered_html strong { | |
font-weight: bold; | |
} | |
.rendered_html u { | |
text-decoration: underline; | |
} | |
.rendered_html :link { | |
text-decoration: underline; | |
} | |
.rendered_html :visited { | |
text-decoration: underline; | |
} | |
.rendered_html h1 { | |
font-size: 185.7%; | |
margin: 1.08em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
} | |
.rendered_html h2 { | |
font-size: 157.1%; | |
margin: 1.27em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
} | |
.rendered_html h3 { | |
font-size: 128.6%; | |
margin: 1.55em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
} | |
.rendered_html h4 { | |
font-size: 100%; | |
margin: 2em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
} | |
.rendered_html h5 { | |
font-size: 100%; | |
margin: 2em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
font-style: italic; | |
} | |
.rendered_html h6 { | |
font-size: 100%; | |
margin: 2em 0 0 0; | |
font-weight: bold; | |
line-height: 1.0; | |
font-style: italic; | |
} | |
.rendered_html h1:first-child { | |
margin-top: 0.538em; | |
} | |
.rendered_html h2:first-child { | |
margin-top: 0.636em; | |
} | |
.rendered_html h3:first-child { | |
margin-top: 0.777em; | |
} | |
.rendered_html h4:first-child { | |
margin-top: 1em; | |
} | |
.rendered_html h5:first-child { | |
margin-top: 1em; | |
} | |
.rendered_html h6:first-child { | |
margin-top: 1em; | |
} | |
.rendered_html ul { | |
list-style: disc; | |
margin: 0em 2em; | |
padding-left: 0px; | |
} | |
.rendered_html ul ul { | |
list-style: square; | |
margin: 0em 2em; | |
} | |
.rendered_html ul ul ul { | |
list-style: circle; | |
margin: 0em 2em; | |
} | |
.rendered_html ol { | |
list-style: decimal; | |
margin: 0em 2em; | |
padding-left: 0px; | |
} | |
.rendered_html ol ol { | |
list-style: upper-alpha; | |
margin: 0em 2em; | |
} | |
.rendered_html ol ol ol { | |
list-style: lower-alpha; | |
margin: 0em 2em; | |
} | |
.rendered_html ol ol ol ol { | |
list-style: lower-roman; | |
margin: 0em 2em; | |
} | |
.rendered_html ol ol ol ol ol { | |
list-style: decimal; | |
margin: 0em 2em; | |
} | |
.rendered_html * + ul { | |
margin-top: 1em; | |
} | |
.rendered_html * + ol { | |
margin-top: 1em; | |
} | |
.rendered_html hr { | |
color: black; | |
background-color: black; | |
} | |
.rendered_html pre { | |
margin: 1em 2em; | |
} | |
.rendered_html pre, | |
.rendered_html code { | |
border: 0; | |
background-color: #fff; | |
color: #000; | |
font-size: 100%; | |
padding: 0px; | |
} | |
.rendered_html blockquote { | |
margin: 1em 2em; | |
} | |
.rendered_html table { | |
margin-left: auto; | |
margin-right: auto; | |
border: 1px solid black; | |
border-collapse: collapse; | |
} | |
.rendered_html tr, | |
.rendered_html th, | |
.rendered_html td { | |
border: 1px solid black; | |
border-collapse: collapse; | |
margin: 1em 2em; | |
} | |
.rendered_html td, | |
.rendered_html th { | |
text-align: left; | |
vertical-align: middle; | |
padding: 4px; | |
} | |
.rendered_html th { | |
font-weight: bold; | |
} | |
.rendered_html * + table { | |
margin-top: 1em; | |
} | |
.rendered_html p { | |
text-align: left; | |
} | |
.rendered_html * + p { | |
margin-top: 1em; | |
} | |
.rendered_html img { | |
display: block; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.rendered_html * + img { | |
margin-top: 1em; | |
} | |
.rendered_html img, | |
.rendered_html svg { | |
max-width: 100%; | |
height: auto; | |
} | |
.rendered_html img.unconfined, | |
.rendered_html svg.unconfined { | |
max-width: none; | |
} | |
div.text_cell { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
} | |
@media (max-width: 540px) { | |
div.text_cell > div.prompt { | |
display: none; | |
} | |
} | |
div.text_cell_render { | |
/*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/ | |
outline: none; | |
resize: none; | |
width: inherit; | |
border-style: none; | |
padding: 0.5em 0.5em 0.5em 0.4em; | |
color: #000; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
} | |
a.anchor-link:link { | |
text-decoration: none; | |
padding: 0px 20px; | |
visibility: hidden; | |
} | |
h1:hover .anchor-link, | |
h2:hover .anchor-link, | |
h3:hover .anchor-link, | |
h4:hover .anchor-link, | |
h5:hover .anchor-link, | |
h6:hover .anchor-link { | |
visibility: visible; | |
} | |
.text_cell.rendered .input_area { | |
display: none; | |
} | |
.text_cell.rendered .rendered_html { | |
overflow-x: auto; | |
overflow-y: hidden; | |
} | |
.text_cell.unrendered .text_cell_render { | |
display: none; | |
} | |
.cm-header-1, | |
.cm-header-2, | |
.cm-header-3, | |
.cm-header-4, | |
.cm-header-5, | |
.cm-header-6 { | |
font-weight: bold; | |
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
} | |
.cm-header-1 { | |
font-size: 185.7%; | |
} | |
.cm-header-2 { | |
font-size: 157.1%; | |
} | |
.cm-header-3 { | |
font-size: 128.6%; | |
} | |
.cm-header-4 { | |
font-size: 110%; | |
} | |
.cm-header-5 { | |
font-size: 100%; | |
font-style: italic; | |
} | |
.cm-header-6 { | |
font-size: 100%; | |
font-style: italic; | |
} | |
/*! | |
* | |
* IPython notebook webapp | |
* | |
*/ | |
@media (max-width: 767px) { | |
.notebook_app { | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
} | |
#ipython-main-app { | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
height: 100%; | |
} | |
div#notebook_panel { | |
margin: 0px; | |
padding: 0px; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
height: 100%; | |
} | |
div#notebook { | |
font-size: 14px; | |
line-height: 20px; | |
overflow-y: hidden; | |
overflow-x: auto; | |
width: 100%; | |
/* This spaces the page away from the edge of the notebook area */ | |
padding-top: 20px; | |
margin: 0px; | |
outline: none; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
min-height: 100%; | |
} | |
@media not print { | |
#notebook-container { | |
padding: 15px; | |
background-color: #fff; | |
min-height: 0; | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
} | |
} | |
@media print { | |
#notebook-container { | |
width: 100%; | |
} | |
} | |
div.ui-widget-content { | |
border: 1px solid #ababab; | |
outline: none; | |
} | |
pre.dialog { | |
background-color: #f7f7f7; | |
border: 1px solid #ddd; | |
border-radius: 2px; | |
padding: 0.4em; | |
padding-left: 2em; | |
} | |
p.dialog { | |
padding: 0.2em; | |
} | |
/* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems | |
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do. | |
*/ | |
pre, | |
code, | |
kbd, | |
samp { | |
white-space: pre-wrap; | |
} | |
#fonttest { | |
font-family: monospace; | |
} | |
p { | |
margin-bottom: 0; | |
} | |
.end_space { | |
min-height: 100px; | |
transition: height .2s ease; | |
} | |
.notebook_app > #header { | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
} | |
@media not print { | |
.notebook_app { | |
background-color: #EEE; | |
} | |
} | |
kbd { | |
border-style: solid; | |
border-width: 1px; | |
box-shadow: none; | |
margin: 2px; | |
padding-left: 2px; | |
padding-right: 2px; | |
padding-top: 1px; | |
padding-bottom: 1px; | |
} | |
/* CSS for the cell toolbar */ | |
.celltoolbar { | |
border: thin solid #CFCFCF; | |
border-bottom: none; | |
background: #EEE; | |
border-radius: 2px 2px 0px 0px; | |
width: 100%; | |
height: 29px; | |
padding-right: 4px; | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
/* Old browsers */ | |
-webkit-box-pack: end; | |
-moz-box-pack: end; | |
box-pack: end; | |
/* Modern browsers */ | |
justify-content: flex-end; | |
display: -webkit-flex; | |
} | |
@media print { | |
.celltoolbar { | |
display: none; | |
} | |
} | |
.ctb_hideshow { | |
display: none; | |
vertical-align: bottom; | |
} | |
/* ctb_show is added to the ctb_hideshow div to show the cell toolbar. | |
Cell toolbars are only shown when the ctb_global_show class is also set. | |
*/ | |
.ctb_global_show .ctb_show.ctb_hideshow { | |
display: block; | |
} | |
.ctb_global_show .ctb_show + .input_area, | |
.ctb_global_show .ctb_show + div.text_cell_input, | |
.ctb_global_show .ctb_show ~ div.text_cell_render { | |
border-top-right-radius: 0px; | |
border-top-left-radius: 0px; | |
} | |
.ctb_global_show .ctb_show ~ div.text_cell_render { | |
border: 1px solid #cfcfcf; | |
} | |
.celltoolbar { | |
font-size: 87%; | |
padding-top: 3px; | |
} | |
.celltoolbar select { | |
display: block; | |
width: 100%; | |
height: 32px; | |
padding: 6px 12px; | |
font-size: 13px; | |
line-height: 1.42857143; | |
color: #555555; | |
background-color: #fff; | |
background-image: none; | |
border: 1px solid #ccc; | |
border-radius: 2px; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | |
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; | |
height: 30px; | |
padding: 5px 10px; | |
font-size: 12px; | |
line-height: 1.5; | |
border-radius: 1px; | |
width: inherit; | |
font-size: inherit; | |
height: 22px; | |
padding: 0px; | |
display: inline-block; | |
} | |
.celltoolbar select:focus { | |
border-color: #66afe9; | |
outline: 0; | |
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); | |
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); | |
} | |
.celltoolbar select::-moz-placeholder { | |
color: #999; | |
opacity: 1; | |
} | |
.celltoolbar select:-ms-input-placeholder { | |
color: #999; | |
} | |
.celltoolbar select::-webkit-input-placeholder { | |
color: #999; | |
} | |
.celltoolbar select::-ms-expand { | |
border: 0; | |
background-color: transparent; | |
} | |
.celltoolbar select[disabled], | |
.celltoolbar select[readonly], | |
fieldset[disabled] .celltoolbar select { | |
background-color: #eeeeee; | |
opacity: 1; | |
} | |
.celltoolbar select[disabled], | |
fieldset[disabled] .celltoolbar select { | |
cursor: not-allowed; | |
} | |
textarea.celltoolbar select { | |
height: auto; | |
} | |
select.celltoolbar select { | |
height: 30px; | |
line-height: 30px; | |
} | |
textarea.celltoolbar select, | |
select[multiple].celltoolbar select { | |
height: auto; | |
} | |
.celltoolbar label { | |
margin-left: 5px; | |
margin-right: 5px; | |
} | |
.completions { | |
position: absolute; | |
z-index: 110; | |
overflow: hidden; | |
border: 1px solid #ababab; | |
border-radius: 2px; | |
-webkit-box-shadow: 0px 6px 10px -1px #adadad; | |
box-shadow: 0px 6px 10px -1px #adadad; | |
line-height: 1; | |
} | |
.completions select { | |
background: white; | |
outline: none; | |
border: none; | |
padding: 0px; | |
margin: 0px; | |
overflow: auto; | |
font-family: monospace; | |
font-size: 110%; | |
color: #000; | |
width: auto; | |
} | |
.completions select option.context { | |
color: #286090; | |
} | |
#kernel_logo_widget { | |
float: right !important; | |
float: right; | |
} | |
#kernel_logo_widget .current_kernel_logo { | |
display: none; | |
margin-top: -1px; | |
margin-bottom: -1px; | |
width: 32px; | |
height: 32px; | |
} | |
#menubar { | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
margin-top: 1px; | |
} | |
#menubar .navbar { | |
border-top: 1px; | |
border-radius: 0px 0px 2px 2px; | |
margin-bottom: 0px; | |
} | |
#menubar .navbar-toggle { | |
float: left; | |
padding-top: 7px; | |
padding-bottom: 7px; | |
border: none; | |
} | |
#menubar .navbar-collapse { | |
clear: left; | |
} | |
.nav-wrapper { | |
border-bottom: 1px solid #e7e7e7; | |
} | |
i.menu-icon { | |
padding-top: 4px; | |
} | |
ul#help_menu li a { | |
overflow: hidden; | |
padding-right: 2.2em; | |
} | |
ul#help_menu li a i { | |
margin-right: -1.2em; | |
} | |
.dropdown-submenu { | |
position: relative; | |
} | |
.dropdown-submenu > .dropdown-menu { | |
top: 0; | |
left: 100%; | |
margin-top: -6px; | |
margin-left: -1px; | |
} | |
.dropdown-submenu:hover > .dropdown-menu { | |
display: block; | |
} | |
.dropdown-submenu > a:after { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
display: block; | |
content: "\f0da"; | |
float: right; | |
color: #333333; | |
margin-top: 2px; | |
margin-right: -10px; | |
} | |
.dropdown-submenu > a:after.pull-left { | |
margin-right: .3em; | |
} | |
.dropdown-submenu > a:after.pull-right { | |
margin-left: .3em; | |
} | |
.dropdown-submenu:hover > a:after { | |
color: #262626; | |
} | |
.dropdown-submenu.pull-left { | |
float: none; | |
} | |
.dropdown-submenu.pull-left > .dropdown-menu { | |
left: -100%; | |
margin-left: 10px; | |
} | |
#notification_area { | |
float: right !important; | |
float: right; | |
z-index: 10; | |
} | |
.indicator_area { | |
float: right !important; | |
float: right; | |
color: #777; | |
margin-left: 5px; | |
margin-right: 5px; | |
width: 11px; | |
z-index: 10; | |
text-align: center; | |
width: auto; | |
} | |
#kernel_indicator { | |
float: right !important; | |
float: right; | |
color: #777; | |
margin-left: 5px; | |
margin-right: 5px; | |
width: 11px; | |
z-index: 10; | |
text-align: center; | |
width: auto; | |
border-left: 1px solid; | |
} | |
#kernel_indicator .kernel_indicator_name { | |
padding-left: 5px; | |
padding-right: 5px; | |
} | |
#modal_indicator { | |
float: right !important; | |
float: right; | |
color: #777; | |
margin-left: 5px; | |
margin-right: 5px; | |
width: 11px; | |
z-index: 10; | |
text-align: center; | |
width: auto; | |
} | |
#readonly-indicator { | |
float: right !important; | |
float: right; | |
color: #777; | |
margin-left: 5px; | |
margin-right: 5px; | |
width: 11px; | |
z-index: 10; | |
text-align: center; | |
width: auto; | |
margin-top: 2px; | |
margin-bottom: 0px; | |
margin-left: 0px; | |
margin-right: 0px; | |
display: none; | |
} | |
.modal_indicator:before { | |
width: 1.28571429em; | |
text-align: center; | |
} | |
.edit_mode .modal_indicator:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f040"; | |
} | |
.edit_mode .modal_indicator:before.pull-left { | |
margin-right: .3em; | |
} | |
.edit_mode .modal_indicator:before.pull-right { | |
margin-left: .3em; | |
} | |
.command_mode .modal_indicator:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: ' '; | |
} | |
.command_mode .modal_indicator:before.pull-left { | |
margin-right: .3em; | |
} | |
.command_mode .modal_indicator:before.pull-right { | |
margin-left: .3em; | |
} | |
.kernel_idle_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f10c"; | |
} | |
.kernel_idle_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.kernel_idle_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.kernel_busy_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f111"; | |
} | |
.kernel_busy_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.kernel_busy_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.kernel_dead_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f1e2"; | |
} | |
.kernel_dead_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.kernel_dead_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.kernel_disconnected_icon:before { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
content: "\f127"; | |
} | |
.kernel_disconnected_icon:before.pull-left { | |
margin-right: .3em; | |
} | |
.kernel_disconnected_icon:before.pull-right { | |
margin-left: .3em; | |
} | |
.notification_widget { | |
color: #777; | |
z-index: 10; | |
background: rgba(240, 240, 240, 0.5); | |
margin-right: 4px; | |
color: #333; | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
.notification_widget:focus, | |
.notification_widget.focus { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #8c8c8c; | |
} | |
.notification_widget:hover { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
.notification_widget:active, | |
.notification_widget.active, | |
.open > .dropdown-toggle.notification_widget { | |
color: #333; | |
background-color: #e6e6e6; | |
border-color: #adadad; | |
} | |
.notification_widget:active:hover, | |
.notification_widget.active:hover, | |
.open > .dropdown-toggle.notification_widget:hover, | |
.notification_widget:active:focus, | |
.notification_widget.active:focus, | |
.open > .dropdown-toggle.notification_widget:focus, | |
.notification_widget:active.focus, | |
.notification_widget.active.focus, | |
.open > .dropdown-toggle.notification_widget.focus { | |
color: #333; | |
background-color: #d4d4d4; | |
border-color: #8c8c8c; | |
} | |
.notification_widget:active, | |
.notification_widget.active, | |
.open > .dropdown-toggle.notification_widget { | |
background-image: none; | |
} | |
.notification_widget.disabled:hover, | |
.notification_widget[disabled]:hover, | |
fieldset[disabled] .notification_widget:hover, | |
.notification_widget.disabled:focus, | |
.notification_widget[disabled]:focus, | |
fieldset[disabled] .notification_widget:focus, | |
.notification_widget.disabled.focus, | |
.notification_widget[disabled].focus, | |
fieldset[disabled] .notification_widget.focus { | |
background-color: #fff; | |
border-color: #ccc; | |
} | |
.notification_widget .badge { | |
color: #fff; | |
background-color: #333; | |
} | |
.notification_widget.warning { | |
color: #fff; | |
background-color: #f0ad4e; | |
border-color: #eea236; | |
} | |
.notification_widget.warning:focus, | |
.notification_widget.warning.focus { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #985f0d; | |
} | |
.notification_widget.warning:hover { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #d58512; | |
} | |
.notification_widget.warning:active, | |
.notification_widget.warning.active, | |
.open > .dropdown-toggle.notification_widget.warning { | |
color: #fff; | |
background-color: #ec971f; | |
border-color: #d58512; | |
} | |
.notification_widget.warning:active:hover, | |
.notification_widget.warning.active:hover, | |
.open > .dropdown-toggle.notification_widget.warning:hover, | |
.notification_widget.warning:active:focus, | |
.notification_widget.warning.active:focus, | |
.open > .dropdown-toggle.notification_widget.warning:focus, | |
.notification_widget.warning:active.focus, | |
.notification_widget.warning.active.focus, | |
.open > .dropdown-toggle.notification_widget.warning.focus { | |
color: #fff; | |
background-color: #d58512; | |
border-color: #985f0d; | |
} | |
.notification_widget.warning:active, | |
.notification_widget.warning.active, | |
.open > .dropdown-toggle.notification_widget.warning { | |
background-image: none; | |
} | |
.notification_widget.warning.disabled:hover, | |
.notification_widget.warning[disabled]:hover, | |
fieldset[disabled] .notification_widget.warning:hover, | |
.notification_widget.warning.disabled:focus, | |
.notification_widget.warning[disabled]:focus, | |
fieldset[disabled] .notification_widget.warning:focus, | |
.notification_widget.warning.disabled.focus, | |
.notification_widget.warning[disabled].focus, | |
fieldset[disabled] .notification_widget.warning.focus { | |
background-color: #f0ad4e; | |
border-color: #eea236; | |
} | |
.notification_widget.warning .badge { | |
color: #f0ad4e; | |
background-color: #fff; | |
} | |
.notification_widget.success { | |
color: #fff; | |
background-color: #5cb85c; | |
border-color: #4cae4c; | |
} | |
.notification_widget.success:focus, | |
.notification_widget.success.focus { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #255625; | |
} | |
.notification_widget.success:hover { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #398439; | |
} | |
.notification_widget.success:active, | |
.notification_widget.success.active, | |
.open > .dropdown-toggle.notification_widget.success { | |
color: #fff; | |
background-color: #449d44; | |
border-color: #398439; | |
} | |
.notification_widget.success:active:hover, | |
.notification_widget.success.active:hover, | |
.open > .dropdown-toggle.notification_widget.success:hover, | |
.notification_widget.success:active:focus, | |
.notification_widget.success.active:focus, | |
.open > .dropdown-toggle.notification_widget.success:focus, | |
.notification_widget.success:active.focus, | |
.notification_widget.success.active.focus, | |
.open > .dropdown-toggle.notification_widget.success.focus { | |
color: #fff; | |
background-color: #398439; | |
border-color: #255625; | |
} | |
.notification_widget.success:active, | |
.notification_widget.success.active, | |
.open > .dropdown-toggle.notification_widget.success { | |
background-image: none; | |
} | |
.notification_widget.success.disabled:hover, | |
.notification_widget.success[disabled]:hover, | |
fieldset[disabled] .notification_widget.success:hover, | |
.notification_widget.success.disabled:focus, | |
.notification_widget.success[disabled]:focus, | |
fieldset[disabled] .notification_widget.success:focus, | |
.notification_widget.success.disabled.focus, | |
.notification_widget.success[disabled].focus, | |
fieldset[disabled] .notification_widget.success.focus { | |
background-color: #5cb85c; | |
border-color: #4cae4c; | |
} | |
.notification_widget.success .badge { | |
color: #5cb85c; | |
background-color: #fff; | |
} | |
.notification_widget.info { | |
color: #fff; | |
background-color: #5bc0de; | |
border-color: #46b8da; | |
} | |
.notification_widget.info:focus, | |
.notification_widget.info.focus { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #1b6d85; | |
} | |
.notification_widget.info:hover { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #269abc; | |
} | |
.notification_widget.info:active, | |
.notification_widget.info.active, | |
.open > .dropdown-toggle.notification_widget.info { | |
color: #fff; | |
background-color: #31b0d5; | |
border-color: #269abc; | |
} | |
.notification_widget.info:active:hover, | |
.notification_widget.info.active:hover, | |
.open > .dropdown-toggle.notification_widget.info:hover, | |
.notification_widget.info:active:focus, | |
.notification_widget.info.active:focus, | |
.open > .dropdown-toggle.notification_widget.info:focus, | |
.notification_widget.info:active.focus, | |
.notification_widget.info.active.focus, | |
.open > .dropdown-toggle.notification_widget.info.focus { | |
color: #fff; | |
background-color: #269abc; | |
border-color: #1b6d85; | |
} | |
.notification_widget.info:active, | |
.notification_widget.info.active, | |
.open > .dropdown-toggle.notification_widget.info { | |
background-image: none; | |
} | |
.notification_widget.info.disabled:hover, | |
.notification_widget.info[disabled]:hover, | |
fieldset[disabled] .notification_widget.info:hover, | |
.notification_widget.info.disabled:focus, | |
.notification_widget.info[disabled]:focus, | |
fieldset[disabled] .notification_widget.info:focus, | |
.notification_widget.info.disabled.focus, | |
.notification_widget.info[disabled].focus, | |
fieldset[disabled] .notification_widget.info.focus { | |
background-color: #5bc0de; | |
border-color: #46b8da; | |
} | |
.notification_widget.info .badge { | |
color: #5bc0de; | |
background-color: #fff; | |
} | |
.notification_widget.danger { | |
color: #fff; | |
background-color: #d9534f; | |
border-color: #d43f3a; | |
} | |
.notification_widget.danger:focus, | |
.notification_widget.danger.focus { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #761c19; | |
} | |
.notification_widget.danger:hover { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #ac2925; | |
} | |
.notification_widget.danger:active, | |
.notification_widget.danger.active, | |
.open > .dropdown-toggle.notification_widget.danger { | |
color: #fff; | |
background-color: #c9302c; | |
border-color: #ac2925; | |
} | |
.notification_widget.danger:active:hover, | |
.notification_widget.danger.active:hover, | |
.open > .dropdown-toggle.notification_widget.danger:hover, | |
.notification_widget.danger:active:focus, | |
.notification_widget.danger.active:focus, | |
.open > .dropdown-toggle.notification_widget.danger:focus, | |
.notification_widget.danger:active.focus, | |
.notification_widget.danger.active.focus, | |
.open > .dropdown-toggle.notification_widget.danger.focus { | |
color: #fff; | |
background-color: #ac2925; | |
border-color: #761c19; | |
} | |
.notification_widget.danger:active, | |
.notification_widget.danger.active, | |
.open > .dropdown-toggle.notification_widget.danger { | |
background-image: none; | |
} | |
.notification_widget.danger.disabled:hover, | |
.notification_widget.danger[disabled]:hover, | |
fieldset[disabled] .notification_widget.danger:hover, | |
.notification_widget.danger.disabled:focus, | |
.notification_widget.danger[disabled]:focus, | |
fieldset[disabled] .notification_widget.danger:focus, | |
.notification_widget.danger.disabled.focus, | |
.notification_widget.danger[disabled].focus, | |
fieldset[disabled] .notification_widget.danger.focus { | |
background-color: #d9534f; | |
border-color: #d43f3a; | |
} | |
.notification_widget.danger .badge { | |
color: #d9534f; | |
background-color: #fff; | |
} | |
div#pager { | |
background-color: #fff; | |
font-size: 14px; | |
line-height: 20px; | |
overflow: hidden; | |
display: none; | |
position: fixed; | |
bottom: 0px; | |
width: 100%; | |
max-height: 50%; | |
padding-top: 8px; | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
/* Display over codemirror */ | |
z-index: 100; | |
/* Hack which prevents jquery ui resizable from changing top. */ | |
top: auto !important; | |
} | |
div#pager pre { | |
line-height: 1.21429em; | |
color: #000; | |
background-color: #f7f7f7; | |
padding: 0.4em; | |
} | |
div#pager #pager-button-area { | |
position: absolute; | |
top: 8px; | |
right: 20px; | |
} | |
div#pager #pager-contents { | |
position: relative; | |
overflow: auto; | |
width: 100%; | |
height: 100%; | |
} | |
div#pager #pager-contents #pager-container { | |
position: relative; | |
padding: 15px 0px; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
} | |
div#pager .ui-resizable-handle { | |
top: 0px; | |
height: 8px; | |
background: #f7f7f7; | |
border-top: 1px solid #cfcfcf; | |
border-bottom: 1px solid #cfcfcf; | |
/* This injects handle bars (a short, wide = symbol) for | |
the resize handle. */ | |
} | |
div#pager .ui-resizable-handle::after { | |
content: ''; | |
top: 2px; | |
left: 50%; | |
height: 3px; | |
width: 30px; | |
margin-left: -15px; | |
position: absolute; | |
border-top: 1px solid #cfcfcf; | |
} | |
.quickhelp { | |
/* Old browsers */ | |
display: -webkit-box; | |
-webkit-box-orient: horizontal; | |
-webkit-box-align: stretch; | |
display: -moz-box; | |
-moz-box-orient: horizontal; | |
-moz-box-align: stretch; | |
display: box; | |
box-orient: horizontal; | |
box-align: stretch; | |
/* Modern browsers */ | |
display: flex; | |
flex-direction: row; | |
align-items: stretch; | |
line-height: 1.8em; | |
} | |
.shortcut_key { | |
display: inline-block; | |
width: 20ex; | |
text-align: right; | |
font-family: monospace; | |
} | |
.shortcut_descr { | |
display: inline-block; | |
/* Old browsers */ | |
-webkit-box-flex: 1; | |
-moz-box-flex: 1; | |
box-flex: 1; | |
/* Modern browsers */ | |
flex: 1; | |
} | |
span.save_widget { | |
margin-top: 6px; | |
} | |
span.save_widget span.filename { | |
height: 1em; | |
line-height: 1em; | |
padding: 3px; | |
margin-left: 16px; | |
border: none; | |
font-size: 146.5%; | |
border-radius: 2px; | |
} | |
span.save_widget span.filename:hover { | |
background-color: #e6e6e6; | |
} | |
span.checkpoint_status, | |
span.autosave_status { | |
font-size: small; | |
} | |
@media (max-width: 767px) { | |
span.save_widget { | |
font-size: small; | |
} | |
span.checkpoint_status, | |
span.autosave_status { | |
display: none; | |
} | |
} | |
@media (min-width: 768px) and (max-width: 991px) { | |
span.checkpoint_status { | |
display: none; | |
} | |
span.autosave_status { | |
font-size: x-small; | |
} | |
} | |
.toolbar { | |
padding: 0px; | |
margin-left: -5px; | |
margin-top: 2px; | |
margin-bottom: 5px; | |
box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
} | |
.toolbar select, | |
.toolbar label { | |
width: auto; | |
vertical-align: middle; | |
margin-right: 2px; | |
margin-bottom: 0px; | |
display: inline; | |
font-size: 92%; | |
margin-left: 0.3em; | |
margin-right: 0.3em; | |
padding: 0px; | |
padding-top: 3px; | |
} | |
.toolbar .btn { | |
padding: 2px 8px; | |
} | |
.toolbar .btn-group { | |
margin-top: 0px; | |
margin-left: 5px; | |
} | |
#maintoolbar { | |
margin-bottom: -3px; | |
margin-top: -8px; | |
border: 0px; | |
min-height: 27px; | |
margin-left: 0px; | |
padding-top: 11px; | |
padding-bottom: 3px; | |
} | |
#maintoolbar .navbar-text { | |
float: none; | |
vertical-align: middle; | |
text-align: right; | |
margin-left: 5px; | |
margin-right: 0px; | |
margin-top: 0px; | |
} | |
.select-xs { | |
height: 24px; | |
} | |
.pulse, | |
.dropdown-menu > li > a.pulse, | |
li.pulse > a.dropdown-toggle, | |
li.pulse.open > a.dropdown-toggle { | |
background-color: #F37626; | |
color: white; | |
} | |
/** | |
* Primary styles | |
* | |
* Author: Jupyter Development Team | |
*/ | |
/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot | |
* of chance of beeing generated from the ../less/[samename].less file, you can | |
* try to get back the less file by reverting somme commit in history | |
**/ | |
/* | |
* We'll try to get something pretty, so we | |
* have some strange css to have the scroll bar on | |
* the left with fix button on the top right of the tooltip | |
*/ | |
@-moz-keyframes fadeOut { | |
from { | |
opacity: 1; | |
} | |
to { | |
opacity: 0; | |
} | |
} | |
@-webkit-keyframes fadeOut { | |
from { | |
opacity: 1; | |
} | |
to { | |
opacity: 0; | |
} | |
} | |
@-moz-keyframes fadeIn { | |
from { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
@-webkit-keyframes fadeIn { | |
from { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
/*properties of tooltip after "expand"*/ | |
.bigtooltip { | |
overflow: auto; | |
height: 200px; | |
-webkit-transition-property: height; | |
-webkit-transition-duration: 500ms; | |
-moz-transition-property: height; | |
-moz-transition-duration: 500ms; | |
transition-property: height; | |
transition-duration: 500ms; | |
} | |
/*properties of tooltip before "expand"*/ | |
.smalltooltip { | |
-webkit-transition-property: height; | |
-webkit-transition-duration: 500ms; | |
-moz-transition-property: height; | |
-moz-transition-duration: 500ms; | |
transition-property: height; | |
transition-duration: 500ms; | |
text-overflow: ellipsis; | |
overflow: hidden; | |
height: 80px; | |
} | |
.tooltipbuttons { | |
position: absolute; | |
padding-right: 15px; | |
top: 0px; | |
right: 0px; | |
} | |
.tooltiptext { | |
/*avoid the button to overlap on some docstring*/ | |
padding-right: 30px; | |
} | |
.ipython_tooltip { | |
max-width: 700px; | |
/*fade-in animation when inserted*/ | |
-webkit-animation: fadeOut 400ms; | |
-moz-animation: fadeOut 400ms; | |
animation: fadeOut 400ms; | |
-webkit-animation: fadeIn 400ms; | |
-moz-animation: fadeIn 400ms; | |
animation: fadeIn 400ms; | |
vertical-align: middle; | |
background-color: #f7f7f7; | |
overflow: visible; | |
border: #ababab 1px solid; | |
outline: none; | |
padding: 3px; | |
margin: 0px; | |
padding-left: 7px; | |
font-family: monospace; | |
min-height: 50px; | |
-moz-box-shadow: 0px 6px 10px -1px #adadad; | |
-webkit-box-shadow: 0px 6px 10px -1px #adadad; | |
box-shadow: 0px 6px 10px -1px #adadad; | |
border-radius: 2px; | |
position: absolute; | |
z-index: 1000; | |
} | |
.ipython_tooltip a { | |
float: right; | |
} | |
.ipython_tooltip .tooltiptext pre { | |
border: 0; | |
border-radius: 0; | |
font-size: 100%; | |
background-color: #f7f7f7; | |
} | |
.pretooltiparrow { | |
left: 0px; | |
margin: 0px; | |
top: -16px; | |
width: 40px; | |
height: 16px; | |
overflow: hidden; | |
position: absolute; | |
} | |
.pretooltiparrow:before { | |
background-color: #f7f7f7; | |
border: 1px #ababab solid; | |
z-index: 11; | |
content: ""; | |
position: absolute; | |
left: 15px; | |
top: 10px; | |
width: 25px; | |
height: 25px; | |
-webkit-transform: rotate(45deg); | |
-moz-transform: rotate(45deg); | |
-ms-transform: rotate(45deg); | |
-o-transform: rotate(45deg); | |
} | |
ul.typeahead-list i { | |
margin-left: -10px; | |
width: 18px; | |
} | |
ul.typeahead-list { | |
max-height: 80vh; | |
overflow: auto; | |
} | |
ul.typeahead-list > li > a { | |
/** Firefox bug **/ | |
/* see https://github.com/jupyter/notebook/issues/559 */ | |
white-space: normal; | |
} | |
.cmd-palette .modal-body { | |
padding: 7px; | |
} | |
.cmd-palette form { | |
background: white; | |
} | |
.cmd-palette input { | |
outline: none; | |
} | |
.no-shortcut { | |
display: none; | |
} | |
.command-shortcut:before { | |
content: "(command)"; | |
padding-right: 3px; | |
color: #777777; | |
} | |
.edit-shortcut:before { | |
content: "(edit)"; | |
padding-right: 3px; | |
color: #777777; | |
} | |
#find-and-replace #replace-preview .match, | |
#find-and-replace #replace-preview .insert { | |
background-color: #BBDEFB; | |
border-color: #90CAF9; | |
border-style: solid; | |
border-width: 1px; | |
border-radius: 0px; | |
} | |
#find-and-replace #replace-preview .replace .match { | |
background-color: #FFCDD2; | |
border-color: #EF9A9A; | |
border-radius: 0px; | |
} | |
#find-and-replace #replace-preview .replace .insert { | |
background-color: #C8E6C9; | |
border-color: #A5D6A7; | |
border-radius: 0px; | |
} | |
#find-and-replace #replace-preview { | |
max-height: 60vh; | |
overflow: auto; | |
} | |
#find-and-replace #replace-preview pre { | |
padding: 5px 10px; | |
} | |
.terminal-app { | |
background: #EEE; | |
} | |
.terminal-app #header { | |
background: #fff; | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2); | |
} | |
.terminal-app .terminal { | |
float: left; | |
font-family: monospace; | |
color: white; | |
background: black; | |
padding: 0.4em; | |
border-radius: 2px; | |
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4); | |
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4); | |
} | |
.terminal-app .terminal, | |
.terminal-app .terminal dummy-screen { | |
line-height: 1em; | |
font-size: 14px; | |
} | |
.terminal-app .terminal-cursor { | |
color: black; | |
background: white; | |
} | |
.terminal-app #terminado-container { | |
margin-top: 20px; | |
} | |
/*# sourceMappingURL=style.min.css.map */ | |
</style> | |
<style type="text/css"> | |
.highlight .hll { background-color: #ffffcc } | |
.highlight { background: #f8f8f8; } | |
.highlight .c { color: #408080; font-style: italic } /* Comment */ | |
.highlight .err { border: 1px solid #FF0000 } /* Error */ | |
.highlight .k { color: #008000; font-weight: bold } /* Keyword */ | |
.highlight .o { color: #666666 } /* Operator */ | |
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */ | |
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */ | |
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */ | |
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ | |
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */ | |
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */ | |
.highlight .gd { color: #A00000 } /* Generic.Deleted */ | |
.highlight .ge { font-style: italic } /* Generic.Emph */ | |
.highlight .gr { color: #FF0000 } /* Generic.Error */ | |
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ | |
.highlight .gi { color: #00A000 } /* Generic.Inserted */ | |
.highlight .go { color: #888888 } /* Generic.Output */ | |
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ | |
.highlight .gs { font-weight: bold } /* Generic.Strong */ | |
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ | |
.highlight .gt { color: #0044DD } /* Generic.Traceback */ | |
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ | |
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ | |
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ | |
.highlight .kp { color: #008000 } /* Keyword.Pseudo */ | |
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ | |
.highlight .kt { color: #B00040 } /* Keyword.Type */ | |
.highlight .m { color: #666666 } /* Literal.Number */ | |
.highlight .s { color: #BA2121 } /* Literal.String */ | |
.highlight .na { color: #7D9029 } /* Name.Attribute */ | |
.highlight .nb { color: #008000 } /* Name.Builtin */ | |
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */ | |
.highlight .no { color: #880000 } /* Name.Constant */ | |
.highlight .nd { color: #AA22FF } /* Name.Decorator */ | |
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */ | |
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ | |
.highlight .nf { color: #0000FF } /* Name.Function */ | |
.highlight .nl { color: #A0A000 } /* Name.Label */ | |
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ | |
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */ | |
.highlight .nv { color: #19177C } /* Name.Variable */ | |
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ | |
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ | |
.highlight .mb { color: #666666 } /* Literal.Number.Bin */ | |
.highlight .mf { color: #666666 } /* Literal.Number.Float */ | |
.highlight .mh { color: #666666 } /* Literal.Number.Hex */ | |
.highlight .mi { color: #666666 } /* Literal.Number.Integer */ | |
.highlight .mo { color: #666666 } /* Literal.Number.Oct */ | |
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */ | |
.highlight .sc { color: #BA2121 } /* Literal.String.Char */ | |
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ | |
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */ | |
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ | |
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */ | |
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ | |
.highlight .sx { color: #008000 } /* Literal.String.Other */ | |
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */ | |
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */ | |
.highlight .ss { color: #19177C } /* Literal.String.Symbol */ | |
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */ | |
.highlight .vc { color: #19177C } /* Name.Variable.Class */ | |
.highlight .vg { color: #19177C } /* Name.Variable.Global */ | |
.highlight .vi { color: #19177C } /* Name.Variable.Instance */ | |
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */ | |
</style> | |
<style type="text/css"> | |
/* Temporary definitions which will become obsolete with Notebook release 5.0 */ | |
.ansi-black-fg { color: #3E424D; } | |
.ansi-black-bg { background-color: #3E424D; } | |
.ansi-black-intense-fg { color: #282C36; } | |
.ansi-black-intense-bg { background-color: #282C36; } | |
.ansi-red-fg { color: #E75C58; } | |
.ansi-red-bg { background-color: #E75C58; } | |
.ansi-red-intense-fg { color: #B22B31; } | |
.ansi-red-intense-bg { background-color: #B22B31; } | |
.ansi-green-fg { color: #00A250; } | |
.ansi-green-bg { background-color: #00A250; } | |
.ansi-green-intense-fg { color: #007427; } | |
.ansi-green-intense-bg { background-color: #007427; } | |
.ansi-yellow-fg { color: #DDB62B; } | |
.ansi-yellow-bg { background-color: #DDB62B; } | |
.ansi-yellow-intense-fg { color: #B27D12; } | |
.ansi-yellow-intense-bg { background-color: #B27D12; } | |
.ansi-blue-fg { color: #208FFB; } | |
.ansi-blue-bg { background-color: #208FFB; } | |
.ansi-blue-intense-fg { color: #0065CA; } | |
.ansi-blue-intense-bg { background-color: #0065CA; } | |
.ansi-magenta-fg { color: #D160C4; } | |
.ansi-magenta-bg { background-color: #D160C4; } | |
.ansi-magenta-intense-fg { color: #A03196; } | |
.ansi-magenta-intense-bg { background-color: #A03196; } | |
.ansi-cyan-fg { color: #60C6C8; } | |
.ansi-cyan-bg { background-color: #60C6C8; } | |
.ansi-cyan-intense-fg { color: #258F8F; } | |
.ansi-cyan-intense-bg { background-color: #258F8F; } | |
.ansi-white-fg { color: #C5C1B4; } | |
.ansi-white-bg { background-color: #C5C1B4; } | |
.ansi-white-intense-fg { color: #A1A6B2; } | |
.ansi-white-intense-bg { background-color: #A1A6B2; } | |
.ansi-bold { font-weight: bold; } | |
</style> | |
<style type="text/css"> | |
/*/*Josefin Sans Theme*/*/ | |
/*@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);*/ | |
/*div.text_cell_render {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 16px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 400;*/ | |
/* line-height: 18.5714302062988px;*/ | |
/*/* font-size: 140%;*/*/ | |
/* max-width: 700px;*/ | |
/*}*/ | |
/*div.text_cell_render h1 {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 24px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 500;*/ | |
/* line-height: 26.3999996185303px;*/ | |
/*}*/ | |
/*div.text_cell_render h2 {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 20px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 500;*/ | |
/* line-height: 15.3999996185303px;*/ | |
/*}*/ | |
/*div.text_cell_render h3 {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 16px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 800;*/ | |
/* line-height: 15.3999996185303px;*/ | |
/*}*/ | |
/*div.text_cell_render p {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 16px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 400;*/ | |
/* line-height: 20px;*/ | |
/*}*/ | |
/*div.text_cell_render blockquote {*/ | |
/* font-family: 'Josefin Sans';*/ | |
/* font-size: 16px;*/ | |
/* font-style: normal;*/ | |
/* font-variant: normal;*/ | |
/* font-weight: 400;*/ | |
/* line-height: 30px;*/ | |
/*}*/ | |
@font-face { | |
font-family: "Computer Modern"; | |
src: url('http://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf'); | |
} | |
/*@import url(https://mirrors.ctan.org/fonts/cm-unicode/fonts/otf/cmunss.otf);*/ | |
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans); | |
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro); | |
div.text_cell_render { | |
font-family: 'Josefin Sans'; | |
color: #3B3B3B; | |
font-size: 112%; | |
max-width: 700px; | |
} | |
div.text_cell_render h1 { | |
font-family: 'Josefin Sans'; | |
display: block; | |
/* font-size: 180%; /*20pt;*/*/ | |
font-weight: 500; | |
color: #3B3B3B; | |
} | |
div.text_cell_render h2 { | |
font-family: 'Josefin Sans'; | |
/* font-size: 16pt;*/ | |
display: block; | |
font-weight: 500; | |
color: #3B3B3B; | |
} | |
div.text_cell_render h3 { | |
font-family: 'Josefin Sans'; | |
/* font-size: 13pt;*/ | |
font-weight: 800; | |
color: #3B3B3B; | |
} | |
div.text_cell_render h5 { | |
font-family: 'Josefin Sans'; | |
font-weight: 300; | |
/* font-size: 1.2; /*12pt;*/*/ | |
color: #4057A1; | |
font-style: italic; | |
display: block; | |
} | |
div.output_subarea.output_text{ | |
font-size: 80%; | |
} | |
table.dataframe{ | |
font-size: 85%; | |
line-height: 12pt; | |
} | |
div.CodeMirror { | |
font-family: "Source Code Pro", source-code-pro, Consolas, monospace !important; | |
font-size: 90%; | |
} | |
span.cm-header { | |
font-family: "Source Code Pro", source-code-pro, Consolas, monospace !important; | |
font-size: 100%; | |
color: #4057A1; | |
} | |
.rise-enabled .text_cell_render{ | |
max-width: 90%; | |
font-size: 60%; | |
padding-left: 10%; | |
} | |
.rise-enabled .unrendered{ | |
font-size: 80%!important; | |
} | |
.rise-enabled .input{ | |
font-size: 70%; | |
} | |
.rise-enabled .output{ | |
font-size: 70%; | |
} | |
</style> | |
<style type="text/css"> | |
/* Overrides of notebook CSS for static HTML export */ | |
body { | |
overflow: visible; | |
padding: 8px; | |
} | |
div#notebook { | |
overflow: visible; | |
border-top: none; | |
} | |
@media print { | |
div.cell { | |
display: block; | |
page-break-inside: avoid; | |
} | |
div.output_wrapper { | |
display: block; | |
page-break-inside: avoid; | |
} | |
div.output { | |
display: block; | |
page-break-inside: avoid; | |
} | |
} | |
</style> | |
<!-- Custom stylesheet, it must be in the same directory as the html file --> | |
<link rel="stylesheet" href="custom.css"> | |
<!-- Loading mathjax macro --> | |
<!-- Load mathjax --> | |
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script> | |
<!-- MathJax configuration --> | |
<script type="text/x-mathjax-config"> | |
MathJax.Hub.Config({ | |
tex2jax: { | |
inlineMath: [ ['$','$'], ["\\(","\\)"] ], | |
displayMath: [ ['$$','$$'], ["\\[","\\]"] ], | |
processEscapes: true, | |
processEnvironments: true | |
}, | |
// Center justify equations in code and markdown cells. Elsewhere | |
// we use CSS to left justify single line equations in code cells. | |
displayAlign: 'center', | |
"HTML-CSS": { | |
styles: {'.MathJax_Display': {"margin": 0}}, | |
linebreaks: { automatic: true } | |
} | |
}); | |
</script> | |
<!-- End of mathjax configuration --></head> | |
<body> | |
<div tabindex="-1" id="notebook" class="border-box-sizing"> | |
<div class="container" id="notebook-container"> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [1]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="kn">import</span> <span class="nn">numpy</span> <span class="kn">as</span> <span class="nn">np</span> | |
<span class="kn">from</span> <span class="nn">six.moves</span> <span class="kn">import</span> <span class="nb">zip</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [2]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="kn">from</span> <span class="nn">bokeh.plotting</span> <span class="kn">import</span> <span class="n">figure</span><span class="p">,</span> <span class="n">show</span><span class="p">,</span> <span class="n">output_notebook</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [3]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="n">N</span> <span class="o">=</span> <span class="mi">4000</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [4]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="n">x</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">(</span><span class="n">size</span><span class="o">=</span><span class="n">N</span><span class="p">)</span> <span class="o">*</span> <span class="mi">100</span> | |
<span class="n">y</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">(</span><span class="n">size</span><span class="o">=</span><span class="n">N</span><span class="p">)</span> <span class="o">*</span> <span class="mi">100</span> | |
<span class="n">radii</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">(</span><span class="n">size</span><span class="o">=</span><span class="n">N</span><span class="p">)</span> <span class="o">*</span> <span class="mf">1.5</span> | |
<span class="n">colors</span> <span class="o">=</span> <span class="p">[</span><span class="s2">"#</span><span class="si">%02x%02x%02x</span><span class="s2">"</span> <span class="o">%</span> <span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">r</span><span class="p">),</span> <span class="nb">int</span><span class="p">(</span><span class="n">g</span><span class="p">),</span> <span class="mi">150</span><span class="p">)</span> <span class="k">for</span> <span class="n">r</span><span class="p">,</span> <span class="n">g</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="mi">50</span><span class="o">+</span><span class="mi">2</span><span class="o">*</span><span class="n">x</span><span class="p">,</span> <span class="mi">30</span><span class="o">+</span><span class="mi">2</span><span class="o">*</span><span class="n">y</span><span class="p">)]</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [5]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="n">output_notebook</span><span class="p">()</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
<div class="output_wrapper"> | |
<div class="output"> | |
<div class="output_area"><div class="prompt"></div> | |
<div class="output_html rendered_html output_subarea "> | |
<div class="bk-root"> | |
<a href="http://bokeh.pydata.org" target="_blank" class="bk-logo bk-logo-small bk-logo-notebook"></a> | |
<span id="bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55">Loading BokehJS ...</span> | |
</div> | |
</div> | |
</div> | |
<div class="output_area"><div class="prompt"></div> | |
<div id="8720b122-c981-478f-95c1-16df9bed4541"></div> | |
<div class="output_subarea output_javascript "> | |
<script type="text/javascript"> | |
var element = $('#8720b122-c981-478f-95c1-16df9bed4541'); | |
(function(global) { | |
function now() { | |
return new Date(); | |
} | |
var force = "1"; | |
if (typeof (window._bokeh_onload_callbacks) === "undefined" || force !== "") { | |
window._bokeh_onload_callbacks = []; | |
window._bokeh_is_loading = undefined; | |
} | |
if (typeof (window._bokeh_timeout) === "undefined" || force !== "") { | |
window._bokeh_timeout = Date.now() + 5000; | |
window._bokeh_failed_load = false; | |
} | |
var NB_LOAD_WARNING = {'data': {'text/html': | |
"<div style='background-color: #fdd'>\n"+ | |
"<p>\n"+ | |
"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+ | |
"may be due to a slow or bad network connection. Possible fixes:\n"+ | |
"</p>\n"+ | |
"<ul>\n"+ | |
"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\n"+ | |
"<li>use INLINE resources instead, as so:</li>\n"+ | |
"</ul>\n"+ | |
"<code>\n"+ | |
"from bokeh.resources import INLINE\n"+ | |
"output_notebook(resources=INLINE)\n"+ | |
"</code>\n"+ | |
"</div>"}}; | |
function display_loaded() { | |
if (window.Bokeh !== undefined) { | |
Bokeh.$("#bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55").text("BokehJS successfully loaded."); | |
} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(display_loaded, 100) | |
} | |
} | |
function run_callbacks() { | |
window._bokeh_onload_callbacks.forEach(function(callback) { callback() }); | |
delete window._bokeh_onload_callbacks | |
console.info("Bokeh: all callbacks have finished"); | |
} | |
function load_libs(js_urls, callback) { | |
window._bokeh_onload_callbacks.push(callback); | |
if (window._bokeh_is_loading > 0) { | |
console.log("Bokeh: BokehJS is being loaded, scheduling callback at", now()); | |
return null; | |
} | |
if (js_urls == null || js_urls.length === 0) { | |
run_callbacks(); | |
return null; | |
} | |
console.log("Bokeh: BokehJS not loaded, scheduling load and callback at", now()); | |
window._bokeh_is_loading = js_urls.length; | |
for (var i = 0; i < js_urls.length; i++) { | |
var url = js_urls[i]; | |
var s = document.createElement('script'); | |
s.src = url; | |
s.async = false; | |
s.onreadystatechange = s.onload = function() { | |
window._bokeh_is_loading--; | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: all BokehJS libraries loaded"); | |
run_callbacks() | |
} | |
}; | |
s.onerror = function() { | |
console.warn("failed to load library " + url); | |
}; | |
console.log("Bokeh: injecting script tag for BokehJS library: ", url); | |
document.getElementsByTagName("head")[0].appendChild(s); | |
} | |
};var element = document.getElementById("bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55"); | |
if (element == null) { | |
console.log("Bokeh: ERROR: autoload.js configured with elementid 'bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55' but no matching script tag was found. ") | |
return false; | |
} | |
var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-compiler-0.12.2.min.js']; | |
var inline_js = [ | |
function(Bokeh) { | |
Bokeh.set_log_level("info"); | |
}, | |
function(Bokeh) { | |
Bokeh.$("#bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55").text("BokehJS is loading..."); | |
}, | |
function(Bokeh) { | |
console.log("Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css"); | |
Bokeh.embed.inject_css("https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css"); | |
console.log("Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css"); | |
Bokeh.embed.inject_css("https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css"); | |
} | |
]; | |
function run_inline_js() { | |
if ((window.Bokeh !== undefined) || (force === "1")) { | |
for (var i = 0; i < inline_js.length; i++) { | |
inline_js[i](window.Bokeh); | |
}if (force === "1") { | |
display_loaded(); | |
}} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(run_inline_js, 100); | |
} else if (!window._bokeh_failed_load) { | |
console.log("Bokeh: BokehJS failed to load within specified timeout."); | |
window._bokeh_failed_load = true; | |
} else if (!force) { | |
var cell = $("#bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55").parents('.cell').data().cell; | |
cell.output_area.append_execute_result(NB_LOAD_WARNING) | |
} | |
} | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: BokehJS loaded, going straight to plotting"); | |
run_inline_js(); | |
} else { | |
load_libs(js_urls, function() { | |
console.log("Bokeh: BokehJS plotting callback run at", now()); | |
run_inline_js(); | |
}); | |
} | |
}(this)); | |
</script> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [6]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span><span class="n">TOOLS</span><span class="o">=</span><span class="s2">"hover,crosshair,pan,wheel_zoom,box_zoom,reset,tap,save,box_select,poly_select,lasso_select"</span> | |
<span class="n">p</span> <span class="o">=</span> <span class="n">figure</span><span class="p">(</span><span class="n">tools</span><span class="o">=</span><span class="n">TOOLS</span><span class="p">)</span> | |
<span class="n">p</span><span class="o">.</span><span class="n">scatter</span><span class="p">(</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span> <span class="n">radius</span><span class="o">=</span><span class="n">radii</span><span class="p">,</span> <span class="n">fill_color</span><span class="o">=</span><span class="n">colors</span><span class="p">,</span> <span class="n">fill_alpha</span><span class="o">=</span><span class="mf">0.6</span><span class="p">,</span> <span class="n">line_color</span><span class="o">=</span><span class="bp">None</span><span class="p">)</span> | |
<span class="n">show</span><span class="p">(</span><span class="n">p</span><span class="p">)</span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
<div class="output_wrapper"> | |
<div class="output"> | |
<div class="output_area"><div class="prompt"></div> | |
<div class="output_html rendered_html output_subarea "> | |
<div class="bk-root"> | |
<div class="plotdiv" id="e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"></div> | |
</div> | |
<script type="text/javascript"> | |
(function(global) { | |
function now() { | |
return new Date(); | |
} | |
var force = ""; | |
if (typeof (window._bokeh_onload_callbacks) === "undefined" || force !== "") { | |
window._bokeh_onload_callbacks = []; | |
window._bokeh_is_loading = undefined; | |
} | |
if (typeof (window._bokeh_timeout) === "undefined" || force !== "") { | |
window._bokeh_timeout = Date.now() + 0; | |
window._bokeh_failed_load = false; | |
} | |
var NB_LOAD_WARNING = {'data': {'text/html': | |
"<div style='background-color: #fdd'>\n"+ | |
"<p>\n"+ | |
"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+ | |
"may be due to a slow or bad network connection. Possible fixes:\n"+ | |
"</p>\n"+ | |
"<ul>\n"+ | |
"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\n"+ | |
"<li>use INLINE resources instead, as so:</li>\n"+ | |
"</ul>\n"+ | |
"<code>\n"+ | |
"from bokeh.resources import INLINE\n"+ | |
"output_notebook(resources=INLINE)\n"+ | |
"</code>\n"+ | |
"</div>"}}; | |
function display_loaded() { | |
if (window.Bokeh !== undefined) { | |
Bokeh.$("#e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c").text("BokehJS successfully loaded."); | |
} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(display_loaded, 100) | |
} | |
} | |
function run_callbacks() { | |
window._bokeh_onload_callbacks.forEach(function(callback) { callback() }); | |
delete window._bokeh_onload_callbacks | |
console.info("Bokeh: all callbacks have finished"); | |
} | |
function load_libs(js_urls, callback) { | |
window._bokeh_onload_callbacks.push(callback); | |
if (window._bokeh_is_loading > 0) { | |
console.log("Bokeh: BokehJS is being loaded, scheduling callback at", now()); | |
return null; | |
} | |
if (js_urls == null || js_urls.length === 0) { | |
run_callbacks(); | |
return null; | |
} | |
console.log("Bokeh: BokehJS not loaded, scheduling load and callback at", now()); | |
window._bokeh_is_loading = js_urls.length; | |
for (var i = 0; i < js_urls.length; i++) { | |
var url = js_urls[i]; | |
var s = document.createElement('script'); | |
s.src = url; | |
s.async = false; | |
s.onreadystatechange = s.onload = function() { | |
window._bokeh_is_loading--; | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: all BokehJS libraries loaded"); | |
run_callbacks() | |
} | |
}; | |
s.onerror = function() { | |
console.warn("failed to load library " + url); | |
}; | |
console.log("Bokeh: injecting script tag for BokehJS library: ", url); | |
document.getElementsByTagName("head")[0].appendChild(s); | |
} | |
};var element = document.getElementById("e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"); | |
if (element == null) { | |
console.log("Bokeh: ERROR: autoload.js configured with elementid 'e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c' but no matching script tag was found. ") | |
return false; | |
} | |
var js_urls = []; | |
var inline_js = [ | |
function(Bokeh) { | |
Bokeh.$(function() { | |
var docs_json = {"abac24f5-a8ff-4814-853f-6b0d1ca1da97":{"roots":{"references":[{"attributes":{},"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"},{"attributes":{},"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9004d723-65b0-49ad-a8be-8a3d029fe8b1","type":"HoverTool"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"6a2fa843-e0f0-4297-b693-a1b3bf015112","type":"WheelZoomTool"},{"attributes":{"formatter":{"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"}},"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"ed92348a-eb48-4310-a92f-eda788e37773","type":"TapTool"},{"attributes":{"fill_alpha":{"value":0.6},"fill_color":{"field":"fill_color"},"line_color":{"value":null},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"222e0e43-a03f-4e43-96f5-ce0b39a9fab0","type":"Circle"},{"attributes":{"callback":null,"overlay":{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"renderers":[{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}]},"id":"4e6a54a1-0f6a-4fd6-b648-5a7616a2261d","type":"BoxSelectTool"},{"attributes":{"below":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"}],"left":[{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"}],"renderers":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"},{"id":"5d0bb551-a7d5-4369-920c-c9a6804ef172","type":"Grid"},{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"id":"2cb755c0-32ae-4af1-8038-5acaf48b8322","type":"Grid"},{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},{"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}],"title":{"id":"286c6214-008f-410c-9280-5b3ef7cca970","type":"Title"},"tool_events":{"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},"toolbar":{"id":"fd8e3f33-c745-43d9-8d2c-e820c1600c2c","type":"Toolbar"},"x_range":{"id":"c0977ced-816d-43a3-9d91-146ce0fa8b71","type":"DataRange1d"},"y_range":{"id":"801a4cbe-dc36-4846-9f46-197c6ab2cb29","type":"DataRange1d"}},"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6947d7ee-b182-48e3-82b5-d62587267dac","type":"Circle"},{"attributes":{},"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},{"attributes":{"overlay":{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9a21dc34-11ce-4dba-9c88-652c166dd66d","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"cd9dbbc4-377e-4d33-9891-9e2d8d415fd3","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["radius","y","x","fill_color"],"data":{"fill_color":["#994a96","#912c96","#d16396","#6ebc96","#766296","#63da96","#7d3d96","#b58496","#a84396","#af2996","#f32696","#433a96","#6c8296","#eeb096","#756096","#ca7c96","#b58696","#7aa396","#b9bd96","#ad9e96","#b53196","#5d2496","#bbb596","#343a96","#837b96","#872896","#f9d196","#33c496","#c3cd96","#a2e496","#a39596","#3c3696","#c9a196","#aed496","#688a96","#a02d96","#3b5c96","#97a096","#756796","#f3dd96","#7aa896","#e85096","#89c696","#bcb196","#5a4e96","#457b96","#72a596","#3b6f96","#755996","#35c496","#cce096","#e0bf96","#a56196","#c45196","#69ae96","#a58496","#6a5796","#e7b496","#7c3596","#47ae96","#aadf96","#e0b396","#9d5e96","#336996","#d74696","#4f8796","#9cd096","#d3c396","#413396","#869296","#4b3b96","#332796","#932296","#6e8196","#852896","#788c96","#8abf96","#f85796","#acda96","#777496","#956d96","#3a2696","#cbb496","#f3be96","#deac96","#737896","#99a096","#7e5496","#72e296","#392f96","#da9b96","#92d796","#a04b96","#748c96","#752196","#853896","#af9596","#cc6f96","#c54496","#35a196","#dc2d96","#7d4196","#89a696","#355896","#924396","#ec6396","#989f96","#4e8996","#e7a096","#c3a496","#bbc096","#4bde96","#6a8d96","#f95496","#6c8596","#5fde96","#eba096","#855496","#836c96","#579e96","#425696","#dc8696","#32e396","#8ee196","#f7b296","#73b196","#c4b496","#ee6e96","#8dd696","#a35996","#73ce96","#d77e96","#92c596","#aebe96","#7ec296","#cd2c96","#7b9f96","#bc4196","#e86996","#696d96","#435196","#b1a996","#a4bf96","#9a2e96","#883896","#d7a396","#b55496","#63b496","#5e4c96","#65a496","#bd9b96","#8e6396","#b23396","#a08996","#6f9e96","#707796","#e99496","#856196","#ab6c96","#586596","#cabf96","#378d96","#ee8296","#942896","#34d696","#be2f96","#c35696","#ccdb96","#51a396","#c08296","#a8a896","#828c96","#e14696","#d7b096","#5c8596","#56cb96","#4a9296","#5d9d96","#3c3a96","#3cc796","#e53896","#429896","#6c7096","#b5e296","#589096","#c34196","#538496","#bfdb96","#ad7c96","#ae2096","#ae2d96","#5f9696","#8a5b96","#a56596","#3f5396","#615d96","#84bc96","#4dce96","#9ad396","#cbd896","#d47096","#5a5596","#32c396","#e35196","#8d7896","#f45496","#913e96","#f95796","#b2b296","#b2a296","#75d696","#c0c796","#974b96","#4bda96","#469c96","#656296","#4a4f96","#7f8b96","#a03f96","#6caa96","#49a596","#68c596","#d74f96","#bf6f96","#66cd96","#81a696","#86cb96","#883296","#a38896","#e96a96","#712596","#ef2a96","#cc4996","#c49896","#487496","#b74096","#4d4b96","#498a96","#3f5b96","#44c896","#3c8396","#3da596","#66dc96","#49ca96","#cdb496","#9ebd96","#512d96","#a0dc96","#c12796","#5e7296","#916d96","#7d7996","#543696","#c9b796","#4d3896","#575196","#538c96","#522496","#917696","#942c96","#cf5396","#518c96","#a6b496","#f6bb96","#58db96","#556b96","#a4ae96","#499996","#a63396","#c82b96","#c53c96","#877b96","#65b196","#639896","#37a696","#819696","#b2aa96","#7a6196","#81bf96","#4e4596","#dd9196","#995496","#6ba096","#807e96","#c54896","#d6cb96","#768a96","#355696","#b2df96","#328b96","#932d96","#472196","#655a96","#4d8396","#6a2896","#336396","#5c4396","#9e4d96","#c12d96","#917196","#322a96","#544696","#527796","#98ab96","#5b4496","#a64596","#6b8596","#a25396","#863b96","#5fba96","#da7d96","#e34d96","#455e96","#e83c96","#8a3c96","#3a9596","#a94596","#765996","#3fd296","#403396","#a24196","#865b96","#cf2d96","#7f6796","#cca596","#948096","#cb3496","#922d96","#e69396","#e56f96","#a04796","#747996","#f9ac96","#bbca96","#ea7496","#9f7396","#78ad96","#d5c496","#52a896","#997696","#e63b96","#517296","#afc696","#7dcb96","#402396","#559f96","#bd7996","#f67696","#714796","#d04796","#d82696","#90a096","#9e4896","#f22196","#587f96","#f1df96","#674a96","#339996","#784f96","#5b9096","#617e96","#f0bc96","#b32196","#676c96","#abc396","#e94296","#755796","#5e5096","#5caf96","#b44a96","#855496","#a4d096","#a44796","#7cab96","#612596","#3b7296","#e2a496","#8dc996","#de5a96","#4a4496","#712a96","#782c96","#859296","#e93f96","#6f2496","#b8c996","#b27496","#edda96","#97df96","#33c096","#554096","#afc096","#ad7596","#b2de96","#7dae96","#684196","#595b96","#632c96","#b1c396","#8a5596","#ca1e96","#6e3d96","#32b496","#b08d96","#377b96","#578396","#c56f96","#90af96","#a38c96","#5c5f96","#468896","#b07a96","#7bbe96","#f35d96","#66d096","#403e96","#f03496","#75cf96","#75d796","#eb7096","#c57596","#c4e496","#e26096","#e0a196","#381e96","#6e3696","#433296","#66c496","#e69996","#b31f96","#512296","#46b296","#537096","#ae8996","#c4bb96","#6a8296","#f0a996","#b57496","#f48196","#39ae96","#be5a96","#5c8796","#d8ae96","#ac7d96","#93c196","#d97696","#cb8f96","#e98b96","#465896","#bb9e96","#c9d596","#f35e96","#912c96","#f53c96","#c42196","#c52796","#b7c596","#837b96","#6bd096","#c1d696","#8b5f96","#837496","#915b96","#3bc896","#a49996","#427e96","#d4e196","#389796","#817b96","#c99496","#ceaa96","#f3df96","#d12596","#784f96","#a24096","#903b96","#338c96","#a4db96","#481e96","#5f5696","#34b596","#c94f96","#773e96","#db3396","#63a496","#f5b496","#b8b496","#8ec096","#d8db96","#cb8596","#35a696","#b75d96","#694896","#ca3096","#906996","#47cc96","#ab2496","#e85496","#6a7d96","#6c5d96","#c63c96","#d2c496","#89e196","#74b996","#4a6596","#f05396","#a45196","#57ca96","#72ca96","#ad7396","#839796","#419396","#3e6896","#6a3296","#78de96","#4e6996","#f18d96","#cd4896","#803e96","#abbd96","#f14296","#dadb96","#909e96","#904e96","#6da896","#b1b496","#7abf96","#6f5b96","#597696","#373b96","#5dbf96","#e04196","#5f4196","#562696","#467d96","#a45996","#7d6596","#cd2a96","#6c2296","#af9b96","#544696","#5fdb96","#c66f96","#afe396","#8d2f96","#6f7d96","#8a5496","#3e6a96","#a92696","#63c896","#cb7996","#e1c596","#5fa096","#98e296","#7b8b96","#36aa96","#4d9196","#78a496","#be9396","#92cc96","#aa2e96","#a94696","#c9b496","#d4e496","#479496","#444696","#56c996","#c46896","#5e4496","#a44c96","#40c096","#bc9a96","#eeca96","#827d96","#935e96","#3f3b96","#51e296","#8d5e96","#433c96","#adaa96","#b2c696","#737696","#d55596","#dc5896","#e5b996","#8f4696","#f34e96","#5a8396","#9ed696","#f58b96","#385a96","#a89a96","#bd6f96","#8a2596","#7ebe96","#5d6c96","#9ac096","#9c4b96","#dc6296","#efe496","#889596","#4a2896","#f1bf96","#9e5096","#3e2296","#d48f96","#ba6596","#8f9396","#5fc296","#aaad96","#92d396","#b7d296","#563696","#a55796","#bb5896","#632696","#33d796","#49cd96","#549196","#d88796","#c77096","#3f3696","#41a296","#ddc996","#7cbc96","#5d9c96","#83c596","#797e96","#b59196","#3c5d96","#a14f96","#692396","#b69096","#8fc896","#e1bc96","#f58d96","#c88896","#f3d396","#494d96","#928296","#64c096","#4f5c96","#b1d296","#872f96","#35a796","#c52d96","#71ae96","#e97f96","#7c4696","#ca7f96","#cf2496","#8b6996","#f2c096","#3da796","#ebc296","#897096","#d1ce96","#618596","#733e96","#812c96","#892396","#5aae96","#d29896","#e97996","#8a6f96","#7d4396","#4a4596","#b42196","#926b96","#966596","#c58596","#6fcf96","#6b3196","#7f6696","#468896","#43da96","#865596","#e61e96","#622996","#3f3796","#634696","#a15396","#66d696","#e69a96","#ccaf96","#9f7496","#6aa296","#e14e96","#ef9396","#859596","#8b9096","#72d696","#566b96","#d09996","#7d8c96","#7dc396","#e43696","#55ac96","#8c7d96","#8f4b96","#b16d96","#acdc96","#f17b96","#b39d96","#eedb96","#65ba96","#61a496","#ce4696","#8bd896","#916d96","#dabd96","#66a696","#6c7596","#7c9096","#85a896","#b26a96","#e74f96","#759496","#65a096","#3fbe96","#a79996","#cec396","#a6c296","#aa7f96","#802296","#d59896","#924396","#793496","#6d7d96","#a98196","#cea596","#ef5b96","#432096","#32bd96","#545b96","#b55496","#db8096","#bc5e96","#dd2596","#498996","#df9b96","#ec8396","#322596","#4abe96","#65d896","#9e9196","#46ae96","#609996","#b6c796","#f13396","#a97f96","#da6a96","#7b3896","#609d96","#d75796","#d4d596","#79bd96","#e78d96","#50ac96","#508a96","#bbd296","#f75896","#695796","#96e496","#f6af96","#e88096","#5fc196","#e4cc96","#eebc96","#e49296","#d7b996","#91aa96","#b65496","#c38a96","#d39796","#4bc896","#3fa696","#679696","#bcc996","#9f9496","#859396","#7a5196","#563096","#599596","#679f96","#632796","#a98996","#f64996","#bd5596","#34a496","#dea396","#3d3596","#6f3c96","#789796","#f0b296","#f1a196","#475796","#59a996","#6f6696","#dc8f96","#767f96","#a76096","#a0b096","#8bc596","#a0a596","#86a896","#7cc396","#ec7196","#98b196","#ec8296","#96a296","#677496","#dd8696","#bb8296","#645c96","#4a6d96","#3d3896","#44bc96","#b78e96","#90a596","#61a096","#595396","#b9e596","#4c4e96","#38ac96","#50cd96","#35a796","#ea2596","#c62c96","#c75496","#3b3596","#bc3296","#cf5d96","#6f4796","#915696","#8b4696","#652d96","#c13b96","#41a796","#bbc796","#44c296","#bf5396","#889896","#99c796","#93bc96","#896096","#597a96","#578696","#dc2196","#80a996","#d7d796","#72b196","#794196","#40a796","#694496","#b97a96","#e33a96","#45d896","#71c196","#dfb096","#c9d496","#8e5496","#504296","#50d696","#657796","#ebd696","#467e96","#9a5996","#5a3896","#efce96","#39de96","#718396","#605f96","#a44496","#c78496","#5fa196","#ca1e96","#83a096","#857796","#d0ca96","#a93996","#f28496","#6b8396","#969296","#3c8296","#d56696","#519f96","#9e6c96","#b58a96","#512e96","#644496","#72ae96","#c48396","#60db96","#ba4096","#4d6696","#99de96","#cb9796","#a92596","#f5b896","#663796","#d96896","#997796","#40d696","#759096","#ad5096","#a69796","#aae096","#6fd496","#b14196","#ac5c96","#bd6c96","#365596","#ce7e96","#e87f96","#55c096","#8ec496","#a95996","#9e7496","#765096","#3e6a96","#5a2996","#37a496","#5bc796","#69e396","#65c996","#9d7796","#533c96","#7e5896","#4c4796","#f62a96","#a88e96","#542896","#f2b796","#7ede96","#8d1e96","#cfb696","#e18396","#8d3d96","#d87596","#5e3696","#ca5f96","#856596","#63d596","#6c5196","#76e396","#4e4996","#c16196","#cd5296","#33bc96","#88bd96","#ab6a96","#515196","#6d7796","#d5e096","#614d96","#387896","#8cbf96","#8f1e96","#cf6596","#589d96","#c8da96","#3d9f96","#d4c096","#857296","#cf8f96","#d74496","#b9e396","#e95d96","#8ed196","#f1bd96","#543c96","#613996","#bcd696","#f4dc96","#f47196","#ecc096","#ba9596","#a15996","#7f5096","#3dbb96","#dfdd96","#9d6296","#92e196","#86b396","#349a96","#95cc96","#999296","#908396","#d03e96","#bd4c96","#d39c96","#902596","#66d496","#9bab96","#382396","#b79396","#85db96","#af6896","#d4d696","#5dd896","#864d96","#e88596","#52c996","#5bc296","#3b8f96","#f76396","#b28796","#c93096","#cb4596","#542796","#6ddd96","#5e5896","#a72e96","#5c6c96","#8ad896","#582596","#4ad096","#deac96","#487596","#7a7f96","#e6c396","#f05896","#f59b96","#c9da96","#ccaa96","#95a096","#7eb596","#949a96","#878b96","#479f96","#5ebe96","#54b196","#565696","#f36896","#f6c796","#835e96","#5b3696","#888796","#aaa896","#32e196","#6b7596","#c06196","#ea6896","#3b3196","#be3096","#396696","#3d7896","#addc96","#488896","#d34196","#474b96","#8e9496","#536e96","#408196","#58cd96","#a0ad96","#c92c96","#c54396","#462196","#7a8a96","#e17a96","#b36c96","#e98196","#619e96","#435796","#f16496","#e38896","#739f96","#e18196","#cf5196","#cf7596","#517196","#ac8e96","#b84e96","#d5a096","#d3c596","#6f9496","#a4de96","#67bc96","#4a3a96","#db2d96","#e39196","#7f6696","#e56c96","#9fde96","#695e96","#c01e96","#e12196","#5aab96","#842d96","#bbb596","#f68996","#99b196","#956b96","#c06096","#b15a96","#9c6f96","#d25296","#ca2696","#ef2a96","#b0d096","#7a7596","#5e7396","#95bb96","#d8e496","#8b7a96","#3e1e96","#a6d896","#696296","#948696","#5bd596","#35d096","#eda696","#4f2096","#948f96","#6c8b96","#7a2d96","#6b3296","#c0cf96","#599296","#697d96","#8f5e96","#4bc196","#d07996","#c6c796","#ee6096","#8e9296","#996996","#999e96","#dbda96","#4a6e96","#b1da96","#c1c096","#f48396","#5b4096","#a88e96","#7f9c96","#ce5096","#334696","#7c2d96","#8fc896","#969596","#399c96","#562a96","#c75196","#e65896","#e8e396","#775196","#868a96","#4d2096","#5cba96","#3c2096","#432496","#a75a96","#cb3c96","#e23196","#f14196","#6f6796","#847396","#aadd96","#f87496","#f8b696","#bd3696","#7d4a96","#c4d296","#819796","#487596","#4f8896","#6fba96","#f46396","#ddc396","#a25096","#d6da96","#976596","#bc7496","#f48b96","#4ee296","#b62996","#584396","#656c96","#c16396","#512596","#f9ba96","#8f9c96","#66a196","#4de196","#5fd596","#4ed896","#c65796","#d19896","#516296","#5a3196","#f82296","#d36096","#843d96","#36df96","#cccf96","#a7e496","#d24f96","#6f4396","#7f6496","#c29e96","#627196","#664796","#c38596","#b4c896","#cd8396","#337596","#957796","#6da396","#d9a496","#588696","#33df96","#814696","#a4c596","#a8ca96","#f3cb96","#9a4b96","#a2ba96","#9f6c96","#838596","#a27096","#cc6696","#f0b696","#d2e396","#807f96","#609196","#51b796","#5a9696","#795196","#425296","#878296","#f3d696","#835d96","#434896","#c5b796","#4c5d96","#765296","#4de296","#7a7e96","#549196","#5bb596","#832f96","#712c96","#3c4596","#3ca296","#775496","#c13a96","#5d2596","#9e6096","#846c96","#898b96","#c18096","#c4c496","#b66f96","#6f3b96","#d84f96","#3dc596","#38c396","#f7cd96","#ce5796","#a07c96","#4f3796","#5d3596","#4c3e96","#c1b896","#61de96","#536696","#c27096","#cf7096","#c72196","#544096","#767796","#ecb696","#deb996","#993696","#49d096","#506f96","#3e4496","#8ad596","#acad96","#9a2196","#486996","#634096","#bbe496","#eade96","#f39e96","#548396","#368b96","#ccaa96","#d22796","#609996","#7cc196","#d87e96","#f64b96","#f3c396","#485d96","#8d5396","#ce7996","#41ae96","#36cc96","#f06596","#a35496","#875596","#ad6296","#989996","#d69e96","#7f4696","#40dc96","#e24e96","#477e96","#a7a696","#6ac296","#db6f96","#ed8c96","#71e396","#3e7096","#533796","#e66696","#aa5596","#9cd296","#b89496","#476e96","#9d6996","#bc2696","#52d996","#e46b96","#c9bb96","#936996","#5fc196","#65b496","#427596","#61df96","#e4de96","#f72696","#54e196","#4b4396","#e7be96","#f7a496","#913f96","#684896","#944696","#e9e096","#ac3f96","#35d696","#8f8496","#6d7596","#e17a96","#82b396","#7eca96","#79de96","#c52996","#602e96","#8cb596","#b7d896","#69da96","#444596","#ace496","#698496","#844796","#399d96","#8d9396","#c98f96","#6dd396","#d8c096","#935f96","#c27d96","#d3d596","#715896","#348696","#d48a96","#599596","#583d96","#ee7296","#dfa996","#634196","#f1c896","#5fa596","#b12196","#e45a96","#6f2396","#7bcc96","#609596","#7f2b96","#75bb96","#57b996","#597d96","#ef4d96","#52c996","#dcac96","#4f4796","#898e96","#542a96","#925896","#c28496","#6bc496","#ca9196","#865196","#a83d96","#77e496","#cf5896","#a2cf96","#bd3c96","#ba4596","#398d96","#75cf96","#ee2f96","#ba6d96","#808f96","#552296","#e2cd96","#b55496","#dca396","#eb8f96","#d94e96","#608e96","#f8c796","#a02696","#cedb96","#b72296","#9dcf96","#678496","#5bcf96","#e23d96","#619696","#c12f96","#e4d596","#edcd96","#cfce96","#60cb96","#46c296","#95dc96","#8a7e96","#39bb96","#a67996","#54a996","#492296","#f78696","#66d996","#ce2296","#6cac96","#edc596","#d34b96","#5a6896","#53b896","#949696","#f69d96","#f22c96","#3f2f96","#52d396","#9dcf96","#d04696","#322996","#3d9e96","#7c2196","#677a96","#48b996","#a0a096","#579796","#6e2196","#e68d96","#6fb796","#44c296","#5f7396","#babf96","#82a996","#4a5296","#46be96","#4f5b96","#f8e196","#8c5396","#457796","#749796","#f76496","#d2ad96","#a9df96","#35b996","#c2d696","#484196","#e55796","#f33e96","#cf7796","#c6d096","#8d4096","#818896","#347596","#b43696","#8ed996","#43a796","#bc7296","#6cc196","#6bb796","#9aa996","#cdbc96","#55cb96","#72b996","#944396","#aecc96","#eeb796","#827c96","#e46596","#906d96","#688796","#e6b296","#804296","#ce7596","#ef2396","#c5a096","#417396","#478496","#812196","#bdb196","#f8c696","#6e5896","#7fcf96","#a12196","#b37896","#812b96","#d2c396","#cab496","#a14196","#e68096","#4b2296","#e38096","#bad796","#c64a96","#a8c196","#6bbb96","#be5c96","#d47a96","#bb7596","#4e6a96","#392c96","#eb3096","#c15096","#efba96","#df8e96","#964896","#537796","#b18496","#6a6c96","#72b996","#96d196","#e4de96","#508c96","#582396","#b3a696","#e2dd96","#b0a296","#576496","#f86496","#c2aa96","#4b5496","#5a2096","#93b596","#c96496","#c6b196","#b95596","#354696","#a6c496","#c43196","#f3b496","#b5be96","#448f96","#4d4b96","#f38b96","#a1a496","#96b996","#8d7796","#cbd996","#c4df96","#953296","#c1c696","#cfdd96","#d26c96","#a52796","#d22c96","#374f96","#cc3296","#f5a996","#e83096","#8bd796","#f27196","#7d7f96","#a08e96","#c62296","#4d6e96","#b32b96","#726f96","#907c96","#9b4296","#7c3896","#c59696","#679a96","#c9c096","#cb4696","#c65e96","#db9996","#da8e96","#e7c096","#da6f96","#c78796","#907296","#454896","#58cc96","#b84a96","#712d96","#57a996","#c07696","#957796","#86ba96","#64db96","#754696","#5dd596","#f8b296","#d9d696","#f51e96","#718296","#c4d096","#b47696","#e14a96","#e24a96","#e4d896","#b06696","#a1e496","#789596","#508b96","#e9e496","#d2c496","#b16496","#955496","#64c196","#824896","#c03896","#e4e296","#c85896","#df6496","#ce3596","#324d96","#6b6596","#846996","#737b96","#73cb96","#b17e96","#e02f96","#648896","#da5396","#5a5596","#599f96","#cba896","#c37096","#527496","#e59196","#4b4a96","#d1a096","#ad2196","#73ad96","#35c896","#938296","#7a9896","#c9bd96","#d7d396","#7da196","#776d96","#c04996","#427096","#9a6496","#87b796","#e59796","#dd8196","#64b496","#667696","#5da196","#745996","#a77096","#629296","#dab896","#aba596","#c79796","#f37e96","#d31e96","#dd7396","#564396","#33d796","#f2d396","#32c296","#9c4296","#90c996","#bede96","#8f3096","#46a596","#734c96","#c22d96","#b27396","#859e96","#455296","#526196","#5c3b96","#a65d96","#9f3996","#43cc96","#eb8696","#bc7296","#8faf96","#d88696","#d8c796","#969596","#824396","#839996","#756096","#adb396","#462e96","#68d896","#e6bf96","#65e496","#3e5b96","#8d5496","#b2a496","#7ede96","#c3ad96","#95cd96","#92c496","#ddb196","#858496","#866296","#623096","#cc4396","#62be96","#797f96","#d0b796","#6b8196","#d52096","#7c7b96","#5e8696","#6c6f96","#924096","#3fdc96","#638596","#d9ad96","#a4e296","#b92096","#ee9596","#959496","#e42296","#e37c96","#4dd096","#5e6a96","#a86596","#e68e96","#647896","#f8c096","#785396","#cb3696","#c0bc96","#576a96","#907a96","#f75f96","#ec2996","#b5e596","#9c6896","#6d2c96","#5b5096","#5b4896","#a25a96","#6cbc96","#e22396","#474a96","#6e3d96","#73a596","#694596","#f2cf96","#859a96","#36d896","#347b96","#c18996","#e8c296","#c65b96","#a9bf96","#47c896","#66e396","#487696","#c74a96","#c51f96","#487b96","#8a2d96","#58cf96","#c8a096","#3f8096","#9c2096","#a7b696","#484796","#d4e396","#57ae96","#b8b596","#5ace96","#558596","#79c196","#d5d596","#afd396","#622496","#3b6696","#5d9696","#f64f96","#a02796","#f8e496","#b3e496","#959396","#a65796","#667b96","#768996","#ea3696","#612396","#638e96","#96d696","#6ed296","#77df96","#cc4296","#dd8a96","#505496","#7d3c96","#343296","#532996","#922d96","#5b8e96","#cac796","#e75296","#e85896","#ede396","#567696","#7d8096","#9d8b96","#b6c696","#7e9696","#754396","#a72c96","#edd696","#ae9b96","#67cb96","#639f96","#b97796","#c3a796","#4eab96","#39a296","#b0ac96","#5bc096","#578796","#3f5196","#5a8796","#6f8596","#6a6e96","#adc296","#697b96","#d96996","#4d2396","#f34c96","#44cc96","#958896","#429996","#6a7996","#3a6696","#3b9696","#39b496","#e0b096","#56ab96","#4b4696","#4f9996","#cba796","#439196","#d56196","#4fc396","#f1af96","#895096","#d49896","#bc6896","#814a96","#3f4496","#5f9496","#80ac96","#f0a696","#3b6496","#406196","#917a96","#a67696","#61b496","#894396","#386496","#c89c96","#c57496","#817296","#e17b96","#e72c96","#53be96","#d96796","#5e4996","#d94296","#f06b96","#c69296","#83cb96","#e96d96","#48be96","#7e6996","#d78796","#cf6696","#9ea196","#403196","#b99a96","#ad7f96","#6c6696","#4fab96","#9fd796","#3fbc96","#b17c96","#aa9396","#3c5c96","#952896","#915796","#ab5a96","#6c8296","#ae5e96","#392c96","#ba7496","#efd696","#67bd96","#695e96","#8b4f96","#91a496","#c04396","#4c4896","#708296","#b08b96","#477596","#5e2796","#3caa96","#d6ba96","#db7f96","#b28f96","#426196","#6d7f96","#34e596","#c16896","#ca2896","#57b596","#6c3696","#387396","#d18496","#8d4896","#52b596","#c07396","#c76496","#5b8596","#7d7996","#a7de96","#c05296","#792496","#3f3996","#dc7996","#e6b596","#c9c096","#a39396","#4c8196","#b1a896","#6ba296","#f13a96","#7ba096","#83b296","#618296","#c3b396","#91c596","#581f96","#47e296","#56c696","#8e4d96","#c67996","#88ae96","#ef5196","#633896","#557b96","#a74996","#ab8496","#7c1f96","#7ac096","#459596","#3c9296","#f82b96","#846c96","#b94196","#588596","#d2c596","#3b2b96","#3b4096","#f99d96","#af9696","#782496","#4c9596","#b5c396","#705696","#3a4696","#e46a96","#5dce96","#3ac096","#b5a996","#c5ce96","#9ac096","#644296","#dab296","#f8c196","#67a096","#cd9c96","#44d696","#6d5896","#607596","#a24d96","#7b9596","#e69c96","#6fdb96","#5baf96","#747496","#3e3796","#f98b96","#649896","#de7896","#939896","#638496","#759896","#aebe96","#bca696","#542296","#5c9c96","#b9c396","#da7196","#59de96","#af4296","#ae7f96","#87bf96","#d4c696","#c77c96","#db4b96","#c14c96","#7d9196","#48d496","#394b96","#568f96","#f59c96","#4b4396","#353396","#57a396","#57da96","#324a96","#d48396","#4cce96","#4acc96","#503696","#6d5796","#de3296","#af2196","#893396","#c96d96","#57cf96","#4a4696","#595396","#e1df96","#949f96","#bb9396","#c43096","#c02296","#514d96","#dbe596","#4b5d96","#ef5596","#b2cf96","#5e9696","#c49196","#4f8f96","#f1a896","#ad2596","#cfb896","#876296","#833d96","#c5c796","#39c596","#c42f96","#984196","#992196","#c7a596","#3f4496","#381f96","#c6bf96","#d9d496","#516696","#61ab96","#572296","#af6096","#329e96","#82c696","#b82c96","#a06a96","#97c096","#913596","#a67096","#464d96","#783896","#44ab96","#344196","#e6d296","#4ecb96","#484a96","#dac996","#e57a96","#7a5f96","#d6da96","#e78796","#dd7096","#8aaf96","#cfcf96","#d35e96","#868f96","#f6e396","#80e396","#d53a96","#814696","#84d896","#43c196","#5b8f96","#90bf96","#5f4496","#84af96","#3da296","#c58f96","#ab4396","#f7b896","#e57796","#b34296","#564596","#b9dc96","#72cb96","#eb3496","#557796","#598196","#d39c96","#a8bd96","#62c696","#4cd896","#986996","#a0c396","#829a96","#a05696","#c37496","#d35b96","#653a96","#8e8096","#984496","#95d696","#de2396","#807a96","#33bf96","#578a96","#b77796","#f82b96","#e1be96","#c88996","#d78c96","#9c4e96","#f1df96","#ac7096","#937296","#3c8f96","#87df96","#f76b96","#5c2496","#404896","#34bd96","#74d396","#94b396","#682896","#3ace96","#4a9896","#a63496","#809f96","#3d2d96","#ac3f96","#d57996","#64ba96","#5f7596","#5c3896","#9f6e96","#932496","#7ec296","#e27396","#737896","#c79896","#b28696","#d8a396","#5a9296","#ab5196","#5cd096","#91a796","#9f6a96","#83bd96","#5e2e96","#f0cc96","#8bb796","#353696","#f0e096","#883996","#c95a96","#e3d096","#4f9c96","#e0c696","#4eb496","#749a96","#eb8d96","#aade96","#f2bb96","#578c96","#636d96","#c0cc96","#357496","#bca996","#a75f96","#f74d96","#638196","#504696","#4f6c96","#cadc96","#34bb96","#4f3896","#ac2296","#63d096","#878496","#7c4c96","#beb996","#3f6696","#d86e96","#c77796","#589d96","#c15d96","#d39c96","#bbbd96","#b02296","#71dc96","#c7a396","#5d8496","#4f4d96","#d34896","#e9b696","#557096","#828496","#af4096","#4a8796","#668d96","#62a396","#628e96","#9dc196","#822696","#6a8d96","#7ece96","#bf8196","#b79e96","#594d96","#a2bf96","#93b296","#612196","#59ab96","#b9a996","#586d96","#cb2696","#d3b696","#ca2396","#90e196","#792e96","#ae7f96","#754b96","#f43096","#816e96","#4fbe96","#393d96","#4fd496","#f2c396","#6c6b96","#445a96","#b9a896","#479596","#4a7696","#4b5f96","#bfbb96","#d1cd96","#783396","#d64a96","#799996","#56a996","#8b5696","#b36e96","#7d8796","#932696","#a59996","#b35996","#5f4d96","#6e2296","#97d596","#447296","#7e7296","#48c196","#334796","#653196","#e72e96","#375796","#677d96","#9b3d96","#57cb96","#719c96","#74cb96","#667996","#699396","#f9d996","#d56996","#c16596","#48b096","#91ac96","#b15e96","#b16896","#56c296","#5c2d96","#d24596","#a1d996","#5d1f96","#412096","#5c7896","#636396","#e42696","#f58596","#466c96","#475296","#ba5c96","#eb3296","#e23e96","#c72796","#8bc096","#987e96","#639996","#7a2196","#a55296","#b0c196","#3d2e96","#78ad96","#43a896","#4a1e96","#a1ad96","#dcd996","#429596","#7d2696","#61a896","#826696","#b8db96","#df4396","#bd7d96","#868096","#4e8a96","#cdd996","#953296","#9c3a96","#3ea096","#5c6196","#c14996","#dcdc96","#69cc96","#db9096","#b6e596","#b31f96","#51cf96","#5d2a96","#97c396","#564796","#71cc96","#3fcf96","#678896","#eadc96","#679e96","#d54296","#dc2596","#586396","#cbb796","#e8af96","#ab2a96","#f09896","#c6b496","#6e5c96","#6de596","#463996","#864796","#a12596","#423096","#838996","#9e9096","#8ecf96","#da5e96","#815d96","#75cf96","#3ee096","#90a196","#4eb296","#a4dc96","#d73796","#5e4096","#715f96","#f2af96","#77dd96","#5db996","#886896","#ba6e96","#e66896","#92d396","#f6cb96","#3b6196","#579396","#757196","#a28c96","#586096","#6f4196","#4f3496","#509896","#e49a96","#75ab96","#7ad396","#b26996","#d5af96","#9ecd96","#9c7496","#3e6296","#6c9096","#f53396","#6cab96","#42c196","#69b596","#a19596","#4fb996","#a05996","#d3b596","#5f6a96","#f64496","#f75b96","#885f96","#becb96","#c49f96","#d05796","#706c96","#8a2e96","#72c496","#b44196","#813096","#8ad096","#d28296","#6ebb96","#6c4496","#538296","#e43196","#57d896","#c42c96","#394a96","#f1d096","#6c7b96","#44b196","#598b96","#71ae96","#832396","#62da96","#5b9296","#827896","#90db96","#36a496","#3f5b96","#b44f96","#62cd96","#f18896","#e62096","#57bb96","#909696","#c2da96","#ac4b96","#a54f96","#b6b296","#678a96","#64ac96","#4c2496","#5a9596","#496496","#953696","#ca4096","#60de96","#9e7396","#9eb596","#bec696","#534696","#6c8996","#487f96","#873696","#6a3b96","#c08e96","#933b96","#ee2396","#bb6596","#4de396","#df3196","#d0c196","#489696","#87a796","#7be496","#8e9a96","#e6cc96","#bfa296","#6fde96","#6d5496","#ce7e96","#b1c196","#4caa96","#b86196","#c1a096","#b6dd96","#daa196","#d08e96","#565796","#66ca96","#783196","#b85a96","#5a6796","#93e296","#a0d396","#60d196","#a68b96","#4bc996","#592796","#409e96","#7a8696","#901e96","#415a96","#376c96","#997f96","#52b596","#92b996","#ebb896","#447296","#7c4496","#604396","#814b96","#e6c096","#b3d696","#d2e196","#f1a796","#993b96","#a22e96","#9bc296","#8e4f96","#811e96","#d07c96","#92bb96","#e4de96","#a33c96","#93cb96","#ad5e96","#a23396","#6ea096","#adab96","#795596","#ada796","#f96e96","#392896","#332f96","#acc896","#34d496","#8b5096","#90e396","#b83896","#731f96","#a34296","#84b296","#f82296","#ef3896","#d4a696","#cc6a96","#6ace96","#6f6d96","#9faf96","#429496","#9ca396","#492e96","#bfcf96","#4c5896","#ba3296","#922596","#dd6596","#745396","#dc6396","#584096","#dd8f96","#926d96","#753996","#68c596","#a52b96","#cb8d96","#60d696","#452996","#4f2b96","#b08196","#f37f96","#e83e96","#418296","#998596","#501e96","#cd3c96","#c79b96","#a66896","#4d7796","#5ddc96","#872a96","#dc8296","#336796","#563296","#d9d696","#ce9696","#353596","#b8b796","#bf5b96","#829e96","#6ea096","#de5396","#f8c996","#8cc496","#bfc296","#dbac96","#506e96","#416e96","#6d5896","#b8cb96","#7ddf96","#d63996","#eb9996","#e3df96","#338d96","#704e96","#94c096","#e53e96","#d66996","#81ac96","#748196","#c8d296","#32ca96","#945c96","#5ac596","#655296","#f72996","#857596","#efad96","#c3bd96","#413696","#7baf96","#78d796","#928696","#b8bd96","#bb8a96","#e1ce96","#cb6896","#69d896","#55b896","#e94996","#4f5c96","#acb996","#91c296","#369796","#ef3496","#52a396","#a07c96","#f07096","#54c496","#b92696","#857496","#e65896","#8a4496","#e88b96","#77d096","#c55c96","#9c6096","#d22d96","#825c96","#d94796","#868196","#3c9296","#473096","#998896","#6c8796","#f7e296","#366c96","#396a96","#46a996","#af4596","#553696","#c3b996","#f53596","#a34996","#94ce96","#cf2196","#e08d96","#c83d96","#709796","#4bd896","#bb3e96","#cc9396","#e1cd96","#643d96","#876796","#54d596","#576696","#b13496","#ef9c96","#f35796","#ce3f96","#872896","#c55296","#746196","#945e96","#644496","#8e9e96","#b73796","#52cb96","#d7c096","#885d96","#a5bf96","#385596","#8aa896","#705796","#678b96","#607a96","#bfda96","#e1a596","#48d896","#c0bb96","#bbc796","#e7c196","#f42c96","#7b7c96","#909796","#936296","#d2ad96","#a75396","#c4cf96","#dae296","#9b7396","#c05096","#957b96","#386e96","#f34196","#8fb496","#8c8296","#dd7396","#501f96","#752b96","#a7ac96","#f33496","#acc296","#35b896","#cf4696","#bcb996","#c9e196","#b9cf96","#705296","#929996","#f26f96","#3ec596","#c53c96","#6f9696","#7d6896","#cc5796","#af3296","#45b296","#d99396","#7dc396","#665a96","#adbf96","#359696","#72b896","#932b96","#653296","#f05a96","#c7e296","#414796","#e0da96","#db6296","#3f6f96","#9dc096","#ee5896","#364c96","#545b96","#e68296","#d78d96","#c0bb96","#432496","#f85396","#699896","#b7a696","#f7cb96","#b59596","#82ce96","#d59096","#765996","#6a8c96","#3d7696","#5d5096","#bc7196","#a92396","#88a796","#906396","#b67b96","#735c96","#562f96","#847a96","#e46e96","#c07496","#98be96","#6e4d96","#c32e96","#365396","#743196","#c7c796","#6bcb96","#5f6f96","#804c96","#a4af96","#99ae96","#5fbe96","#c07796","#376496","#aa4396","#782d96","#4c4a96","#e6a696","#65c496","#e36696","#8d7496","#788996","#397696","#b88096","#b86296","#537196","#845796","#448996","#b67496","#50cc96","#d12a96","#47d096","#d9c996","#98ab96","#7a5e96","#c5ae96","#bce196","#bb9996","#dd9996","#d6ce96","#476996","#cf6a96","#5b8796","#74d596","#8d7a96","#84dc96","#3bc996","#f59496","#919796","#ce2496","#7aa096","#772596","#a92596","#af3296","#94b196","#d13a96","#b3b296","#f17a96","#cad796","#8e5796","#cb2896","#50d696","#dbc696","#343396","#ef3596","#895896","#4d6196","#a1a196","#714796","#ed1e96","#a16e96","#8a6696","#8b7596","#695b96","#6cd996","#788996","#d57696","#f56b96","#4aa896","#adc196","#8f7096","#475a96","#5d4296","#b28f96","#e9af96","#ac9096","#d2cd96","#375a96","#558596","#39b696","#be2996","#59bb96","#96a596","#d27996","#8e8796","#376396","#a98996","#b7c096","#e97896","#359196","#b9c596","#8c4096","#998696","#ac8196","#60c196","#92c696","#de5896","#cb9c96","#c43a96","#d93896","#513f96","#f2dd96","#efd296","#538f96","#7b4e96","#6b7b96","#db2596","#f6b296","#a83896","#349c96","#ded796","#8ec996","#6a7396","#f79096","#daa596","#b58596","#e29596","#739596","#aa2d96","#399096","#75a596","#6c8796","#669096","#a39496","#b55d96","#9b4896","#702996","#78b596","#bf7996","#f5a396","#91d596","#d07196","#b65b96","#4b7c96","#bce196","#f5c796","#dd2f96","#d06796","#50ce96","#cd6896","#502b96","#ece596","#509a96","#ab1f96","#b14996","#d8b396","#682296","#397b96","#41d096","#bddb96","#3b4796","#4b3296","#549396","#d94996","#8de196","#7cae96","#948f96","#de5c96","#e3b696","#e3d196","#a5d796","#d67b96","#b11e96","#b19596","#e98296","#4ccc96","#a04b96","#6dc696","#7c8e96","#8c5b96","#b39296","#649096","#eb3a96","#ec4a96","#c87296","#7e6096","#c0b096","#952296","#ca8b96","#afb196","#775896","#879e96","#466196","#6aa496","#453d96","#9d6c96","#d12c96","#564e96","#509096","#5caa96","#e35296","#ce4e96","#803396","#f14a96","#928696","#52c896","#733996","#d13f96","#b05196","#368496","#905d96","#c97396","#f1a596","#888396","#4be596","#e31f96","#ea4d96","#bccb96","#d55796","#e08d96","#b3cb96","#f0a496","#648b96","#6d8e96","#7a2696","#45dc96","#f53b96","#4c4396","#33e596","#f07c96","#60d096","#dc5996","#575d96","#679a96","#b67c96","#b78f96","#ede296","#35c996","#76a996","#659896","#4e7096","#3eba96","#3d3796","#634496","#e59296","#816596","#54cf96","#724f96","#756896","#e06896","#735196","#8b6f96","#ef8796","#8a8796","#744196","#54b396","#b29596","#6cb596","#a0d496","#3d8b96","#894b96","#7f7696","#ee6396","#b33196","#60b296","#9f7c96","#368696","#78d296","#9d8296","#69e596","#6d9496","#ce5f96","#8fc696","#ba9596","#b0cb96","#4c3e96","#347596","#614c96","#8f7796","#427c96","#f03f96","#8cc396","#8eb996","#4e6e96","#f69196","#452196","#814a96","#d82896","#4e6896","#e33096","#ef5196","#998596","#e5cc96","#aa9196","#7a1f96","#eae596","#a5bc96","#9ba896","#ba2796","#534096","#52a596","#792296","#d54b96","#8b7b96","#392096","#456396","#557696","#c84c96","#ccbb96","#e0df96","#aac196","#d15696","#72a996","#a85096","#498296","#53bf96","#772196","#e5cc96","#698e96","#6abc96","#763096","#c42296","#90c596","#eb6f96","#c06e96","#bcc896","#54ae96","#c0c096","#d05a96","#ad5396","#756496","#b0cb96","#336e96","#e68896","#c2a496","#8b4f96","#43d196","#615096","#77e096","#812c96","#ac7796","#ee2396","#5a4f96","#54bc96","#883496","#509a96","#82ca96","#542796","#ab8096","#cf2096","#854e96","#b06c96","#3fcb96","#dda496","#a05696","#cb3996","#664496","#f77d96","#957c96","#55d796","#932d96","#d77c96","#aba796","#be4696","#588396","#742e96","#3a6796","#47d096","#559796","#406a96","#7e9796","#5ee596","#438596","#8ac196","#d14396","#5bb296","#c2da96","#d36e96","#cc3a96","#a73096","#42b996","#719a96","#f57e96","#f25796","#599a96","#49a396","#5d2696","#507b96","#5ba296","#e03a96","#60de96","#dac996","#eb9196","#b47896","#f27f96","#863096","#a99b96","#807b96","#452896","#3a8096","#529e96","#cf2296","#7b8996","#40da96","#a6ab96","#3eb096","#34bb96","#a57396","#d34996","#a57196","#663996","#b94396","#ad5796","#b37d96","#65bf96","#cc7d96","#d85696","#667196","#696b96","#e36596","#d05696","#f2b296","#ba2696","#a55c96","#6ab196","#6adc96","#a54896","#938c96","#5a3b96","#bb7396","#51a696","#8f3b96","#8e2396","#c4e096","#34cf96","#97e496","#c74096","#a4d296","#d59d96","#85cc96","#bc4196","#4d3196","#81bb96","#a83896","#e9d296","#7d7496","#b32596","#8e9596","#e38396","#3a7b96","#70b996","#aeb296","#358696","#f79f96","#de6f96","#6fe096","#55da96","#c94296","#613796","#346c96","#e9ce96","#f31f96","#8fc596","#4c4a96","#6b8496","#a8b396","#4b5f96","#7ae396","#b53e96","#f24d96","#cb6f96","#8b7196","#8d7396","#a49596","#399596","#a99896","#ea7c96","#868e96","#9b6d96","#786996","#396c96","#b1bd96","#984196","#b1cd96","#9d3996","#85b396","#c42596","#583396","#ef8896","#f66596","#798196","#e42196","#61a396","#56e096","#5f5196","#672396","#60c796","#855596","#75ac96","#f79696","#d52296","#343596","#bf4596","#969d96","#ed5a96","#7b3396","#33af96","#444996","#c68896","#8aaa96","#7f7696","#dac096","#d45c96","#e37796","#33be96","#3ae596","#c65196","#5b8a96","#418f96","#a6cd96","#a43296","#c6b796","#b43696","#d19296","#dce396","#70d996","#379696","#78e196","#b93496","#75b596","#b8d896","#c83096","#55bd96","#a7d496","#6c4196","#66d096","#eda396","#a35596","#ba8f96","#7a8796","#a5b796","#bc6696","#f48d96","#8abd96","#37b396","#538a96","#887596","#c1b296","#5b8f96","#897b96","#e86696","#84b696","#7b9d96","#764a96","#d0bc96","#3ece96","#3be596","#483a96","#c48196","#8b1f96","#7a5596","#517896","#b1e096","#ee4296","#ef9e96","#943896","#79ac96","#c03396","#ecbf96","#992f96","#837c96","#ce4a96","#5b4d96","#3fdd96","#ad5796","#86a096","#c7cc96","#603596","#f7d096","#c58d96","#a2af96","#e38e96","#607896","#f2a996","#edcb96","#9b4396","#b26696","#c39c96","#bfc496","#c3d096","#e78d96","#37be96","#ba8a96","#678a96","#6a2896","#eca696","#605796","#b3c696","#815996","#32a696","#c07e96","#7bca96","#f1bc96","#a97696","#75b396","#504896","#532196","#603896","#994e96","#5e2996","#de7a96","#dd6496","#76c196","#6d9f96","#9c6496","#633396","#c48f96","#c74896","#af2396","#3ede96","#bf4e96","#5aab96","#939a96","#f77496","#da9996","#3f2096","#68b496","#b8a996","#379f96","#36b396","#6a9396","#d76f96","#4f6c96","#7fc196","#d43696","#e9b396","#a66796","#a27596","#463596","#9c5896","#ccce96","#7be596","#406f96","#695696","#3b2596","#659496","#d52496","#878396","#ed8996","#40e496","#b07796","#6a5d96","#7c8496","#99e296","#c64096","#40cb96","#ed5e96","#8c9b96","#648e96","#f22d96","#e4a596","#82c396","#449e96","#45dd96","#cacb96","#617a96","#9eb796","#91ba96","#cb2a96","#8c9896","#e58c96","#ead296","#d2dd96","#bb4296","#7f5396","#e7bf96","#825b96","#4e6096","#b4d096","#3eb796","#8d9e96","#46ab96","#b17f96","#a9a396","#a65e96","#ac4c96","#5bd596","#eb7496","#8ac196","#442c96","#ab9096","#718b96","#f37496","#4e5496","#925096","#f07096","#f04696","#963496","#f22396","#337796","#f32e96","#66e396","#9d7b96","#703d96","#aea996","#d32296","#64d796","#e07496","#55e396","#8f8c96","#3e5f96","#965d96","#77a596","#cad996","#876d96","#5adb96","#81d596","#e38a96","#ce4a96","#d43a96","#7b6e96","#d12296","#bf4f96","#aed896","#efb096","#d7d096","#32cc96","#616696","#eadd96","#ec2596","#7ed796","#838596","#a18796","#f08696","#e7c996","#abbf96","#35d196","#d1c096","#53b396","#cfa796","#b17296","#468c96","#40a496","#4aaa96","#a66696","#f3d896","#5cc496","#766396","#cbb396","#f84d96","#484c96","#83d496","#844296","#988296","#6e4d96","#391f96","#922e96","#d74796","#357f96","#baa196","#f7e596","#da5696","#e59d96","#c88896","#b62e96","#f5d896","#9d8096","#a4d596","#d62796","#eaa196","#37c696","#4e8b96","#b58096","#b95496","#ab2196","#482e96","#864196","#503d96","#9e4296","#692296","#664f96","#6abc96","#963c96","#f6de96","#6cac96","#b9dc96","#f4b996","#3a3a96","#ae2396","#3b6696","#ef9d96","#ba9896","#bb4796","#cc9a96","#bd5796","#b0af96","#ad9496","#dfd396","#92c496","#afd796","#bc1f96","#9d8896","#7fdc96","#848396","#3b7196","#4f9196","#cbb396","#6fd596","#dd2d96","#734396","#b53296","#cc8096","#947c96","#7fe396","#59de96","#6a7096","#f09d96","#6d3e96","#a46596","#e38196","#c47c96","#8cb896","#a94696","#be4396","#d53c96","#584b96","#375496","#b37596","#324696","#b59196","#7d1e96","#8f9d96","#eeb596","#9b8496","#77ab96","#956b96","#8bb196","#98a696","#92b596","#dbad96","#abdf96","#9cc796","#ad9c96","#604b96","#6f7f96","#832196","#336596","#cf6396","#b88396","#334796","#ed8e96","#ac5496","#a75996","#ac7b96","#625b96","#4fc396","#c87796","#b13c96","#7eb896","#b0b896","#7d8e96","#a7d996","#e5a496","#3b5996","#386196","#49d496","#acd196","#bb7c96","#478396","#edca96","#eed696","#ee8196","#aa4196","#cf2296","#3dd796","#a82b96","#ee7d96","#956896","#7eb896","#bbd296","#dbd596","#804c96","#4a3c96","#eca196","#bfa296","#76dd96","#b17a96","#de9296","#e82396","#cfbc96","#993696","#c68796","#895696","#38c896","#77ae96","#ab4896","#edb396","#a12a96","#a97696","#632096","#cd6796","#e5ad96","#d22d96","#b64296","#98c496","#ac4296","#38b196","#6fcb96","#f67296","#533496","#b2be96","#342c96","#9cc996","#3e1e96","#49c796","#f0aa96","#eb5096","#b78496","#57c196","#a08996","#359b96","#f6dc96","#6fa796","#75a096","#f69f96","#b9c896","#915e96","#d23d96","#834996","#324296","#e9aa96","#ad8c96","#a68896","#b73b96","#d0b596","#ce6f96","#44ae96","#3e2a96","#3f6096","#5cb596","#8d9d96","#8de096","#9d8c96","#a27296","#e4a596","#bb4d96","#cd4b96","#b56396","#df2696","#dc3e96","#a59e96","#452696","#5c6496","#8dd496","#da5496","#eb5196","#a48e96","#64d296","#66db96","#d24b96","#d46c96","#bdcb96","#48d796","#b8d196","#72a596","#d3d696","#6d8396","#6d9496","#b38a96","#a82096","#68c196","#99ac96","#3c4896","#3f7596","#613696","#c35b96","#6dc996","#b08596","#e72f96","#ed3b96","#a34b96","#b9d796","#7c5d96","#832296","#7d2296","#d64096","#eaad96","#c03796","#678f96","#3fcc96","#a4b796","#475d96","#c8d496","#848c96","#714896","#582d96","#44c596","#d5db96","#f4d096","#aa7996","#435696","#60c396","#f95596","#9b8196","#395596","#7ccd96","#42c296","#f2d096","#872d96","#b4e496","#795f96","#68c396","#ebdb96","#a4b496","#eb7596","#bd4696","#a72996","#374896","#be6b96","#c9c096","#d2a296","#669796","#9ed196","#4e4496","#a35596","#a22a96","#69d896","#35d196","#cdc296","#61b796","#d93d96","#676a96","#436696","#7d2a96","#9c6096","#502d96","#50b596","#5f6996","#3ce396","#9e4096","#f6d296","#b0ba96","#8a5a96","#c24c96","#be8496","#8a4096","#e05596","#33c496","#b18a96","#b87096","#366296","#90c796","#825896","#d4cb96","#c48096","#b7dc96","#b29596","#c84296","#658396","#3fc596","#ba8896","#de5a96","#d07496","#66c796","#f47496","#61ab96","#c74c96","#6f7a96","#6b7c96","#764196","#a46696","#50cb96","#498a96","#919096","#922196","#b87c96","#695f96","#b6a996","#e95596","#9e6796","#4bd896","#99a396","#59d896","#e15596","#98cb96","#c37396","#d71e96","#b42e96","#bc3a96","#f32696","#5ccc96","#b5ad96","#cda196","#c38b96","#895996","#5da396","#bc8596","#998a96","#a73896","#c63f96","#52db96","#e83796","#9c3696","#76a296","#b72596","#f59496","#a3b496","#435896","#653196","#b3df96","#6e6296","#a46896","#99c396","#b5bd96","#684e96","#ca2f96","#969a96","#73c896","#dd4396","#59ac96","#dd2396","#548696","#ecaa96","#ead496","#d2e596","#364296","#ad4e96","#5ebe96","#7c8396","#404796","#a23496","#dcd396","#b55896","#3b4396","#3cc096","#5f8696","#787896","#abbc96","#835796","#c5d796","#e9c596","#ab4396","#cb5096","#81a896","#b94596","#519296","#361e96","#a08096","#cba996","#b14496","#9d2c96","#3a4496","#5f3a96","#767696","#7fbd96","#952d96","#a34e96","#e16896","#f69696","#c8d296","#d3c196","#e1bd96","#ccda96","#6d5b96","#f38896","#3bdd96","#9d6c96","#52d596","#717696","#4b4496","#704796","#addb96","#5d6996","#f37896","#b2b596","#bce396","#a65996","#c47296","#7b4796","#5ec896","#434c96","#8e8a96","#4d4596","#9a2196"],"radius":[0.7421629153887686,0.8845557645036722,1.458755061224639,0.8223550892055762,0.5638909317097827,0.9813233065536198,0.051545772320760797,1.3607515312846585,0.017239715734090055,0.1066358007614766,1.2817189807289568,1.147358804778845,1.4276806878068173,1.1403982123547052,1.1688894331035495,0.8696432527778357,0.304131948362526,1.1927202781691735,0.01906070916319097,0.3011986835833976,0.5069933165914238,0.7386543555825835,0.9957943977661071,0.1659411939787898,1.2365892668577938,0.5087423854805839,0.5757550872046939,1.4278369939935784,1.1615191263431628,1.4313797135328779,0.6242462067688934,0.9328312018936173,0.7492281835225396,0.1689444104920817,1.319797306607719,0.03113259822722897,1.2423353800291603,1.3451585875252188,0.1991804458289525,0.7691925806360116,0.644054545165519,0.38527558734401196,0.6549168749836733,0.5278017993668407,0.1032277432938597,0.9714840376649796,1.4243361927687137,0.34736539971901953,0.24184677042265645,0.873684331016721,0.34315246064161614,0.3356723014804552,0.5142670203521542,1.2638964133968051,1.0818506166617166,0.8502656090186019,1.270240879396257,0.7422208527906347,0.49201155795130114,1.332827399287693,1.4362419418233392,1.2822587337262892,1.3724878369037148,0.009447082949028685,0.6708110682089956,1.0441192130363386,1.0142217995361136,0.03410378103684153,0.5248327967341913,0.6088577462017155,0.7974968068535169,0.4662942957654301,1.3557811121634775,0.04097498059588367,1.3754193633669813,1.2341294956892805,0.07775352120952256,0.11679087613957895,0.9385680827690943,1.0255176519014713,1.2320275827505527,1.3064009756961974,0.6624097960818538,0.2945284423668178,0.3845299385395146,1.067392970640762,0.04314189934081597,0.5996917285483023,0.48016828338976675,0.35891457049487824,0.19577262496683812,0.8854377189231782,0.3242501156437057,0.8564390568225146,0.7944852907853666,0.09671531740488881,0.9229425208404056,0.2831659131268197,0.564414622343137,1.2861513787648526,0.6447403836444106,1.4691131238805688,0.05183274115635256,1.4651149589002626,0.9943136450010186,1.3013427414810261,0.9118698372937819,1.4898967618664507,0.6681092688916952,0.6799741616149905,1.4406232157683205,1.2689729855021814,0.9469576979688024,0.33873726394383546,0.8760385244665067,1.3214736925101231,0.019799686183693377,1.2122789701052115,0.47519630460803053,0.6799116587823064,1.1265859518477246,1.2175832047822328,1.1953410881510562,1.3335956883276785,1.2594536338556759,1.075516177601256,0.6469507629065705,0.5173032123665194,1.3931239474723582,0.7677273899524604,1.0393108843385344,0.41935899107925373,1.2010305113317044,0.043461176721364625,1.3472389837847003,0.3413895105869179,0.3572191834500809,0.8216225943678068,0.5989684257290784,0.5796404797782886,1.166069096700231,0.9133956280579253,0.7414731669941115,0.18947196392153798,1.3208553069375266,1.0903167797294393,1.4613483853731364,0.8005873382181368,0.4793888735798476,0.8445325840627083,0.37769721220155045,0.6719316833993019,0.7502960907478762,0.7023515684332732,0.1906953039762851,0.8055483586713708,0.23198136173350692,0.25066113830033426,0.630354163394073,0.3717169154816113,0.4608736945726012,0.5590253339816136,0.6157869069371085,0.8956867541168638,1.1119722291060428,0.21419801975301217,0.5748608053888237,0.3684634487049291,0.5225046488762601,0.18790847268659328,0.5388591507782048,0.9923140176858111,1.4520371909603214,0.5797652886370351,0.10052981668092587,0.05826365704099601,0.9148175818578723,0.8601390035186389,0.010007877389992537,0.9196346315779969,1.204643460491813,0.7693814264125864,1.1869840654112875,1.4167271962438395,0.43281018761509915,0.6713527592811602,0.8096892018845476,1.182893369419095,1.377661053641038,0.49844209350568214,0.9332327825981822,0.6155271760752801,0.24076626103169063,1.0989469514662753,0.9385024381788344,0.7679696017398314,1.3027337047134955,0.7388938701124872,0.001768231243159113,0.7250123878571324,0.2699860758523382,0.9439425834912621,0.9713274810083401,0.5239639645814161,0.7760941433861636,1.4141412090024013,1.2322169316938387,0.2813795389428246,0.8351846970546064,0.8084534926228564,0.6258225723164214,0.6115503962311872,1.4306936004382376,0.1987658895564457,1.0004037404828794,0.9895741066537889,0.33103263558815493,0.6498457419714163,1.0820611517712426,1.084794442842059,0.2440168422318521,0.01313167176401997,0.9061880301376035,1.001864758978338,0.7901861297250374,0.6697624369230872,0.7011432833057798,0.9503463795080269,0.03552263296877889,1.0624473805030028,1.3870843600916987,0.765514373267624,0.5755133855749841,0.8257106894201091,1.2158530208857852,0.32219871554023927,0.9336195200906927,0.03978787483219248,0.018591661438062512,1.0178168792403293,0.29253516731658474,0.019785650615362305,1.217925543554661,0.5574740387150641,0.7415013789943707,0.04147643984694793,0.6379715963699167,0.39793329738188604,1.0181797303139157,0.6377581410115113,1.3633267458144358,1.4854590217887182,1.4968401746443547,0.9903540834110411,0.2936255221687932,1.148506384741942,0.2718350320969725,0.24843720950620068,1.1127987927314171,0.805734144573365,0.9619872146117971,0.9257034720621959,0.31790773807360984,0.4240821608578553,0.7264548320621396,1.3104990665713319,1.2419327646905156,1.2890280738416482,0.9030368091174069,0.5452514963218755,1.1740921566518494,0.3737624314994723,1.4918397567971804,0.9714732896911825,0.8071160403312085,0.1527099884588094,0.76625921072635,0.775919513271353,1.4961871605567836,0.6373424494071322,1.489256782557471,0.4778267407650794,0.6812872595588618,0.49951519645538783,0.9868650861383463,1.1039882396339256,0.9657337991831239,0.5530352027318828,1.0780643444772224,0.34255110366079566,0.7334447764046409,1.3051784353961517,1.1898561090649222,0.10849188411617622,0.6654974715725079,0.08138666919394982,0.6647496885302835,0.8565221360063691,0.2648221196425686,0.6020519368318467,1.2305656265277225,0.35969178498088705,0.6816580024438446,0.5239433124970454,0.11913863298702565,0.9063600639208927,1.1231730453371178,0.3239768960539573,0.5233538370241131,0.4529161404911144,0.23982739504109968,0.8567664556832495,0.8490744568342682,0.9463273030999315,1.0218950798155784,0.10652472377062822,0.8458680543817377,1.1609539178592185,0.023563753545275568,0.7918878402746603,1.0654218784234462,0.45696237260178457,0.3413647596777832,0.27658137594295146,1.4879207719714627,0.18307531420764606,0.5697108434042184,0.7688142100712498,0.035399516315876345,0.5919643685345595,0.094167348617334,0.6201354073044367,0.6516286182742881,0.696690196774467,0.17103528383866995,0.72175678203191,0.36312629790945855,1.035238436647336,0.8680865803116815,0.782826668755151,0.5541639976033301,1.189198182505051,0.5274249735633055,0.8354364176400892,0.7469224579701292,1.1731514312231452,1.246762929815807,1.1476727750169466,0.9355924238117617,0.9586791111716293,0.354609544519886,0.39452774760236115,0.24596235533847205,0.6184351013727161,0.3892728622874185,0.9622835881796774,0.7065788418993406,0.9589610086673646,0.683004021878755,0.497301919836429,0.8441214187374673,1.0115249476936417,0.09982560593573458,0.21882764773075952,1.0401226326272848,0.20624965735392192,0.721654752211598,1.0923751570611258,0.04202567788702788,0.014835556610189538,0.30069981376417093,0.4436598464161597,1.40584241630208,0.5393665284913589,0.6798780999664614,0.8231620078584077,1.0511382857235445,0.4123009424090022,0.5621499669697022,1.1506314990486128,1.2622755723867392,0.4618525708830069,1.1010499202857633,0.8040760087287171,0.5024569521841777,0.40486418809970864,0.4727675540621471,0.37560109139344455,0.7604028909570076,0.7385196103491134,0.31944866556481993,0.3109685318804661,0.37296930965256647,1.221431359494167,1.489076543239156,0.6917843979775075,0.854174807447538,0.5775541594472828,0.5995449025748065,1.3448392106124656,0.20182175564734073,1.156450686760631,0.18540706178894084,1.1535728406284802,1.388739245890347,1.473655149647422,0.46042296793708765,0.030246671338299724,0.9546990681810572,1.2015939379999248,0.5895851985494075,1.4619880383960246,0.4643475619559635,1.4478649554385639,0.7071236189706411,0.38099977925265127,0.184188457567595,1.3364277175122017,0.9741782042079398,0.3482294147202015,1.4791428673184024,0.9413073314886762,1.0668203600095858,0.06295183794943204,0.5066504975897828,1.441355547137024,1.1549390399017896,0.5092823991723365,0.6380758425740116,1.3753726325024302,1.2559745160657916,0.22664904228914756,0.7959061112491379,1.2582129144437881,0.9365702423994589,1.3144230751629822,1.3677244692717543,0.813505678075749,1.1614443805339139,0.20758748888465706,1.3545687955415529,1.3615700520010616,1.1738839058731068,0.26125584743879054,0.9995503316475434,0.2876300098024087,0.9359110590121973,1.374885691209403,1.1259480628096519,1.2886722261694366,0.7686450773304706,0.32163358829293187,0.003805990274980131,0.3983585013968511,1.11252312361172,1.476824816440249,0.10405895373171659,1.3584612702486993,1.4341452563078751,0.9233794849121784,1.0662845884680512,1.3899041936500842,0.5035247931481777,0.4560617052529225,0.1420111007512614,1.428628165968778,0.8736240208720387,0.35055604861649303,0.6108329745841206,0.04013048859887314,0.046143421827872066,0.44772970850259813,1.0419771938393882,1.4656772559632731,0.6313077256271524,0.7276138148582041,0.20551396407410621,1.2984933618853691,0.0714819405222154,1.247025256902119,0.3632988753411677,0.8248040286680989,0.20707774968165754,0.33768311783719424,0.07519282066040706,0.32800590440151506,0.5843360506402517,1.1360922043312283,1.0781423509145274,0.8527131301982951,0.9381672055887484,1.4423697223652974,0.14054282240386506,0.5271372994816516,0.886015060605845,0.7692593791058593,0.7389455049025502,1.4384689257075782,1.312980680904019,0.544025962335428,0.14776290454053836,0.11985737825403603,0.08331606964903876,0.9672700727595331,0.01077267087854994,0.12863683085904692,0.22571624441873028,0.34538323169831076,0.505156354012722,0.11738515379703307,1.0737366616078297,1.3791796792994528,1.0398284313559725,0.581937614947447,0.6332739440915803,1.2367642676752397,0.12222413758841755,0.36054572029537224,1.3068867003256797,1.1903804645704181,0.015349959156791493,0.17262865381640374,0.3951637886194089,1.409693792017648,0.6757248950992587,0.7440819617565388,0.24366129843913392,1.2418877760448461,0.27620977249327766,0.4558810912291986,1.1028396887106533,0.3506898786942738,0.21527501701550295,0.8470365970273382,0.8418803438909532,1.347268243438213,0.8474049443532871,0.19713390057055485,0.8437978729796722,0.05815002543116743,0.29263697087268736,0.5725073749824761,1.044149851942323,0.6403742531595193,0.2648176058045925,0.2205932450175503,0.10922572179528417,1.1851328586647063,0.4242490417928711,0.002153907407897171,1.2787935886715052,1.3027455775536227,0.6074402241435007,0.7847151728082815,1.053197755406432,0.8090220049382308,0.009107106950262622,0.5236699926002739,1.3277801630259374,0.1492154469199069,1.3183792893887953,0.8938847972699446,0.45468784085987596,1.4739224018579167,1.3166326493815577,1.0550812485154075,1.3576903299881942,0.20615710313928903,0.2100213199049803,1.3038537387703215,0.28011191473431396,0.24149504393918847,0.23835229248750722,1.0357256575144143,1.1563884273173377,1.0198982716947214,0.8516447365976325,1.4754004046966318,0.7294894758557102,0.6419827281837434,0.2996291999830831,0.3689254835464059,0.6333322748029,1.220814071382435,0.2952195267533374,0.09574368773415559,0.950010849214978,1.1484933878984869,1.4291525835596857,0.45476581042183994,0.7306589252164768,0.8072826183780729,0.2496542511987795,0.8329256542874639,1.369117307877099,1.1097027906882606,1.318433379749337,1.4540113547926257,0.9075884145666346,0.17450418027676518,0.9725766574317443,1.2412015091091693,0.6688595239328433,0.04199024182793948,0.8360975128315009,1.4521005663541897,0.8136986422248771,0.12811587506813027,0.38133743041126994,1.0768700113630085,0.2366047539922128,0.900922397972106,0.22558895925593397,0.17692141079693308,0.2252047018581237,1.3803919835657228,0.016465744449613406,1.0697434784037834,0.4811668120113662,0.056830701485824864,1.162920571108518,0.44144611358506314,0.7950991780247814,1.4083293818750142,0.7724283274988888,0.9169263419797675,1.4703826811656593,0.7126086318236693,1.1323970868977769,1.2994397288418873,0.9818642033838718,0.43080150426165126,0.6656110772422907,0.5833597436883665,1.0978355145994836,0.3588890755204851,0.4399481926460027,0.5384250388948251,0.46760585640193686,0.16441874161173226,1.3631867463064495,0.08064704939469786,0.5163918150684026,0.4860133358813383,0.49394572662437736,1.1590806045693804,1.2237749712116017,0.3165503824841295,0.3307628394467337,1.1974952381629573,0.6541890384810118,1.0653694592637484,0.683378740936257,1.402403753861845,0.27434840201078514,0.5691370219497907,1.0460111543656585,1.1937545338620255,0.580928046148826,0.8960817296069425,0.044757776950508144,0.31182901367291915,0.15320248037272266,0.7227716757340901,0.8609193873993987,0.5249361814213288,0.47043050279225235,0.7875724593062007,0.4862343276988462,1.012568591268538,0.07209266375946749,0.44615885219662904,0.46176402791984617,0.2876148476771274,1.0745087116078436,0.1006315596500284,1.099397991582684,1.2632024259075194,0.20898163255162605,1.1675002192219373,0.8577852494504663,1.0961302367912202,0.015509087108224184,0.7752705762698981,0.5171083888572156,0.5466985489711427,0.7044075127964873,1.4579428135632788,1.1795154415681648,0.032736548106493124,0.5212478390616719,0.24362884835394366,0.9166409951543492,1.4870845828151569,0.17133391852198354,1.3232109737531086,1.2221991995606976,0.4166551847948377,0.7755678447616896,0.9991361962512111,0.6076959556859653,0.11104753654898908,0.1341905357060585,1.10976682035302,0.7425558054342322,1.4337385461192558,1.042421302370255,0.8567388235448319,0.710908220924603,0.3328545080144126,0.5167566830369859,0.018615477829728,1.272004845950916,1.2786709522616595,1.0017582273880883,1.0482484891164132,0.87404412069692,1.4644504447299393,0.18985991562875182,0.3065313706642915,0.16130143237778144,1.4771549005950635,0.21534643215671795,0.6350909606233006,1.321638299467929,0.7311802031115289,0.5006145839957274,1.4869702919325818,0.42731140145010577,0.7162441758197267,1.3776303546007174,0.701779310546081,0.30415771027232974,0.950446480018881,0.8266153898692934,1.116850305424857,1.2412027712662046,0.8252423327451968,0.9913910460644086,1.442054329683035,1.1431508576408635,0.7699696611523159,1.1546103130536163,0.5965652008340006,0.4906532211392899,0.36551708773519387,0.5136290331416369,0.28529933024297505,1.220105674210879,0.9110966214585792,1.0412035956555166,0.5136665794792326,0.4038223526883136,0.5459781053545669,0.363288545226169,1.4081169857726519,0.1497773881910554,1.4027977336217738,0.6513038934876552,0.26700879279641304,0.8375359962415322,1.446717036306907,1.4260191549680532,0.5988376633827756,0.702547346371812,1.2303608949428757,1.2292655767466167,0.6682673264482637,0.7713766923775482,0.28586768284685626,0.35843445857603723,0.27899906937794766,0.08991686394211151,1.3108965706525453,0.735976267272882,0.1861732395164507,0.6268738852194445,0.7836223883020996,0.3490567756494437,0.5486729383447662,0.16127566739438048,0.40595575062624945,0.8218519986145779,0.5533468612931653,0.6194899834263542,0.42147987275144455,1.2599584461344753,1.3241765876246558,0.5033706891564802,0.28072944628291574,0.9892547150906903,1.4678515096528701,0.41466275697177774,0.9387010881711755,1.0435100241572215,0.5114532001146239,0.39212862203263577,0.22964436888273138,1.102102466177215,1.341718789489796,0.21039773983857946,0.26033631281732156,0.7003594001040679,0.36868124924524664,0.8276610670646274,0.4597124890303582,1.4501534623506622,1.0366571334591717,1.4018621571031082,1.1974109414589607,0.38215978424575714,0.05306946020649722,1.450010713701395,0.9793335768422297,0.39685805595539686,1.417830716442263,0.48321866707867855,0.5281510583698927,1.4047902364659062,0.8615547417423877,0.03378474311735136,0.6269840154151056,0.3948385686374043,1.244997287447755,0.3382768364421279,0.4487894128111499,0.9724587154032069,0.7521075914172676,1.0143716501727462,0.6972881576383199,1.23687251333825,0.7867074016340583,0.06628179588735456,0.6085936428244465,0.25553301709933207,0.24137384888290825,0.8473179590086831,0.15053324321554956,1.312584914490492,1.420779504667646,0.7114816861461664,0.764637586167179,0.5917809243681297,1.106319980873923,1.329774246808021,0.7782818418845106,1.199061221113601,1.242724754892137,1.1970052428598008,0.1616721264739504,0.8659459497143447,0.5976229717448711,0.5165850193445571,0.8441523515992515,0.933776540111771,0.9217485889520387,0.380555307616144,0.7535378660188331,0.3773869138679679,0.7370203664695945,1.095646047016221,0.29679695578085985,0.7837597089582471,0.7826277748747389,1.0100627951043235,0.33134382683312164,1.2302728795165023,0.2325397065770139,1.0152435256425458,0.1400997645242067,0.6513355027658758,1.475219639351445,0.624538186373622,1.3928358238722762,0.007747262264314825,1.1657749517365819,1.0414997697549273,0.5955621321572784,0.8162648250913959,0.4942282556304947,0.6513658292564632,0.3399249735263161,0.47176923000939686,1.2063849837912235,1.2379444076623005,0.6205224613113038,0.2521535176448799,0.3256680198739298,1.1453542317973655,1.3190005965782798,0.24433017262369428,0.5411134860027619,1.4424699657094355,0.7744488318475042,0.524548471671878,0.2648560487866602,0.3499029206885511,1.1710445874183315,1.2775972013855459,0.75213228908851,1.309906910161725,0.380687418801158,0.5310658273068473,0.7713517457062227,1.281807650485554,1.2766232162183315,0.012015633780946666,0.10077014036031573,1.418569906898857,0.829136701153135,1.1673113118508605,1.0357302041623238,0.0036702713247302454,0.0902745132256319,1.3701950318247147,0.8530122689024398,0.2344498456310915,0.20859518190708903,0.13771674385665433,0.7442455064513205,0.13034421975167831,0.24920392635190297,0.29082472889114774,1.4036736536215284,1.3552386753316044,0.9707413250648351,0.38723422687881515,1.4228807423634684,0.3156023535269059,0.3133587517287748,0.502015156885393,0.8192949031081687,0.6837960951576241,0.9587370836892046,0.5687368602656668,1.2815847502981632,1.4483505609385112,0.4350804696411006,0.6015072258695954,0.6089488584039566,0.1625224444606015,0.5002891988187956,0.32328443754023584,1.321693567483433,0.8654078011199136,1.3777302857346965,0.5563774810940547,1.001918055088287,0.7942164784924037,0.4181497889350006,0.2667848720418954,0.9118361258943919,0.9306254168023853,0.5001516041396086,1.009139411364566,0.3506655692282988,0.4666509472711386,0.9464946791281743,0.3177493995671394,0.7789985574412174,0.980012129241703,0.7860249807526254,1.1124724405772788,1.396810805033477,1.3780767034048935,1.3340067546369534,0.6278706532987194,0.9449314437843606,1.3826354325940593,1.4843910735523163,1.340837331640099,0.13606058473467075,0.13998238214385228,1.4398659268523664,1.476808730442611,1.2824648999570465,1.2732132202831352,0.5605414709745453,0.40717089209468704,0.8139385626018291,1.2305247511233361,0.599377077908811,0.8625248707433184,1.1263533493780815,1.3803744910212215,0.22904574003836514,0.24271571984659884,0.6590604005079732,0.5618931928280263,1.1958580611410896,0.8009679102322145,0.1798281981274697,1.1228733289503985,0.6284390020837687,0.1623664099240772,0.9926982197044567,1.3418548259404854,1.0134554516723853,0.7042273638088932,0.029107588332951295,1.413082943841477,1.0614060957254516,1.0262898385048314,0.6450560261505205,0.3887089500361117,0.41295935732011674,0.6226751555374421,0.8323214999970519,1.4553100223678241,0.38441978341045646,1.29384922008479,0.21414397580050964,0.7585268983773394,0.8086454894371071,1.4930584352096041,0.8931123713677709,0.8485658890448117,1.2080798897627478,0.81487720014269,0.10500410599067522,1.0018739884972403,0.6791586920038155,1.4556183944451808,0.0357618698998759,1.0232432405591576,0.4939806685061139,0.760049092084236,1.158402783454261,0.3293128391470707,1.067438006867234,0.18345408726476226,0.4633515671814459,0.3943167909799786,0.5654896589241702,1.3998572976114554,1.4154496157640983,0.18174647765719387,1.0801572641277621,0.33696863686229894,0.11763410256022927,1.12020423258628,0.9893135081184126,0.3454301038701228,1.0295078198693934,0.15077662418744292,1.341165705010949,0.067339453035281,0.6804921535593242,1.1522324782504012,1.2800651697815706,0.17895946434536353,1.0196869055174558,0.7076353567540083,0.6758518447148636,0.993730680057956,0.8536134608915085,0.5251160299931588,0.1635740862459399,0.7465011582743124,0.38754533034974914,1.0605083562453141,0.4937190480920108,0.3628176514496984,0.23794567424342417,0.49128462801584843,1.2706381418907877,1.0289845274980345,0.1432359103399164,0.4885899119012856,0.7573070697509348,0.8398805538634451,0.2558755520892831,0.587316000870034,0.13980731608490599,1.1864415265131005,1.044923964104468,0.3253999254250178,0.6085751385284734,0.42453848677489375,0.9776539550143937,1.226967189036764,0.28082097895538344,0.6279696329900338,0.6067341397273247,0.4516127287431504,1.074031703708322,1.04560035584981,0.1835755313062684,1.1909304119102742,0.9743828147123017,1.2562664418973974,1.4054236214170375,0.5489302179003293,0.5639196586296471,0.225917689590088,0.44653104395102977,0.80212180515779,1.3413772096254488,0.825906881042356,1.4694576214722854,0.896346937952018,1.0676943496408349,0.44984715504541334,0.22581178679470587,0.7278690304815856,1.4304535355418497,0.7855083266003082,1.1971193017688349,0.6007208966284264,0.23746481569360928,0.2530362619243107,1.1963477419426627,0.3663482444490412,0.6173010747383806,1.4275328303333723,0.5116019527721993,0.11925015477414669,1.4051725529364933,0.6666725646333014,0.24851578515153416,0.19909771773716867,0.22716714044883407,0.9997440128019052,0.6675013589326759,0.2579839060560607,1.139576871475118,1.08224068199084,1.2455298319701713,1.1075935838373334,0.3499583471603505,0.7557409460034515,0.942315219352963,0.4956677961479758,0.08863387333130379,0.13652094544168153,0.003038966501031193,1.073211017615043,0.38461647020714373,1.4086522739649379,1.045530719595852,0.896290494427987,1.387843259255003,0.7415594447996533,0.017409862426011946,0.6139161299643578,1.372367379028375,1.244715163061044,0.42540444538992295,0.06806300211309102,0.8809320312206155,1.340306012666673,0.3866677724235494,1.4248788667862828,0.3817099581886671,0.8917265990562223,1.0372393606533072,0.6146159637342925,0.19147008649128783,1.100928178606487,1.4104914394106438,0.91177748820034,0.8417269191331235,0.9413441010907482,0.7224185639498735,0.8892256123718971,0.05865978289177204,1.2655360376582987,0.12418508221835534,0.29044542630185394,1.4721387731395903,0.02966558271394093,1.017525246537599,1.39967512467015,0.7919875527300231,0.3013265734217197,0.09959024633080504,1.3696378526997333,0.5685757799225974,0.7752420756398581,0.8149455749922547,0.09715428297777123,0.42017413868837483,1.4662379297730899,0.2782096952638426,1.0540049618401504,0.018061092035067283,0.7677278845323015,1.0551581852659304,0.046635374097586335,0.5560233111228554,0.6909479653596378,1.0699413811020766,0.6363491306079199,0.61146043527296,0.32217070135915854,1.4362269739088038,0.6438737322124856,1.2391615602949102,0.8841300419958926,0.7308797165416749,0.008800813104596183,0.24720081373375813,0.35602338813226964,1.209701175632718,0.5623813878710686,0.0009480434312050812,1.395390841571094,1.254556127231162,1.3573613789120198,0.13579812059866214,0.4344066528793104,0.5414198487167485,1.2707891294981175,0.8932833621237886,0.6280439271363527,0.019255626767737122,0.8413367970409369,1.4383024412564,0.19539612289877173,0.028151396333003287,1.2947591902259044,0.18897486333367824,0.3288825742464168,0.255920250914625,0.23316805610969055,1.2056575182396618,0.21166614169292614,0.8268291800447332,1.4250720011655775,0.2800572613649263,0.5198913529291469,0.4491308839810512,1.1501104400281323,0.7374638198140475,1.1263808013492635,0.029888627175902405,0.8809570717430462,0.3585102686374855,1.383857211993439,0.8473503916332492,0.7902931375034021,1.333051156022471,0.4647146981339199,0.9755425373470795,1.0292368085048196,1.327969115732198,0.9578874787200387,0.17865387203465105,0.6428120789424676,0.3579585001719712,0.17132848898325426,0.04067803758969696,0.9642081937630141,1.07675981564673,0.6714664414899605,0.22019760186933784,1.259469694079439,1.383494163907471,0.41716456149179354,0.9115659298080222,0.9750283319745552,0.1230020985369345,1.4265990587106268,0.3940816353666239,1.4756807898427007,0.8853883024967453,1.4592452589940754,0.049917020501423104,0.707226625439439,1.2185625435742353,0.5376273665804439,0.1562659544574696,1.3950607236740733,0.7833788922244513,0.5296855181537917,0.5620117194019054,0.9791982328287996,1.288975006393549,1.2837620955391502,0.8521277094838784,0.46251953879641317,0.5180727230085151,0.8541633407779141,1.3088152794801564,1.094640911552646,0.32136786088560293,0.02910869805626004,1.3165881159714126,0.33378120733777583,0.7754929482675841,0.9676229593521339,1.0523955064141384,0.4250805502660742,1.0143463394910155,0.2822210912771009,0.9440920446892624,1.2327412356895855,0.9949491177533232,0.13020450876734763,1.1957485241438373,0.8397026705574155,1.2619134048444374,1.228651586915947,0.12528864648560906,1.2977849097800398,0.9087297674406846,1.2222878215064825,0.4968513122903571,0.6705430079873298,1.1211204704887676,0.6003353498638923,0.8497925637241721,0.43491643094339927,0.832123143664949,0.08797693310872773,0.5555319314217209,0.4115977425514877,1.1070878404783664,0.018960222643437163,1.487096546878012,0.44313076286061354,0.36903498326834716,0.5297592032916605,0.43481552050404204,0.5625158416000741,0.7153574346150728,0.08706460359241674,1.3260977798502696,1.2763757231248292,0.8091584864935967,1.0310358419241208,0.6641307756622787,1.494902190987654,1.415884076788544,0.23765988485131512,0.6695389498288393,1.360244534034106,0.05405856237304013,0.2672052949809426,1.1187724287644794,1.1751214416483309,0.16800973133530506,0.1971099251978407,0.1344115871068034,0.4572697808204447,1.2087670952656766,1.4852029862830403,0.048831247165712355,0.7210572897835856,0.10192714516617846,0.891563694379006,0.14896235783159045,0.14782782912712128,0.3074284362383688,0.033044123657712754,1.2533554197702224,1.3823757020118146,0.7113987907194582,0.22204192319388028,0.38575593761213595,1.4273540531439526,1.4951164288499972,1.3762926519699012,0.2789934531906503,1.2607040932349167,0.22659728777814925,0.14061930303468168,0.0560608008605919,1.2377339440269663,1.0790957505494698,0.032457975504348036,0.4316534437460344,0.9616850331268609,0.8189064089407555,0.36884024481624156,0.40148707222154867,0.294975954977168,1.4381013551013866,1.2883030565754632,0.32244832779215543,1.303837746180356,0.5457281766823523,0.41008505522526956,0.943130073385751,1.3322529231690903,0.47850705911570857,1.3186739548256214,0.714247480431611,0.35334031515572634,0.025807605078716767,0.9959405234396026,0.5693058128967254,0.8004772354276449,0.6796903926299853,1.0859670875496854,0.19596288534337802,0.6628815944364853,0.6718911755493517,1.020277266103765,1.0366998381954584,1.2299958813199239,0.6306177819558213,1.2796038845013988,0.47530893984049666,0.07973521292226543,0.2482165996747011,0.07741184090411002,0.880444560574484,0.10010158412197406,0.18232794448873807,0.5097482905643582,1.0808773515678975,1.0268425034264967,1.0964493887314724,0.9810106647767662,0.3387275695942294,0.5061862632613947,0.41936490531817083,1.3648360228676522,0.266287379721598,0.3043388516477381,0.6893385516326446,1.4740188399795284,0.9145920648020142,0.15380067701181366,1.3844868885341302,0.5873615728265863,1.3139965527597242,0.780096952216179,0.8747833145498582,0.045886008019081215,0.20765569383928134,0.46345877379907585,0.4063524550871268,0.607869357911223,0.11277008537753558,1.1299325320855502,0.8765783080051228,0.289364068866799,1.1556211111802772,1.2792486405328853,0.5432086113947823,0.8850409794428744,0.7265606663237552,1.3448865150317577,0.42705431273332556,1.0498842985973782,1.3801638363410074,1.0776670839081042,0.32464873763206187,0.841712453135804,1.3329356480384138,1.147770131698691,0.6041651324031854,0.9559323396608602,0.06016317665277526,0.4837419207515509,0.3175829343375876,1.1676427267775829,0.8369398424159897,0.21844257049105303,0.478599080670989,1.2039758225298063,0.2060960862590781,0.5232675543647334,1.1065960652736477,0.1904878762650099,0.6737343551513775,0.31641530864812945,0.5355860303750382,0.08604642829654152,0.36414130744541273,1.3804584290960005,0.050545879903414026,1.3091319367589758,1.1957127086600248,0.4408038457058943,0.6894586927015106,0.15192927442346427,0.2502298648012218,1.3971797635023084,1.4937547697106346,0.8623587583196152,0.7096942999083784,1.2804875673790064,0.33621777570905514,1.3546046422946536,1.4965782024434042,1.3265387163308322,1.3858113703096397,0.0026667874264891256,0.08239564407905614,0.9791959714793701,0.027868692870547385,0.9602396752604738,0.8307392948824497,1.4014814265032922,0.24334929208323963,0.8561548752178664,0.33620834022814305,1.022185635610763,1.4898881429358155,0.17962006375104178,0.00914038253436994,0.5124409731697049,0.052470376553700404,0.7911620177817,1.4256890734868288,1.1176026345798795,1.3706945086542657,1.1128623807217068,0.0545710600359543,0.06189061984574917,0.03165755537474352,1.1149977908920956,1.0719847402917853,0.047909854873806224,1.2916935800844493,0.43038954099525445,0.15965250651219637,0.13060512855412948,0.5819023553346442,0.2191420076706948,0.4763447293200497,1.2264737037078877,1.3424124586862534,0.6856068117776228,1.3953588115736522,0.34655762525334854,1.0994434328520366,0.0664046184166931,1.0107424817938446,1.4835815315386587,0.8321048151346941,0.2885317324521343,0.42342402037289306,0.9781210659538535,0.9936340016912274,0.40444228411611627,0.4970173950605069,1.023616070961992,1.2301567282588952,0.5468256340012496,0.036255602850826296,0.669105868729559,0.3603442960693778,1.062107750928912,0.7154673050791045,0.661364849156485,1.3895268045716087,0.2950539155157771,0.9112577603683563,0.9738097576088512,0.37797906934306336,0.7878273079108356,0.08588217952796068,0.1831601343209882,0.62282205930472,1.2458013920243438,1.241709193728286,1.339948740613762,0.9553617255374105,0.10883030132861443,0.6758222672835488,0.24283663057333116,0.5157822153474322,1.4743439620161434,0.24248298384914874,0.9383500821187862,1.42700983470027,0.8041290120154676,1.49797957969692,0.1295068504865744,0.9882946425366279,1.468223900373674,0.5325057832100333,0.397040407277997,0.21857865254117875,1.362672695851177,1.2997765401088772,1.3029730722802393,0.6277728896934358,0.5656560347637923,1.2583107200641563,1.2708007650663231,1.2391028049825528,0.5278760046382692,1.072347755974756,1.1457613621596447,0.9573243615328244,0.4767059884946388,0.897516498580645,1.0181019189614795,1.1077912510217645,0.030942464145056192,0.7144078621485744,1.2490622504999749,1.4685828352636054,0.6426609942312937,0.20898035191959646,0.25202618248084496,0.25476350045436186,0.06442148056864072,0.3156613171483177,0.07852239134292899,0.7766768686393233,0.9863722992349252,1.397159652703699,0.36606094217019075,1.384701356009961,1.0939880729484108,1.3591698214711325,0.6035365186476384,0.34110565026335926,0.5370620071807795,0.4125228896777982,0.15909400758067105,0.1757758105687654,1.22972727876355,0.4658992007340264,0.09174761988705799,0.3327390470288746,0.31918833756837706,0.48601538661401,1.4972717246611031,1.340419312685389,0.8937083069081084,0.07154980484986906,0.4263739505636442,1.107259320414724,0.536428444516917,0.05090113598005841,0.7647892920625193,0.2091047109111931,1.1701504692902458,0.1376017930570087,0.17261765770604348,0.7301103298593707,1.2209683939861073,0.7646915191398286,1.1971012739553544,0.10331260498781814,0.9055009855974347,0.07862502150096634,1.0068584706205912,1.055000838258695,0.4720067407814205,0.11076174699986863,0.9184479084799508,1.3311715462356983,0.6340717108471827,0.3465463989988277,0.5801324229393781,0.982831639877083,0.682715322540674,0.5112630891683236,0.5873796709246758,0.5542354964128076,1.0918258435728156,1.4611782473621029,1.193724034595182,1.1021255357276674,0.9345837227246412,0.8836466024504749,0.8477421443531739,1.4287807043432257,1.2474679219199238,0.17187665055238915,0.0786414201337472,1.110342827118043,0.6291957359275402,1.1167682764936468,1.3416158771271776,0.12047158026334237,0.2193044977286725,0.7768811838007901,0.9430079146321114,0.5635682547882689,0.4630171225914332,0.041331858514478625,1.0285360702838213,0.267373756647152,0.9797396586812879,0.011525095569406618,0.6220575529731264,1.335895017708689,0.36206368906452885,1.211394458937429,1.2651257906296176,1.1711146017788354,0.38986571090716043,0.9418406684767835,0.37409095047332175,0.054655333103136416,1.1029722793921195,0.5420935718757367,0.4143590561274293,0.9520520265220087,0.7686626671596718,1.1954960517356643,0.2546353213575739,0.09559174347918592,0.7377091599532812,1.3958277549267812,0.2733118853027077,0.3696600135159124,0.6557639973672682,1.273404393636067,0.054618078653941526,0.6721770464707713,0.5555815400937527,0.32060292515255717,0.1204618403732724,0.018605652937103867,0.2251509820979405,1.4633631285961906,1.0960711727750605,0.8251167576793681,0.9089760803269982,0.8705450867975408,1.1585611143765115,0.8106654491222225,0.6073462573009217,1.0227260165288337,0.12826653794497617,0.5173888600577492,0.13776420620625152,0.9866742298046258,0.834668440854648,0.3474970824766934,0.07600008961807492,0.9007581638412404,0.8597242454158556,1.1992181232027475,0.896846708336783,0.2791958559354477,0.3839937080932454,0.6775401054605129,1.4829431819482841,1.4123477559127686,0.5908319577180006,0.17777892302884268,0.6784782140143015,0.8695839363077481,0.7237893910548934,0.10601988186440764,0.3068609270381375,0.7033514140601521,0.602263082228269,0.19983938709833815,0.11526620580382002,1.36010221636558,1.4813348017536314,0.6283032432636135,0.42397588684031345,1.360294044422944,0.6891086094222569,0.03762067722885232,0.8661620537052959,0.4536349700731274,0.43747432199355346,1.353108331382805,0.023782218239933817,1.3011980411796713,0.6408927331236887,0.28168163763936277,0.8006356910072997,0.4579415742784857,0.22194724972736224,1.335979516027389,1.4614206964537646,1.453895792410901,0.7905501225322329,0.86119315577931,1.270413937605063,1.2083350173086274,0.531800432780487,0.22750908856155377,0.7481851385600513,0.7175330113605889,0.6227739338356507,1.231433898040114,0.5258428906142187,0.27204171673675404,1.040622894484839,0.3440435150135056,1.1932914017688143,0.2893534750535517,1.0011298842160314,0.4250566018956418,0.15110405986417585,1.4499761342534123,0.322418241834804,0.8090827629780624,0.32042290090182973,0.1945704299940479,0.7956004894046773,0.8270929666797737,0.7820933306885363,0.842806120775372,0.0658147242020174,0.6239587994072788,0.7600480483992279,0.9463458124219242,0.4792987864583808,1.4082639929877212,1.42425862749052,1.1292351519433705,0.17236036926570625,0.8054796293382128,0.8389266200331917,0.801369197685946,1.0610501684890892,0.19389542191464365,0.10618159058643506,0.14298949523771587,0.16706113973278347,0.998120230795238,0.08412041539222731,0.8927252154233978,0.10284553179263722,1.0395022652971955,0.3424137336029721,1.0986088392217008,0.17691285178359617,1.3172003939984134,0.7417672773531717,0.02537224467305027,1.0715552899160827,0.9164390186095308,0.8888293291007824,1.3537053442057232,0.6087904216636579,1.487542750609589,1.228299676654456,0.6016218679928665,0.49889756578672856,1.2736872558150922,0.81842068068286,0.29666035069630436,0.22459934179679064,0.7831952315230932,1.4667254194696637,0.8632537254127871,0.41810479808152085,1.0206779986400951,1.2867348494694428,0.875363741162855,0.7930136722591248,0.009571472999042319,0.09959702285118555,1.4748881120020232,0.8108463010485645,0.14974751812757725,0.2945639948134435,0.7866127470906679,0.9004641382078729,1.0442111005232209,1.1431613573682955,0.37651009390560986,1.477366729946078,1.2211135986145705,0.9586150750238602,1.2322414035674105,0.17651687036814168,0.5359553336448106,1.4027454320733648,0.22650845412269727,0.8132746212911829,1.2837941608340895,1.0612307814685797,0.885480397190066,1.0473376140534274,0.29388435606235946,1.4025416182382706,0.7606934759750416,1.1388653060372245,0.06886386712641174,1.0985876619152166,1.0039081133894834,1.3108449930962534,0.8841586229487475,0.007622428461597275,0.9218129835571118,0.7612637829578457,0.3738495714957116,0.14482571991000665,0.7287644015413804,1.4062866019515476,0.038176334682867685,0.25098643632440615,1.1305830875454375,0.9752385089688391,0.30396301625882877,0.6163610361738342,0.10654320220994956,1.0776902667948272,1.4590607984824844,0.6638722174986109,0.5035186259370819,0.005181380939808133,0.716848677395741,1.0877310044206836,0.5145656518939388,1.1205820253162455,0.9942118269455289,1.180508931717681,0.4901101688387169,0.7845142443572979,0.9888510761414695,0.2931100977737009,0.16900843874568094,0.09641038578117062,0.3286172797075716,0.612468923351281,1.344348382564757,1.0816957715054332,0.9326951004179336,1.3237378634727377,1.336291516702005,1.2361262051473607,0.3845677585271161,0.2783641666916636,1.3167156159839086,0.9555242244415239,0.18279028801749797,1.1083064234966267,1.2139975398331087,1.104093481580512,0.821371360689494,1.150236148836951,0.5803907331492975,0.6926259196907913,1.247473876232214,0.4618571470993045,0.16449133492007129,0.2778818427873553,0.7757090981475185,0.7390989115764981,0.7307046657532057,1.3023626973387965,0.5956811963905089,0.7458155308197081,0.20240693723195025,1.133581505936418,0.017544797636206144,1.2957433934714462,0.16816031422767141,1.416242192351335,0.9203473875162398,0.9160552291183407,0.37952352559990016,0.9695225626901729,0.5180453477624325,0.11606198131579437,0.27915601808655116,1.261412132282023,0.47084485841632695,0.4980047104655286,1.3199010220340168,0.4700870354685095,1.3324670215299683,1.0126313099425865,0.15867503747911482,1.4747740768755087,0.19529603832187326,0.20831678489403904,0.2600573310496197,0.6021866002979417,0.7122017531797067,1.2662313699019057,1.4800969656417915,0.7133967976254855,0.0458611141353385,0.08790091461579574,0.23848821425918376,0.8244409198362714,0.19942310840664956,1.4025284231709279,1.0812872251528272,0.2798566899172893,1.3421846270662323,0.22631641024519927,0.7181918952751614,0.09710999881055082,0.0663420616722567,1.47401033220002,0.8510717605231652,0.3436160252776998,0.0802953915101256,0.405957092219393,1.0361345667556692,0.5801815773972238,0.4817998413963472,1.1766291768424786,0.9594056218295595,0.6953262510160951,0.3994592657736763,0.003544395170193504,0.411294521649585,1.451184097220045,0.5004896620622467,0.7466353850287668,1.0353042285943483,1.4934415439797046,0.8613486766308254,0.6424217080336875,0.1750003421256422,0.5280274748494533,0.7143199589231791,1.222753521781761,1.4670289501975204,1.1479333436803825,1.3374121916840367,0.477505047050377,0.34482159029946724,0.9457845884584005,0.42884955970619815,0.1645689352941745,0.8396512872269146,1.017375731328244,1.1881765634734551,0.22120261792612084,1.1287722306640684,0.47034356144750583,1.050665179897182,0.40449288130870864,0.4606904654627175,0.06312778041340905,0.5762536402991121,0.04968067766469875,0.611402961040604,1.3785021609212873,0.9490431090197018,1.0730803437105787,0.38483176826795684,1.4477372876254084,0.9399854436117012,0.20891183988880935,0.015163363916843475,1.3711982318821228,1.3905179833535088,0.6797358806361424,0.8075776363140785,0.8846841958087655,0.017295319430537914,0.9494593026948466,1.4550179231436313,1.0611845511709768,1.3638422195478204,0.3384719497065367,0.056261050734196016,0.2888445598838914,0.45692613608081606,1.2691977033270343,1.4882720423379598,0.29498389123891944,1.333157500953205,1.205463612624315,0.449610550528896,1.1304678795147698,1.0945255939425058,1.4946279968986877,0.6080510804936834,1.087204515707832,0.4698531368905189,0.1930844180794985,1.098620236137638,1.0454072691441973,0.6860469503317831,0.37889825393556104,0.5557633895380564,1.3408951304881207,1.3100550381259926,1.0778225563412913,1.0276995503579966,0.24706956091074578,1.4032082935817973,0.652995945244543,0.38270281479440854,0.5756912869029114,1.1567582703193582,0.18476642495666973,0.09046355832169889,0.2404896285407504,0.7032034480515265,0.9158772486689912,0.9077995275974804,1.4316823130189011,0.14401332693835717,0.727613080562064,0.024465335633390983,1.3702648620253175,1.2161634615851247,1.4605149272152513,1.2203013424989084,0.0729043454444942,1.2206739724410367,0.8669516914105659,0.8581907043518258,1.0671107269077649,0.16152572877646154,0.7933008017283026,0.12158935642877472,1.1916114227694385,0.7676318476367952,0.3046599402855313,0.38034076309369375,1.4700174455484176,1.0035111145909132,0.4707621577832233,0.2277539573510809,1.3280305053973496,1.323637375906495,0.12269463718937224,1.030075848265899,0.7460478035093572,0.8495989468627336,1.081217033080826,0.4626984602747702,0.811889506425626,0.4496047615843604,0.7645126470765806,0.32702776505832043,0.5698754091558226,1.0344793009699966,0.31226055065652303,0.20238440339712832,1.4217509457780613,1.2123220697578392,1.0104982141494858,1.2594683383161662,0.8834073542700009,1.0298048729679685,1.0091195231566228,1.2299591900301496,0.6095053875341007,1.2567714990262984,0.5442285936609453,0.39965472768998944,0.400113181624872,1.043496807505873,0.414688834666717,1.429718638937464,0.6657792774728101,0.5074312302822794,0.28746858877915793,0.6957057538807683,1.4366520198300414,1.38474567136681,0.7882791094023001,1.0629778717777003,1.0979425512858993,0.6140809590197049,0.4972845383970104,1.3835198659221437,0.5526101711734169,0.1688229576821922,0.7649496076595795,0.7730611321689054,0.3547587644385152,0.2743901269545832,1.077691056605975,0.7980857226635886,0.6565887403665214,1.0855424250784371,0.39199290416822047,0.38695613857684336,0.880272804816058,0.12631975053074013,0.8626882876792473,0.43555200510767755,1.4209299968061468,0.32541522007432017,1.3381503351475545,0.7220738477174928,1.1036062446946446,0.12759043604869869,1.3659390874646968,0.04143308320578831,1.4668965929802202,0.4198526453658889,0.09802581923054976,0.23338144550136408,1.0202292926946996,0.9055234489438295,0.38229358378895306,0.7661358669070797,1.3435010834358876,1.4522899230729067,0.9216373220019312,1.2318148014409394,0.6392841801521848,0.02653486842017061,1.3678967016076964,0.3848233349327385,1.2705678994486465,0.04695360167469248,0.2517448570065323,1.3947661000647535,0.46848233998624433,0.7617473820792662,0.5167781627876045,0.4262246024611545,0.05494512855178779,0.3155796010408402,0.73783620179021,1.2747309621646978,0.2965705419844721,0.8700455578656798,0.45207370306982525,0.9024105451645601,0.37143603428012933,0.08340953622465008,0.9956454214003811,0.01775509836452477,1.0974090859800925,0.28366303066770976,0.8725218093224975,0.2901253731675827,0.550705556401379,1.4124556442290694,0.31519088772365345,0.5348180273670592,0.5944925062538515,0.0004782881596448463,0.9323164608811231,0.015614021946314338,0.7876155750507303,0.8468528120441967,1.4495550678701756,0.6051710940935595,0.9608063995049423,1.3708279439156574,1.0529391311415628,0.2579249300874663,0.8968947929494129,0.044048293906403746,1.1597133764552001,1.4822859289540673,0.6997652958327303,0.022691168272684192,0.969957896223006,0.8920518704415307,1.1178161136999725,0.14947813730919346,0.8264326137648876,0.7307867305335275,0.873916718706659,0.33896433490010375,0.38117875094398473,1.428235806044831,0.739694846656705,0.07958086020664334,0.30504518026170724,0.9141805535805689,0.3064010774553693,0.8901972162646776,0.2516193641348309,1.4721739023190792,0.5570617255997699,0.5928567716350708,0.2788740018231261,0.6950264673431605,0.9515055862774514,0.5831580081399357,0.9725444058918933,0.5197205067476723,0.5043859823510244,0.31078157687730434,0.6972879539284178,1.1357695047956116,0.5685665090371079,0.2770419910705543,0.9934414424545226,1.4114197770112902,1.276480069001364,0.1508745853598505,0.3647241931880181,0.011536708183823019,1.0011516702887868,1.215434639710219,0.19979672613460103,1.0981429115177568,0.17673111622433235,1.4377769971718461,0.4633721723898016,0.7605912701950361,1.3656817852000052,0.3426478923339427,0.03973259520196831,1.1387685992335976,0.8528300590023707,0.5365620411293232,0.20423203828948272,0.9591187098148601,0.07485240429949175,1.4110878602547139,0.647174445460182,0.06071897732254139,1.2398589487856462,0.5886233339931055,1.0704756391972272,0.9573502112305369,0.14799010979334304,0.058807352058240225,1.0583269166668405,1.2332138179199406,1.0818183875970742,0.44068083790749035,0.0032811459942133636,0.6071178762514733,1.1926780264404808,1.0341111981087208,0.08039481059176734,0.17120548475385505,0.9809148951370281,0.6288416698672499,0.086286921838368,1.4977666254587731,0.13190813004208868,1.2153760253686143,0.9103490390360351,0.5450873411592299,1.163813962037411,0.8201727848849018,0.29550077434165206,0.6921945006543085,1.2153035371490466,0.9860103892871286,0.11233341552890719,1.1848987473310988,0.6025836319589131,0.25881766084427316,1.1756565266478933,0.2396152482833379,0.9268454887145854,0.6194003442077537,0.8267212635126205,1.2101516136662047,1.0281247954952024,0.760936200982708,0.37014530258514994,0.0104727939516297,0.3896336004462767,0.35059358014635916,0.05961620478377894,0.2471078772713,0.04957188315539879,0.3937962460321209,0.8121729998392764,1.4385135292498807,0.6497091905868029,0.8419332749794877,1.4706350884908808,0.30649328869842457,1.219219965396631,1.3848309448020018,1.3505990389449658,1.0223537180375428,0.5144676992358789,0.17532491700982844,0.5138251445608459,1.424003277218552,0.18322099620001725,0.06189835897601631,0.06603434195144631,0.5444884237455554,0.5225020164837753,1.0341125875048882,0.19451540281804142,1.0945221912245984,0.07611548022695125,0.028007063794911413,0.38778688446105886,0.18377025515128015,0.5726672806671428,0.8141217429163736,1.3067303706399858,0.5940629894941392,0.07413946172303643,0.43457031407111285,0.6022106574585829,0.8330768753665891,0.40805491935104854,0.4961136177575419,1.0496350104495122,0.5176267457831647,1.4215399131453506,0.48079485425077295,1.4300158409794597,1.0436018837081171,1.0853043131907971,1.0466213800459085,1.3298291518528695,0.26401993444071886,1.328082492306848,0.0958579390933435,0.9878032973101689,0.8682239889392713,1.3495324081991036,0.6868908486515606,0.997725620023605,0.25374209785189733,0.7735150182351751,0.5174784710578793,1.1478298447546411,0.08594894383209556,1.027824950134475,1.0617326862434693,0.21635056692831794,0.8649762362028137,1.1495760253809584,0.47826198544947884,0.739925650332724,0.5139232386312169,0.20938556276170506,0.6340551190801791,1.1079524883548006,0.5322422920047627,0.07509269639149524,1.0258792218555102,1.4875314433563502,0.7588748727007399,1.1225875717099068,0.9320087081189408,0.7553923733612671,0.11234629287029191,0.010838509144864228,1.0049432353521706,0.5705569982443681,1.165886756259377,0.5754788101345054,0.8015211393301677,1.0632655643764357,0.10931888961583563,0.9249754158515474,1.41179021370841,1.208556312300445,0.05212249869079,1.19478514045271,0.8554564109569125,1.260084503773918,0.4299711417941826,1.1548722954678325,0.624995140694187,1.0382840228262913,1.4467466317904645,0.7223530937442445,0.883291341068342,0.6110203666312519,0.13717198935465652,0.33405906671585694,0.7329103257015173,1.3242157524548288,1.1614925962927096,1.2237106074738948,0.14843370041076465,0.21520098604673954,0.06752547122700414,1.1303441281204165,0.4862463623021916,1.3389318441933358,0.7283700803759372,0.14263215301905252,0.9755210401981359,1.4314062979641595,1.4974729633582946,0.8282665018077138,1.2483181086304045,0.4140795522003705,1.0382645952129859,1.087771525576743,0.6655836951254102,1.4220165278280428,1.07618770288371,0.39270772381179836,0.6912022756673724,0.09769425882602334,0.08387114069598656,0.9296677606928274,1.1297231076537892,1.3736138840566476,1.4135280988202845,0.06803981473847648,0.11401203602089155,0.976086555870797,0.9770571105878328,1.1020410207533078,1.3955471476658998,0.13117158658951045,1.0133195702849676,0.20304444630295654,1.1330617880322778,0.2707320931806097,0.5772405378844723,1.267106510188985,0.4780331471860954,0.1073330745236164,0.8775102837134876,0.3321095049767001,1.4466659842017142,0.731945968746285,0.03166710023676478,0.8702768898126056,0.3630950403780129,0.058660586414391314,1.3521973346992127,0.9249769486670413,0.7342331459046194,0.3750733648602917,1.1026859542194636,0.397194549317769,0.7194656327970976,0.5749613556238573,0.01876361193914078,0.09935347646148907,1.4390505359238714,0.9156054305408039,0.19230231576464518,0.14028432629003662,1.0839190984093836,0.3807961713238068,1.4869628861131332,0.06998837075843489,0.2840554166134778,0.5817258906923615,0.8382943169310618,0.2149371466211234,0.6048752793142451,0.7264624760129288,1.0271650156019385,1.2336696010240764,1.3491735613437903,1.2279280328679953,0.31053512486239543,0.8227328212020432,0.3327495880394893,1.2977044655396666,0.049525151921795685,1.2109230302248644,0.26596005923388605,0.44997186987332555,0.2322400166108965,1.4518232725757714,0.5007900152777782,1.084199022393316,0.7015776317125937,0.5643517332867187,0.2986112218402325,0.4136848036504425,0.42462164736539076,1.3921107445931196,0.14018452715466906,1.173589355522784,0.06290263388943462,1.2244117880440557,0.7395575770114324,1.4093158746919285,0.2871870811324381,0.1789733380648666,0.09124222063637333,0.2545172085234525,1.1627531517998428,0.6251102882482926,0.38581902674900664,0.4792196660428377,0.8046071759738442,0.9860960570949471,0.5334269525758217,0.6667053901115363,0.08903342103109796,0.2902924439151252,0.8221328314064948,1.1510765921713013,0.3443310423355914,1.2754545396898094,0.594874647065067,1.3597402915384817,0.791575547534426,0.112322268695774,0.3717652993170686,0.6591386807410262,1.1708751744488413,0.19895619831840877,0.017355069891262898,0.2931526757782843,0.6316817996824237,0.9351444819899101,0.0308648770358963,0.7805499406969675,1.080226156820402,0.8588147941584213,1.1184811604611145,0.5380918444994861,0.28882150255205574,0.569746688342027,0.6897724793670788,0.8180150190960633,1.055651925476209,1.4221962888151924,0.7305654561854555,1.4242283650801757,0.10207972603723564,0.5771430134615313,1.197442452223588,0.18026439895130592,1.4773393799775985,0.498638693147646,0.04167218622005253,0.8686066003072961,0.35761757234697494,1.276284510203679,1.3192838441823387,0.584328186554904,1.1102346229001314,0.48435956117913787,1.1634168230952118,0.7510574681563199,0.8051873356197377,0.04156038858110911,1.188971754295847,0.9003958532703521,1.333558920624871,0.2995081965815558,1.4841200515332924,1.3640672478394398,0.061903784048047084,0.809508652765228,0.12457611823481685,0.4743864432210746,1.271246871281664,1.0377115816327456,0.34468394112536627,0.9191682903368651,0.44042094633220985,0.2829776728386166,1.2053160707264876,1.2490972215258827,1.384932040123442,0.7826918270039415,0.6490988237462231,1.140080970314049,1.400995370824292,0.9943070039748416,0.8212737789022161,0.29810083686664096,0.20379965487146928,0.6293312860799278,0.6112204023248258,0.09969330689623196,0.6739226609927034,0.6977889899268268,0.31372936439758226,1.4260023156040085,0.44588849574452594,1.1834045969979083,0.36437811323451086,0.8220783894608965,0.03180284861036309,1.0525025217483224,0.686301922333107,0.14542460650082023,1.1749336381961821,0.15511598343478045,0.8871615530042833,0.8883077610393084,0.3604915945022854,0.5710076757630345,0.8678058138655826,1.4065295565783573,0.8356200746159776,0.6082338681724269,0.8397469090677456,1.198696188114086,0.692464731223781,0.8351909548892329,0.10897016069083226,1.3344602471392615,0.383921444304922,0.48548124436908663,0.37089897158991986,1.4333224156587603,1.2737408850548888,0.43441309775616377,0.2872894536802455,0.7980446734873857,0.046776360769770875,0.5710411450699102,1.22500314159759,1.1225746188050731,0.36361356433373665,1.0517931357490602,1.0954934751244383,0.22228078747110186,0.838054994979473,0.6296652005503702,0.7993805534503164,1.198141509670743,0.31139193616674354,1.2011015951190902,0.09461443475572129,0.8347295534488657,0.7521484102838962,0.1332711709510056,0.5387302941855091,0.8940535549814088,0.6060210069327707,1.2242558843999833,1.2049671667986077,0.9433565824312531,0.8772775621092384,1.4971306670530695,0.47471503465168896,0.729346037970697,0.9768110991270524,0.3634052950453328,0.23201783875149307,1.0052641514444436,1.2156723933487914,0.1275693677261946,0.17711553778404288,0.3380863826045598,0.8469662125165311,0.5924391874019671,0.017253355925883784,0.9356921520188222,0.42334696141331774,0.13806023020004538,0.6878371966458283,0.3322000603179975,1.390932006987364,1.0594631380603596,0.3591180236010181,0.0618473616801376,1.2229208170926043,0.5506863162840843,1.4955687054020055,0.6139484258141086,0.7594096153218666,0.941653099016992,0.7740846319704473,0.5015983723567672,0.40990778230476443,1.3726328311163547,0.2566068631469761,1.0723096557777119,0.08788068492040524,0.28331067342276606,1.2482861310826465,0.7044708572020097,0.9024853747274945,0.2863314216120845,0.35760452594507713,1.415168760072626,0.053462915583592396,0.2715572442320836,0.8773442030063792,1.2825024966301182,0.045954466870704924,0.2716356033360569,0.600388805700474,0.11108716868286445,0.1826369535419911,0.9327544030947537,0.8819170793663003,1.3030574583984846,0.32465522893895804,0.13541592597938518,0.7003188547520065,1.2110458536658435,0.24642623725202883,1.3774555070675065,0.20550202720204974,0.9159062080927904,0.7671025220900752,0.08914128870868554,0.7111943353787452,0.3250747966044098,0.5519762566497716,0.778074806484562,1.3542416176176142,0.060033712844104914,1.195758558647077,0.8529621768816784,0.7332023742893399,1.147050331361102,0.03461370392025509,0.3251469752862963,0.8090960420711426,1.3990269905131014,0.29419542444009594,0.6604810622866867,0.0658307292296203,1.303355401140751,0.3681928571182282,0.7027060424640443,0.7390994002985352,0.15605360243326583,0.07848058795067153,1.3357542630476493,0.8018126142200102,1.0558600532184081,0.5855530526852983,1.4446160742196819,1.4310911790159229,0.8587269005933955,0.11195474018596507,0.6494605180199828,0.9223523030686434,0.12076060169770192,1.3987244276609396,0.49908214700135206,0.8376964478887292,1.0240652977809308,1.2080832521184175,1.0563348300170996,0.6680329546519415,0.3397350086528084,1.1571867396438413,0.3263883035251087,0.7550887072245458,0.9665539203755475,0.47434687048679813,0.95775019936358,0.2052369288047119,1.117537373036233,0.009160109219456536,0.49379565486862387,0.09121947543669079,0.1721101348327902,0.3667277517625712,0.6552430933190406,1.0406092755463587,1.363266930171362,1.0525854132183596,0.39233012281444074,0.9412601750475468,0.5007391826027048,0.6816941559535944,1.1867916662690567,0.9395548183233704,0.9052742250521099,1.4039264025958733,0.8590621139739563,0.3146872408751818,0.313887059204132,0.46407288512906864,0.5659593512035699,0.7549562212492353,0.3340298897247931,1.0189321498038515,1.293733805507193,0.3042852250908991,0.3574631077707088,0.6944919503696574,0.5976393488025314,0.40608541632003575,0.6279840703677065,0.7785281636254533,1.0236512245861253,0.4206465629455807,0.08631826339242604,0.3532720895162479,0.7568677292886151,1.4456787434781464,1.0898166178193782,0.8250988778190371,1.471048436830798,0.45789757390228697,0.11390760513490994,0.04902274981469035,1.0396453535105885,1.2343398696688321,1.0626408703403958,1.3599468881346088,0.2723124039159547,0.6265600743466075,0.0031871174822853954,0.24526265706591416,0.7532727644500992,1.1110069370246891,0.3006857996731373,0.17051251828993919,0.5957253733405592,0.5601776893920773,1.2891385232913513,0.44927945216245035,1.483946984131513,0.8523746783274336,0.6184607592257156,0.33680384143376596,0.009934887265703907,1.1267905259365159,0.43360990828285323,1.2183972513655972,1.05567380435309,1.4345103323886814,1.0763541504643153,0.6143743078195829,0.5135678767772942,0.6155237260841784,0.6496344658860446,0.907897444554912,1.0589515636591988,0.6157841968987592,0.8598242147429889,0.20114318495538502,1.3950959387304813,1.1656733417751834,0.7188046898960019,0.605110011549794,0.6633378654995934,0.716029409499831,1.0399634962538846,0.8558497186579114,0.34141641155905944,1.3626507364010378,0.23928819706861537,0.5892321056889562,1.0196176237615453,0.6884722120964603,0.926520013599724,0.14254526100010145,0.8992989286857216,1.000851816009986,1.2258983662021041,0.4175353669730943,0.8695425735161876,0.03130077554226163,0.6109374796969962,1.0548593174344525,1.062158187515878,0.34422040556814226,0.9976114123294326,0.4228600820100449,1.0103893800751598,0.9587185387020636,1.4469000308787237,1.1451309999344608,1.2050883213025951,0.8231850459746329,0.8055335541677042,0.41786927576576616,0.5216373065765603,1.1397007874804281,0.4052498189973408,0.30333097886701055,0.43859330878176633,1.307596096760816,0.6483356084714855,0.38431554221643033,1.3252477035022756,1.495528247158517,0.06028444413180861,0.495006966587072,1.3698006689100675,0.35367679215402287,0.19719664122815395,0.1930242024463471,0.2677689976733969,0.262227939123543,0.6068362972843131,1.3983805709265877,1.282276255021698,0.03317394657723732,0.512621087601576,1.1733669615462463,1.4916034198013226,0.8573379472591887,0.849239584935769,1.4455216309021954,0.8546604543609071,1.0955232429318122,0.8080856800064129,0.9968181041091696,0.48635405974151,0.36699193044113776,1.2211782041243526,0.6102325222936442,1.122620359407683,0.3560301762659856,1.0827575500865232,0.7661236447797127,1.126362298624038,1.1828997656104014,1.2407307870559796,0.1718501888289562,0.6831081209040832,1.1763570937728902,0.5770978974367965,0.8254150753022835,0.17583164940293056,0.17273100579720085,1.2912895224161656,0.932377537765235,0.8273159979135871,0.6492227015819858,1.2768442715876933,0.3119450869040632,0.7609585692442522,0.18846728582533,0.39445120493646846,0.2823407342780998,1.4686204050596006,0.9270213443832336,0.7588435246361611,0.3802957878716,0.43375235727605704,0.14532015564477352,0.9278445153871466,0.9034926468416102,1.2296212150107524,0.8373912657991409,0.5996283729685037,0.5954650587829298,0.4802663849363391,1.3789654123779846,0.9027945828473557,1.4115893345479513,1.3944353719118525,0.5900677512165763,0.8920822618849885,0.05432564170523713,0.15447456686992583,0.8199497360198502,0.5129643246067797,0.7937834813384761,0.8275246885899423,0.37432544858722827,0.7764078437625457,0.15032408880568143,0.4946949150034082,1.295834986110204,0.7142068106398971,0.1676932724064551,0.6977968059301825,0.6644719978122484,1.1257452353197175,1.3175718623247057,0.2004405425737676,0.5299243766710297,0.7239650617719324,1.0403843671992252,1.1934218522269582,0.06908190753255883,0.735581361611489,1.1967145447755043,0.2878057966990021,0.55915020878464,0.3967275274886102,1.130499581601564,0.3526167284120524,1.3867246064408725,1.1002064085385983,1.4965717507834202,0.561638654054925,0.5688731673450258,0.6769359948340519,0.5707275444032764,0.48569010177162386,1.3561003634264435,1.4511562947314738,0.8022001092800812,1.1042825332064146,1.1198841169194569,0.17015744340719302,0.4715560578736194,0.2301555633673416,1.0425882014891195,0.543062285211511,0.5570948271583951,1.0005897781169095,0.23316385562882574,1.4217054127775586,1.4989488087312053,0.03823384369570071,1.0352761982146175,0.6226034761966162,0.4855806723911866,0.692171225148448,1.418808895139551,0.12258613906641258,0.5501009070129611,1.0120768427501234,1.0104285516572062,1.1640437538214345,0.307978378089709,0.32984833668845515,1.4157248437715895,0.38382949315543574,0.8811198042575656,0.7186239592731812,0.3121424594872056,0.307483531966577,1.4460429108369275,0.10949634265604791,0.7862028155037859,0.6286588442988512,1.0956279077078528,0.6192587992011183,1.1686413479584417,1.2261988968359985,1.3839407712974894,0.24277627484745035,0.6301852920874835,0.16441186368639898,0.6400775009459876,0.6281690315556423,0.06202822998684515,1.1038317726946385,0.6743088340982496,1.411266447052054,0.6978109024499689,1.3405971833688317,1.4297148487637814,0.6475578178004703,1.1835790535830684,0.9207652735082659,1.4163154883412332,1.42242832702246,0.2951139827050383,1.2675433036211516,0.43018844825930774,0.10723450470129287,0.6494193287197072,0.2671994047964944,1.2939669918845627,0.9953359182308859,1.0134599320625135,1.421434477126881,1.4208516367025736,1.4774868113181054,0.06097385244546821,1.1712830073012634,0.3950482400924819,0.2574602014961949,0.08192319465840009,0.3180507174436566,0.7621534552748209,0.39246651934280424,0.750686045643741,0.1411730216200256,0.15773859276243324,0.5919432379589731,1.013307734243457,0.4913558426229513,1.144561834474483,0.16595051023056367,0.662430776827356,0.009556145812243066,1.4388897991546363,0.02287697836056002,0.5205029306194761,1.1785000630119828,0.5679447957997363,0.961215133907778,0.8560940543531033,1.4937583594272017,0.13145688805593664,0.9232015893022097,1.1244444317710394,1.3195112464484016,0.9358370261817418,0.10915522109472803,0.7952377184694528,0.19155206249044882,0.8528780906540603,0.0619484210030708,0.4587632632030193,0.9800217327455678,0.6260897607579058,0.8787607653356178,0.16038052382667073,1.333329250856649,0.7282202083907761,1.4885393416097168,0.6110654477419719,0.20986788905515724,0.26210659047639856,0.18959909510531192,0.5483256509567592,0.05683432745781819,1.1945935696491796,0.39482902269164794,0.9297091268371278,1.1313892168599082,0.6588214458625923,0.19757266841103632,1.4651175996149393,1.4979585123250898,1.4891855381237524,1.4714289654931194,0.939022775136108,0.5237719137457256,1.0784317211498564,0.16566197530728538,0.7087667132227149,0.8511213368475063,0.83282620663161,1.4780762877276508,0.03258849939456926,0.041258078762461126,0.08398646085885453,1.2407467926769953,0.43244186621647696,0.4425809366916252,0.8284892621204214,1.1157098148895594,1.3620861139175156,0.07282818528768409,0.31548904428630065,1.1650718090062087,0.36686489320120536,1.4773153718117662,0.41885313808168667,0.39271971353861873,1.2760751007743325,0.01022515134805796,0.9590252067342553,0.19763974564811826,1.471063361901853,0.6864971595767406,0.9638580854349337,0.7469171482948191,0.5425310815415857,0.23544937883025174,0.7403070940178962,1.3522148511220276,0.3786192749939124,0.5724117408094664,1.1717076622084075,0.32607611981327683,0.6364659057413449,0.9746469859983116,0.5312878946613616,0.1617940446269761,1.2551609478712187,1.1329595809848707,0.8788277519281544,0.15242970378039955,0.903884040925706,0.11076436283834712,1.2469525060726663,0.7749597993505419,0.9935829629980406,0.614124212203214,1.1150028501340363,0.19068512676513244,0.17008951190909116,0.4042668620677827,1.4321148472468224,1.2748390291687173,1.2527715156484012,0.16871935158820045,0.5518724776212928,1.0243295822807164,0.3389772912992,0.8320865899728607,1.4193861023356245,1.0715134950859972,0.47073742793089085,0.9341293818572152,0.05648133282543766,1.030024068718741,1.4880269085408548,0.9565836916543213,0.2621240527616119,0.1786042259246144,1.1784311859851486,0.596916760605853,0.49658553555385293,0.4742384963477368,0.9040566584548304,1.452846008383396,0.9473296633276134,0.665139333502592,0.2867313766171945,0.9134626837012463,1.3451786469371747,0.06799989719572558,1.0427743702678225,0.08604433591453836,0.8472193267720511,0.32111067479239214,0.8879153235739983,0.4552243250711973,0.7794680434443155,1.456085859796774,0.6740494138428819,0.5504562653045229,0.2595473801943433,0.8764167973458946,0.5049266711390652,1.2369130750583759,0.7971517814776461,1.3063916680192673,1.3226299897038083,0.4861009934278714,0.4911932816117228,1.1330641151099126,1.4943530214386682,0.3596020894378854,1.0702725675264313,1.2553107866371311,0.9219974230836717,0.43384378871996687,0.03968988187984973,0.688326190242798,0.5160143505977224,0.4150011983087938,0.2834222860577863,0.9116595051063462,0.6278280925726551,0.19080579320965763,0.2995769529500738,0.2946552078185221,1.1637393271682859,1.3914050944416383,1.3493971111382024,1.3230308435818965,0.09155290246887632,0.978181105461724,0.36221979790092707,1.1362973603783755,1.2215900666597745,0.9807380832938448,1.1263337805131974,0.3922864576050748,0.2658104179615405,0.5568738010507075,0.8609865946547286,0.12418080497653977,0.6134233664138498,1.0041309653513586,0.7347829157579115,0.6172422792276153,1.356070388792762,0.093509284142887,1.4226192831053759,0.616545903783394,0.6677007938863802,0.33240351025545267,0.7273483046123475,0.4901098156889683,1.1575722249678964,0.32975274294231477,0.9550516292768818,0.5057627227440111,0.13582362915398816,0.25011466627902085,0.8586783351676482,1.2908235764098817,0.03774855784788761,0.21869783168513773,1.2412631667708114,1.3793142418624977,1.2769248570573777,0.48968849165356354,0.502324445765941,0.7913539669358319,0.4217066018452588,0.7626345450233658,1.0677770871995513,0.5287531274448954,1.0119255208033338,0.25222391578179365,1.4858309900892364,1.2276467904543993,1.4832487413301145,1.1623282666307713,0.4130107641154611,0.4821953327174166,1.0356711343669684,1.1816988200265113,1.3000854548982863,0.046903389568038745,0.285562315984616,0.8573669535074124,1.3748763758603122,0.20748067711450563,0.48890583566908574,0.2679818753830079,0.9686421260486178,0.6194731187424701,1.1263243730041097,1.093498446221882,0.774099753330997,0.19752229357502593,1.41207095124013,0.642360328140173,0.7294709892876042,0.8498929078363431,0.2432967283045986,0.8335512691119338,0.2150033869009863,0.9848254361390334,0.1056585008981008,0.15869799791151235,0.013095384961309187,0.5333369354775555,0.48913453682612207,1.0486358567431637,0.866361693974687,1.094788818009926,0.7136282099919367,1.457259348888929,1.2567470913221086,0.6832731668274887,1.2866889283142864,0.002671666498111347,0.9178163833137255,0.4217666484437433,0.0017701522778827417,0.9788084218770509,0.33593411859840633,1.205849804577582,0.6496863813726774,0.4892992284526792,1.4456948153897757,1.0922688235619877,0.5877789849307167,1.1171396485952763,0.684923865847493,0.4702843578826203,0.6019120115400379,1.47869400334405,0.33514766752102326,1.1719769618535383,0.23246610373244608,0.29517602896730916,1.1385499527632503,1.2107983618872966,0.8561842430157494,0.7177467182018437,1.21814525861926,1.3282320115781268,0.9823164419631804,0.8116023577011997,1.2320860630508907,1.2849510038333587,1.377524909912729,0.008524389178049041,0.5009405919928822,0.7864862352684283,1.404757699298905,0.3704429143978973,1.1783767754906007,0.5024697452626415,0.5223995436559234,1.0502366099848537,0.3766136633394009,1.3542864076324101,1.1941503915994045,1.0353434474425844,0.14066771296441205,1.3695477616053684,0.1413239615817109,0.7794218324955609,1.0599881652608256,1.3255791975221474,1.0262396930744702,0.2590112913509572,0.9662064736645963,0.1297151680937031,1.1956275774211944,1.0295392942822754,0.5907304507005722,1.226439973235686,0.5209284832957842,1.2665408443596045,0.47314347198683665,1.1434990601913149,0.6051295217919852,0.7116824826929636,0.17210508626328724,0.695160482704312,1.3383613592790786,1.1702362341802628,1.1425496173615453,0.21022890563591468,1.463146808548982,1.433185061896332,0.37289532549168747,0.6923886376703492,0.4808819312526698,0.7517455817108073,1.1984169747115734,0.022817051844430447,0.051811825519113064,0.8045448194342559,1.3282411764150117,1.3066293200019614,0.7957699049797528,0.5033954997103206,1.0611544057553415,1.1469837206128672,1.3093429452987286,0.7069877764812373,1.0633521892326512,0.21052597219128744,0.07471641392721584,0.7166204477070675,0.9103368247375869,0.11348204280922414,0.6762467757629687,0.7755356490922544,1.3366404112754937,1.3930995201826861,0.10826939167138139,1.3232241232702522,1.1215634140671535,0.6066699223813485,1.0094341539087517,1.002987751091333,0.8569304800949067,0.5189312911710737,0.5321273419538528,0.18094593785681756,1.415181361207353,1.4316791860298985,0.2517249214374896,1.3885762316050079,0.8790677096396672,1.4130686082813047,0.8886015957785484,0.9207645446881751,0.021094477503206477,1.4940722309413563,1.183362912229066,0.5748213293238102,1.0999004349036001,0.42257309190141795,1.3680291218000824,0.6699286006214953,0.0030620222359900584,1.0748293986971507,1.4566932102151147,0.720127557355853,0.7326747507323366,0.7779824522885241,0.8708770143881726,0.9819934371267953,1.0663359704653324,0.5869920633135896,0.18994448520995094,0.9506927811812702,1.2924302530456258,0.9457590889746397,0.9107260840066167,0.33448440713209643,0.7720751147819305,1.1868255657625923,0.6535077926793461,1.0231391565464154,1.0520653146360681,0.41442416145569666,0.23238324600615262,1.4789264489631475,0.44864666189932184,0.06991583635023879,0.4179729444389542,1.4434295097080005,0.3181571851124523,1.4829482582997229,0.5455162581822686,0.32156059234844575,0.16689849974091248,0.755725959876357,1.4417209354781817,1.4461118954372147,0.9169524539800615,0.2437437829904806,0.9308885985428417,0.8558423849056542,1.3412373970699298,0.7317989831711789,1.4644192650861398,0.1305108936869228,0.16326612005365193,1.189887713686728,0.5823529953332087,0.3092633029418693,0.5308483824180426,0.10709323060929204,0.6449783770143729,1.466910629008526,1.300590216358518,1.1408505790740475,0.8835237115769669,0.5163710349064617,0.8595576042755739,0.44873406232109425,0.34954096038129906,0.3290965604207343,1.1901184559785207,1.123443602045403,0.22596170959363115,0.28592535141119046,0.26999239489430454,0.4174247125064487,0.21527176369175455,0.13038637619107846,1.0513191921663214,1.3863264078739579,0.7597613583570595,0.5472833562706714,0.6637709194351596,1.2153127019204222,0.18365031375553664,0.5690148848354065,0.40936010240153137,1.1887778159275744,0.7357165861916029,1.0138735457958274,0.708496518527022,1.3380577725609661,0.4610181517814681,0.7284394169200287,0.21054756148286458,1.4372536772379065,0.6612526198272922,0.48065522877281425,1.4705794039888416,0.11249573168951671,0.33951526912768015,0.5482598817530893,0.862899704678207,0.6520345838075109,0.6756680690573917,1.1185604759168917,1.2576423946778084,0.5488566564846886,0.7270856829576782,0.18419070130104853,0.2711466943776821,0.25473376464834085,0.10566119005171742,0.7116899630812086,0.5704388377505771,1.1445755819414842,1.3177392719082743,1.427291340717402,0.0607331123175297,0.6288912633592314,0.2996675421082798,1.4193751455893453,1.0101583134241583,0.5179992553389104,0.5552127199303913,0.2851912889943226,0.07893074151512197,0.6179544737362967,0.4043353316273847,0.0345204157518586,0.5771133195287923,1.0800607244741567,0.48832415978074817,0.3102896383936324,1.4880931640990074,0.13805380460408473,1.4373163586382272,0.9343449548722168,0.517358297614186,1.3135924863049337,1.106460693146306,1.4163981930120033,1.2783650851623838,0.35507252644014275,0.3645205341999199,0.8895856244778737,1.0845235121908445,0.6346836735518816,1.0650451272367556,0.5549744266046832,0.3713661935473806,0.8054792042821425,0.9595901627508177,1.369857489960328,0.2437251298402297,0.9005911893786412,0.6782300980458706,0.4452234579036588,0.09368369593505971,0.9614300105841641,0.5943659791321336,0.18781507892402305,0.6413091841757124,0.002429677134103081,0.3167259414654219,0.5942439298179825,0.18962281297637956,1.315636671642204,1.3419170134394758,0.5995342617819004,0.22183254132621605,1.234342991648674,1.1596870699375041,0.9712338716440082,1.02451256282824,0.09719973076742289,0.4848185695192845,0.17427405807483443,1.2042382194006511,0.08157314951908967,0.05443280113366772,0.9185965983967916,1.3924526825805688,1.4426488778396185,1.4125654683659195,0.3742420868212848,0.7616504706952278,1.4180606316536732,0.8476737128065781,1.393119927241309,1.2004588744308837,0.6337934956608555,0.06927001018215245,1.0043340460785375,0.09821565934029164,1.0135358043044058,0.5682637365677563,1.408481538801703,1.2694778480847524,1.39232218381609,0.32337648253991835,0.9671182902577984,0.8845688252149932,1.4697767596429676,0.9985273473735932,1.1926899647283302,0.594899972403184,1.4365655873463545,0.02210004736355231,0.3441014390395794,0.28113834308805813,0.4252712280994081,1.3588984850421502,1.4379734035665117,1.3654318147914346,0.41734735665548806,1.4811864991084633,0.5884064297281351,1.1019165385584377,0.40265077571488744,1.2464159642709032,0.6502841301251011,0.32661900597039567,1.0835165404256448,0.8057978100144463,0.48434578616827156,1.4228229162055224,0.8573338989324624,0.7365232823571314,1.1587481697175628,0.6454352300877155,0.8236215912355103,1.3459907080123488,1.2743411199772183,0.23342315342209552,1.4129805165094074,1.3753153247536967,1.2857739943233306,0.6145288379576233,0.19267060164476657,1.389417625414201,0.5703380136787215,0.8972528181143162,0.5355208151798418,1.3762436783311707,0.794626835777966,0.0481356880710046,0.2926039605337917,0.9028946537436762,0.0019417472228795973,0.7973993186556627,0.37707724242384305,1.0586469275230737,1.0870975467141972,0.33886184850629675,0.23339465145405563,0.6852501007584234,0.5184636147208276,1.3682677256312485,1.4560583727318601,1.3937360245211856,0.9567339668843489,0.9843872556336029,0.16880880700598472,0.6812064163982476,0.8708926364551262,0.031665577027989,0.4626627182803622,1.3327767719382535,0.3856419226896093,0.26689237374827846,0.47560654043457,0.17011567939949118,0.46687126937268214,0.705324017550599,0.3030667320885188,1.2787254930633603,0.49435657805372674,0.6975515857486855,1.2448330574540607,1.019426363570544,0.5587292776360786,0.7280237380540951,0.30908425738581785,0.7101612187654143,0.19969058742741563,0.5922024824250851,1.1133960244812653,1.2693188085422342,0.11837035461011469,0.5167877043184903,1.1320399151768619,1.1911152571139731,0.6215311581041654,0.9029656028593362,1.2298417682665508,0.37646481838130635,0.2916536648921336,1.0751879435002225,0.9902846019225433,0.4021717382671697,0.32472901945313387,1.1590614437919309,1.287129848819192,0.6486986880778696,0.27737333863154096,0.1406507657476173,0.5672796064133783,0.6039242728361864,0.481886496880688,0.2877289909359455,0.2833145918108487,0.08186757031031583,0.7946183140743405,1.0051898704743438,0.7888067921398153,0.4395504248110454,0.9815655535249191,0.09057076827652738,1.4617652550499136,1.3655837643487385,0.9363379702995057,1.4162890492754883,0.5523700619003653,0.5510741744277938,0.06387749221793981,1.1211996703781923,0.8259952813852198,0.40032030529240137,0.27527433955929154,0.6339822400289181,0.8556493246391832,1.3987606789418086,1.2128312176880982,1.1969761171864346,1.3079869785663825,0.46616004608424727,0.27837008498220506,1.4756860098862297,0.2378881220832228,0.6436213602240652,1.1408490893055452,1.1076334003288983,0.08057365896619378,0.7816667610824155,1.3859907538277967,0.38814762196365354,0.4828367754532023,0.7136907607671396,0.787374755895873,1.2744348910611292,0.7376302103379343,0.34332690420328704,1.081440831211562,0.30758818120598297,1.293636564611507,0.047275282681148445,0.07728214773186287,1.2242492916422039,0.986025829342769,0.824927084955644,0.6563946368260094,0.3563165113901179,0.7556451723647897,0.881810002764765,0.1370637452010809,0.9994170160345603,0.8385905014708681,0.5969668578525673,0.8574832549898355,1.347669755849699,0.7525569977988857,0.1820552982194356,1.0758490106381917,0.14448400115169208,0.4019946828285499,1.0454862800872748,1.382800455679107,0.4126958770269274,1.1674523491868432,1.3040633752353,1.0195280243311784,0.1790249874814281,1.1405196296015112,0.7132817562244288,0.5657010242030164,0.7131076271527466,0.8753798728337079,1.4617449989649238,1.3809509231945973,0.18926589962782697,0.9384495613167954,1.1100023321476802,1.092820322576095,0.7490490336267047,0.40267567586840003,0.39810653504581145,0.5017016005964631,1.0171757177464917,1.1577538175769913,1.0960235839679544,0.5689935323266427,0.873043025264889,1.262605194060416,1.3148160698124958,0.2914067083376058,1.415114906646757,0.0872875959644615,1.3526039972663069,0.8010543897918581,1.2915483943212915,0.9736900010164489,1.1779888366630429,0.933528296984679,0.9599909196184605,1.468277234530317,0.40240157889072364,0.277987733100932,0.14193045002206967,0.020685194857283096,1.1136936827947082,0.9540543691777165,1.2683482937440353,0.20334608548232042,0.24643301655270167,0.09017354531507288,0.2435494028766279,0.8303076365258125,0.2524046675387775,0.035065877872879125,0.9975413901262418,1.3707435921977642,0.06577137444886128,0.9643221148446716,0.8115379672763451,1.3842965287967228,0.585509440325974,1.1726343926822844,0.5569014525392069,0.10760466257729107,0.0388033283756703,0.04804293667248433,0.9128340034201106,0.26734472800593456,0.18616946854940225,0.8745651006093518,0.9730959168386011,1.0204690623000872,0.03787195687360412,0.35331064184604827,1.180188402918069,1.494907505576646,1.29290436766611,0.9150271124283327,0.1873180376259762,0.24750196821602355,1.227810491141708,1.0582286317533764,0.760338529015451,0.3288850867245314,0.9603497695603891,1.176200213703646,1.4975252960817098,0.7070078909532673,0.556075211694681,1.4704096053923326,1.2758486595804608,0.3594861593052544,0.12798616053689754,0.5631245544121934,0.32794252426194426,0.8992041325061373,0.707854577414905,0.03244265873602237,0.6235676380696461],"x":[51.747780786127876,47.73360617933522,79.89387284809148,30.0105414463408,34.17951674086465,24.797676682392467,37.75572327118374,65.90721681707315,59.03214295208906,62.6959208723282,96.89623322006393,8.718986061389987,29.16536953103862,94.22796082392202,33.8744080417798,76.24447754360743,65.95476561189041,36.20946341303174,67.9535375264169,61.98299022588603,65.67999705553706,21.984722579106275,68.86770327401405,1.1521996833091186,40.89582187366461,42.86158665112636,99.93310227020066,0.7688164305654444,72.81867563636678,56.413909670553764,56.70975195011724,5.022839846876559,75.54655880649871,62.451703113248215,27.466952061027616,55.41229545246035,4.690399930074529,50.93092536948012,33.89764011690559,96.51788902600971,36.26866453281895,91.39545441907447,43.80301900242437,69.05815924076538,20.43706904192364,9.64534069844174,32.46789599803328,4.566118151073351,33.56950651466288,1.5186954952798981,77.38915599530685,87.31892852555683,57.758706406162574,73.01711957226655,27.95114753862401,57.89089295043141,28.16713511893013,90.72030613245417,37.44929498878871,10.970592768569688,60.25003444225297,87.23748805456972,53.67613562949091,0.5380740461141786,82.86939065775273,14.724846282245762,53.16931729182659,80.66519863601084,7.571936219779818,42.29360061422148,12.821826658074775,0.6925305095629053,48.987778453479045,30.289284135347238,41.503026190191214,35.398671487099065,44.49495200204304,99.11211759361258,61.449513541979684,34.56877503293902,49.58680642903774,4.086827736114563,76.91364148173835,96.6573520199569,86.28517511767005,32.76940573642722,51.9795496764995,38.260024736339574,32.13893061297854,3.9641428860204164,84.48221221245468,48.102445192521046,55.14181116358669,33.121235974970745,33.91643524094996,41.7312335674471,62.631132576159146,77.3895730498652,73.65600538927569,1.7844468664081292,85.02594725321619,37.92306704136629,43.67708234733827,1.5834524303300568,48.100575490160125,93.29844465746908,51.45344444924673,14.112575244590985,90.77313157112403,72.76129850362608,68.96357551439213,12.972654760201042,28.14877360673672,99.97339957198092,29.27843821371746,22.5457445062899,92.60447152054113,41.809517754341044,40.71587303458688,18.782407673866143,8.111771958005198,85.37832414725047,0.13046928655340295,46.05150865874753,98.82135750786296,32.80295586762658,73.37608412120935,94.39674513779364,45.82755234637656,56.80977301372657,32.67293018841091,82.8394231066328,48.234750199963905,62.11801140579707,38.15067713870328,77.97936830165783,36.52343736546205,69.00833595287914,91.41908389531437,27.972318809763063,8.65277411767309,63.54863169648394,57.02844663684312,52.390462839574404,43.458756938703445,82.92347532068324,65.74022239790519,24.65161930889874,22.01888252394115,25.60165112901982,69.63318227011939,46.34453766423463,64.49535196267988,55.00844589606481,30.713874560652677,31.055810173787357,91.79218628032378,41.93801362421829,60.537962444709756,19.39857308525651,76.30125699493945,2.887526740194102,94.26996351595682,49.28761870906365,1.0300390967095008,70.16688109903527,72.82198595046421,77.31662462383856,15.652114112367144,71.17554119718007,59.15739247594014,40.16213355795537,87.55094666124201,82.65008054868206,21.491565767025943,18.2797328029323,12.340151015689793,21.5589683473299,5.103148451802553,5.351291698769556,89.9921821086248,8.278079120422266,29.025406406821997,65.92755636985203,19.470798527183796,72.82215017447274,16.999280391512794,70.72255954160056,61.65378727435707,62.162891223316976,62.23317348984546,22.745894759920205,44.31385259506172,57.88141610657163,6.714092064689914,23.991960740764483,41.07807958742744,13.98602989182428,52.315498218983514,76.96365866053662,81.46640601633773,20.07449256207874,0.23336668987478104,88.67979066687612,45.64265478421986,97.2947119026633,47.564671863363216,99.86019579734655,64.19294198907822,64.2898220290767,33.91838973999507,71.12652837414298,50.58720937198354,12.981784571060551,10.069945645342859,25.54110953379033,12.267731572467023,38.72442909930014,55.13153382386857,29.494983692046862,11.827546989695747,27.343694341428726,82.6585248051246,70.72625435044968,26.4206270782812,39.81042025120182,42.04989755428833,43.362250819642334,56.92602664151083,91.98836914667777,31.618966663572813,94.66994226219626,77.2572856700633,73.28207698803433,11.112751135718813,66.72372462928593,13.785158303681788,11.986966436325552,6.730750447747225,9.074049274671914,5.299225784977024,5.743784576504984,26.456271873314808,11.955300859810903,77.60639068741943,54.49113146330391,15.884185355798019,55.33455548709036,71.98676236541662,22.43487297748906,47.81880819131333,37.71328065966609,17.1486424141298,75.65927391193539,13.918496745317189,18.509136599220543,16.822642585010716,16.291168083979045,47.866635359788525,49.44914428662731,78.62974399685353,15.828353648128013,58.41327259763518,98.26625131426894,19.272123367653847,17.912275923236308,57.07455302244112,11.979253931041034,58.08819148773744,75.31361414598243,73.91488979514882,42.84648890571702,25.781188366527708,24.97450714105488,2.744953719784582,39.956291499851574,64.1071037066276,36.26977587081096,39.649703955174395,14.375416764728987,85.659158121083,51.85857727958355,28.997841117083446,39.372784896189884,73.54645041665371,82.4076700324054,34.4820509176633,1.870779858268845,64.13573150488479,0.32825956711167725,48.92976743345822,10.757940061205195,25.98177675810267,13.610429888786356,28.235688252698743,0.9611321895914293,21.2394771420399,54.13864781762674,71.7947847020837,47.54855324125587,0.02572342480019474,17.435534854146628,16.083972277753322,51.37585963419388,20.659486440146292,58.107118637441246,28.765272157600318,56.42285972385034,42.35824039061898,22.698913969974377,84.09737048083055,88.50446324918722,9.900397175142983,91.41764760409616,44.304132073000936,4.411968183219406,59.981207782145354,34.49058913669292,6.542572026758641,7.169012235388427,56.37428704333567,42.342976495770934,78.5850391338844,38.93195842935581,77.00806794857994,49.455434518918715,76.57249234557169,48.166033259505944,90.4259223361091,89.55817612795892,55.08978023655544,33.49839463443027,99.61372321779476,68.62769110499977,92.04758640094235,54.848136542098324,35.12744092540145,81.72514280521112,16.02039623471294,51.77011856402205,90.41216853780627,15.673695304664847,62.64132309618303,37.55536468335403,7.095707446786403,17.988035614792043,69.67590432073104,98.4179716183854,31.907139934234507,79.01244820388021,83.40410712277756,47.06750526331841,54.43733486537735,96.40317272171669,19.34354415862134,95.77771389445553,26.61840071084327,0.8075720508767037,35.148714132047445,20.712281528433817,23.88752397975289,95.35788468565349,64.97699177879518,26.608118127842705,60.76128768602014,91.64804237013621,33.627365137917785,22.26891247580728,21.323479519495493,65.06935349298669,41.86423565862243,57.44406003116488,57.4971360514266,37.11444359762709,23.994252818769212,4.944900661091145,88.02449698125517,45.82661379913496,86.43493497117905,12.394186102354865,31.633130612532145,35.20249554513535,41.717505182364704,91.58569320770215,30.543092022931905,67.3042791359384,64.48846747964078,93.83890436716861,50.661509861291165,0.8308668183759749,17.688864284927995,62.77150902676186,61.8894239646643,64.0627352640696,37.646426931919144,27.238150912941038,19.931785626568388,24.9531433898484,63.78300533446365,44.1618729719399,76.47404626603772,30.25011446233501,0.4339863713380909,63.303811314122335,2.84544992153154,18.810529742642213,73.94944199692873,47.05841416539995,56.80037131374057,21.279062770213375,10.34062139563523,63.22066338545055,36.996675063961995,96.76983051205377,26.449716720773097,7.440267185460458,95.33864682865355,33.70303126969603,33.85430830004024,92.85200269318999,73.90232694693573,73.21853197741953,88.2573241380425,87.15518668324084,3.096262837572461,30.09713440795331,8.643263538210755,26.032939707203628,90.43410165681071,64.7809859927389,15.721270936866683,10.209876611434366,16.587201969034602,62.27840996875565,73.4786295231604,28.496408912485105,95.23107397686216,65.68085267753271,97.08504758116632,3.557740396635678,70.44843191113573,21.289557278769056,83.11248647737017,61.2307756705973,48.90217015117844,83.50345498379782,76.71645182103111,91.5379562314406,10.104001870169132,68.65175201848338,75.52435517839953,96.5749406842963,47.804337820617135,97.9597529219428,73.19701141912796,73.94203843707878,66.72349634100752,40.78406171877704,28.611374396909596,71.72136605282444,44.81752238058443,40.95430708848274,47.887017987220105,4.67161164931299,57.363444504859004,8.433954019089828,81.03918055154462,3.0507367175368394,39.8804461341882,75.71994652630009,78.09745370298143,96.51952685636103,79.76331143996283,35.43696882188454,56.0998435953987,47.321324566500365,0.7753247950545883,57.22144211478408,11.177215966463905,22.87146397386387,1.497970385589631,75.65687054133402,34.57347134935153,84.69240152244421,24.503126909101603,97.51559201158338,67.12562326765425,46.30254470683559,83.0499077989358,76.95909837948406,1.9875482835852942,66.76212013165996,27.7222174299706,76.23437053445522,47.168232569222866,10.886883880703113,60.56178204473039,91.25791225461059,28.14517316656362,29.059575610639186,74.49432045301985,80.18352939037517,43.54689196438174,33.27896756291786,12.331622048655866,95.35599153623863,57.445340457915286,18.799078450607087,32.18406311370057,61.64004289580068,40.721705409931644,7.790662126646719,6.2126794712293325,28.04199015940131,35.361816456955,14.406504667144837,95.50993489513203,77.69413382311193,39.27387367292309,60.63031749290844,95.88227359578116,84.02846436118796,47.27377341128077,47.164468387300275,29.551205931518652,63.98252212371253,36.17249664936496,30.54267170934698,19.758109002447245,2.680279687569742,21.98753850409585,87.37869117821285,22.54019620533888,18.12344521190815,10.171123222241164,57.115946462370104,37.84918181400565,77.7526823941483,29.044447343083966,62.55908545760154,17.47612150776193,22.976272539414143,74.0150877187781,62.521409893061694,45.78457722691521,30.63966971158739,44.22773408214496,6.024915296953726,59.71094783887594,24.594408530457535,76.7826057294241,87.90511758512159,22.946581749971486,51.120432589429,36.7859010447856,2.197594414649029,13.674787942437327,35.446479184924506,70.00627737990175,48.2169936606575,60.162661159979905,59.65329274865421,75.74720914407808,81.46506699010833,10.825634422766994,9.034847068494011,18.106021320839304,73.07704168752363,22.447407187108436,57.082543516751336,7.217368511457211,69.02792449040105,94.31335504304612,40.419470110314016,48.84605709540555,6.818038743387622,15.643162388666386,45.85794247371845,8.84818766462333,61.75497046820669,64.25364133235448,32.556760791566255,81.62167701699556,85.32969983668507,89.886309811293,46.655118499921564,96.89752959394862,20.201928865184115,54.30408521207314,97.92883285574867,3.256948775974433,59.25656000919752,69.81281485148138,44.02446599685076,38.06336394556163,21.576754929480913,52.39886858710695,53.2786662089544,85.17849618343297,94.51412711771323,43.230367867701226,12.36118696877594,95.98622254665067,54.0727788228766,6.101914560254784,81.27806558026647,68.21397861518477,46.95608031404763,22.594029586896557,60.38216297037992,48.10580567084431,66.54679303476316,18.290487166281466,57.57277446373421,68.89008334973262,24.714095487375975,0.6712291277534921,11.800751247551034,17.107682991498052,83.47921342724976,74.76042964994656,6.981582223463922,7.535639388031024,85.72898176452134,37.40230192140493,21.555693339865122,40.80673979512457,35.82541372865249,65.68420241390243,5.410115905887814,55.78029997730777,27.64066190590756,66.0260962827825,46.63509170366377,87.51735056213323,97.87955784768779,75.15195614642094,96.9105785293808,11.733640531188872,48.248645287722525,25.317965594337956,14.503540060733577,63.97464864938861,42.967619610824535,1.6360484603136105,73.84255977551409,31.947336321484233,91.7598377945863,37.16913754713704,76.46838426717892,78.60254159430163,44.823406614220154,96.08850542263235,5.661287999491515,92.75190851980739,43.70097653112865,79.79711016738227,23.707485062845322,32.61283874021784,39.70220693366638,43.98941452893936,20.04025243138311,80.09637649334347,91.82773723321758,44.20816149083073,37.50151466825995,12.358706802572328,65.00888206061163,48.32006206888185,50.25495505931321,73.59122496822377,30.934586888465375,28.69147906466284,38.77668381921977,10.298749304027444,8.805833248831673,42.45564369092754,90.35946561705778,24.466967593088064,6.538969451003407,24.982881369678147,55.917404784323224,26.36295739128167,90.31131532315693,77.24034878415183,54.85861279743738,28.146419008786683,87.59489127606115,94.81956198610352,41.55075074802652,44.98709096865446,32.120574095845924,18.246777426536575,79.2701247759164,37.56511723071245,37.91448370276043,89.2995104148158,17.733912313501186,45.195025651122286,46.61577354011269,63.90852382731933,61.08189411147017,95.63181048940984,64.6677296935312,94.23317783412594,25.90071561026307,23.525672789545304,78.38208774593237,44.580331599748945,47.874252251410084,84.3133490574558,26.47840810383184,29.253167106759705,37.427706926317384,41.611499820181486,64.11091658827635,90.90376161352984,33.54123936507977,25.934191631053306,6.749586312899803,58.513587400363406,78.07978061070699,58.12217770577986,60.32177085893624,39.10781326909992,81.88560367827897,48.30895583358505,35.95497330515942,29.975468458497733,59.54811109471545,78.25353726147748,94.71054970970228,8.553379387519144,0.18500427657329732,17.155882113279574,65.53753845284672,84.6036755913393,69.20992832526073,85.81831756457412,11.50440379957507,86.96935536159967,93.29252581454945,0.27486906877460804,12.05763913477963,25.997062720831742,54.131874221391705,10.162902172470577,23.47556188839357,66.32357690254818,95.96189556485025,59.822364550949246,84.34162470673196,36.95921422092798,23.338557978784426,82.9325383219052,81.03922838938037,35.84240506379276,90.71645896044438,15.392241078933033,15.060192299427511,68.69217557123318,98.7179883762197,27.968745623869907,50.26149067335949,98.46074522727487,91.01163457629139,22.847284455480043,89.40399564185716,94.24652718298437,89.39851258292617,82.99132541647855,47.89107231991856,66.44810215911777,72.6007233300996,80.65836451170956,12.966400830533809,6.759560625916794,26.74620398347738,69.45623696629772,54.99010927345851,41.872265677421815,36.035277077560245,18.182673662893755,19.981185992984397,26.5155624977782,24.635462848719094,59.846173825701,98.36417920751283,69.85898444925587,1.451804264287826,86.22809206081743,5.588184527597573,30.623227553753885,35.340772499519545,95.14192964732366,95.63807653535528,10.933346293062375,19.793346957221136,30.899318740165448,85.36984062639536,34.250960326089064,58.981647564431746,55.42889025197956,44.726897020709714,55.17082930231892,42.01998114010414,37.36154651942164,93.30418721832837,51.27064853939246,93.24789309621224,50.46703225090737,26.607942998527978,85.66979684118724,68.56476114330452,25.34288902800367,12.23940687906202,5.6107035695216805,9.289432640470451,66.97991217654298,47.21499040050161,23.512592198863935,19.65848847173206,67.72966157417474,13.187037165494909,3.3071036630092254,15.212262568083867,1.9664302948124823,92.01893817376379,74.39289220883526,74.51052437288097,4.671104184190078,69.46303553081606,78.98758125510906,30.67081545747611,47.82360110307733,44.92609245252023,25.572714923134466,71.66311772369197,7.669195641372073,68.73912601309411,9.080165777180005,70.5479663143533,43.139004058085895,51.501969009856666,48.75774239662842,43.62523803784802,19.59649389762712,18.56822764823579,85.42709424880863,39.150591711974336,82.59765709503012,32.427960231339505,35.66083616282639,7.13259720783449,27.630884050146587,67.73655965059416,88.65011309374154,9.543852524952323,31.83301992924984,86.55713381822005,75.93392166246474,46.0188870113933,15.440865459805886,15.204630638510363,25.686511472264616,92.698107285618,10.220547379574285,52.19347446326674,20.272213622368174,94.60603913959417,3.513128975239699,31.80569152573375,23.29057359863168,57.1671888478684,74.75510924500003,22.589227081514828,76.14642477854984,40.88357921785158,41.680034298722504,79.33264677159161,59.67937597229608,96.21815488362762,28.58729529828571,50.33524624095727,5.288923501652043,81.83010870148978,15.507195773919058,54.13975800505426,65.74670411520577,15.780313931846868,25.409544919295477,32.34811664771057,73.12194961498794,23.320823907726474,68.23556978551822,13.63626491310722,51.6884436686988,76.56073187068934,59.57468610001199,97.63122383593281,26.04529888600243,83.62179405052679,51.640370858758914,7.207562545589951,33.88575211433663,61.52963225234345,58.305028196070275,60.31976705192946,30.881522405823368,63.75595098501464,61.29783102916279,69.58695246332563,2.151913418370688,78.21979016344261,91.03002619835256,17.92075951152221,46.08742118636167,59.56327711629825,54.303039042359394,34.01569106099006,6.43883402604295,20.10710517415618,2.9132024112724197,20.878639285238354,27.75097992941583,25.69641075782204,53.76060367166519,16.629351932055393,38.449126008991605,13.133024253692472,98.33022189723553,59.33434453583188,17.013440226524036,96.1059270000004,38.38926868881081,45.81437355027545,78.7581929437809,87.61261015963741,45.77319643066576,83.19649200934535,22.301363901031568,76.40080782642833,41.90841406712656,24.73303476474664,29.232300676706192,34.103980638666734,14.001770017324688,71.83569634486709,77.6365082319339,0.5064104389503665,43.295401289962996,60.62236540218979,15.990945457985472,29.69539853109209,81.7797475689483,23.683999542816814,3.2844503554329663,45.39315530638641,46.80856421049572,78.6387641878482,19.07222263478239,75.25394421270187,5.513437180781011,81.49222555258382,41.86850326723855,78.68240197937067,82.61178416618658,67.8808236519792,91.76572055783453,46.30755225136984,95.92694775698057,17.0677285076291,23.90976919838492,69.17420637285495,97.33857559118086,97.27148942036254,93.01944752176013,68.38385235315862,55.912535427741915,38.68358310754645,5.66288623237906,86.89229244778797,53.824782031781226,48.082413087916166,42.188251491465046,1.3071820186889793,49.64789787766556,51.628845007294935,47.43230165284247,79.16137900608203,69.91311285930001,80.83579723163508,47.4795714167648,26.058852818320887,52.52029866377419,3.3025022790607816,66.7235632924694,41.697940142211145,62.719327140712544,81.28788392147364,21.85225666603231,42.316988786055745,91.23411899609512,16.28561037994909,20.63364788776353,4.834125466428008,98.76463724701246,64.35874248134809,75.55169903549795,76.82768630099139,17.044520337070935,29.97296695971241,22.206392767817352,58.64131637301176,21.249623224886317,44.42653641380292,19.01082638401137,12.114293232286766,86.47999571874368,11.083182962705463,36.18301528440057,90.3889947113166,95.32085832094995,97.54890927548786,75.7339783501151,77.1569518272905,49.701939251787806,38.33776960286951,49.25077760766629,42.56896372439476,10.71306561975669,22.053213560160756,17.09317198497411,18.164738579713124,96.82558706582641,98.33861807654039,40.82336795834922,20.74915676263651,43.42169697690454,60.12994805067987,0.23960024609529507,28.79220039365007,71.38378955839379,92.19442991243297,4.554738385070934,70.35629026880856,3.845222090504119,5.56410960314545,61.93203279630235,11.302804390980514,80.74353747767205,10.616976229021802,46.492375298418175,16.7078227846542,7.001343435212293,19.431225153368747,55.39719881451973,75.97521244387615,73.79196658370046,10.268208978774684,36.315713185623075,87.74480156058631,64.75261194321662,91.58692701481534,23.709278296213498,8.548644244440206,95.6158415004838,88.6796859618958,32.763083891386444,87.57444926974152,78.65682234699177,78.99942254776988,15.663648053091395,61.354154313922834,67.3599204145139,81.61968817726265,80.83672315873554,30.738549822745288,57.36005174671542,26.96266281795149,12.21117406399408,84.62397023727036,88.54447422107788,38.5477640405437,89.80697532586697,54.567700357972335,27.69293894649826,71.35374151007541,87.50005477250504,20.08736587184261,41.491486079645334,68.52391588041309,98.30706414494415,51.783956638344385,49.70160920584185,71.49217131688455,63.61688283094147,53.49857338026921,80.3370969421241,76.38183111873299,94.70769405754798,63.396470962173204,36.00314015211309,22.49604810254087,49.658859922779584,83.25233681314809,44.929998943531736,6.449583317240249,58.1713076448233,27.79841727375364,49.067886304317355,20.542603763099944,1.988542858048603,93.8957523307798,14.596158052870623,49.34073870586501,29.399058839589852,36.447715832728754,28.657273485020607,71.29077213102765,19.766507320592975,27.576017451679245,46.74973538221431,12.506625172498842,79.07534589459347,74.34294342560601,94.2293430173975,46.48996138159463,51.86119093937261,51.801834876617534,84.84187292554297,12.210856456325004,63.844400262469094,71.57980788825019,97.41611179481215,20.584863939760545,59.07243250919885,38.99719058051701,78.19680337418792,0.8678793861374046,37.03809230907552,46.79474291567674,50.43452830491524,3.903997372447876,18.25886734429436,74.60610700228438,90.49660997522602,91.06450067564211,34.61384545853512,42.04515326734547,13.846714347919898,21.46265501035616,5.213167646487705,8.791510897581457,58.55540630180484,76.68957026797707,88.49435624057378,95.80730038059707,30.742379299534626,41.2088151948502,60.29324846247975,99.26045971955331,99.3369633835114,69.99737440118048,37.64114963483167,73.1509808157169,39.656464002289496,11.000310277850833,14.694037646531255,30.506308503641034,97.40395350445577,85.58971633741128,56.42934702733938,82.10502655516277,50.71475626163837,69.4558925504561,97.45794150251413,14.168350755116366,66.44282878526572,19.043614904936966,25.709134485837414,71.74250171220979,15.911503928228887,99.62237384361053,46.89875063573605,26.299822026214315,13.78091477008968,22.529644759632838,14.281578896564618,74.18570172472899,79.62049120377667,15.711572120285721,20.202684663074734,99.03807798027732,80.64747874691687,41.157799029699184,2.175612700573304,77.3652389049696,58.51553839749025,80.33344463213729,30.80131061640016,38.711646064111136,72.28795327110797,24.04794020206874,26.275208177209443,72.96431427312926,65.20763474430831,77.61560494348018,0.8650860507478986,49.97993132879864,29.805350704502963,83.58288313248778,19.34787785497136,0.9429727086774364,39.603609496256496,57.28292563940636,59.082433030583026,96.80031500344896,52.17741927365992,56.338657698211684,54.64582248697635,40.786182421092576,56.27826868997213,77.40575585134826,95.46859750362762,80.17785833324511,39.39201399390956,23.05053152741767,15.859299538976913,20.075578525406033,35.895870601735155,8.064570181915187,42.58403632499594,96.61219387886578,40.60181869832843,8.532078335193916,73.81995808587382,13.344953280881555,34.32026432252081,13.98397824756078,36.29935996963732,17.058709394526172,20.795386375736292,40.777604263159404,31.97507663347585,5.15070097965541,5.309281575230951,34.620705809388205,71.67653975222129,21.80635954898874,54.23022517740894,41.27504173833514,43.50330913042724,71.78162522484722,73.22810801909672,66.21736374637756,30.62524208126908,83.01634200089867,5.526088512394322,3.116302770168944,98.77020314170997,78.02533054189162,55.03104799154709,14.79202479162054,21.650153846364585,13.05862542609335,71.58476045470081,23.899514573765245,16.566605292940583,72.37170492730492,78.70014468964351,74.81319154666839,17.092907970894654,34.18419291621697,93.1386042431675,86.21429738447284,51.65339297235607,11.781056609561414,15.242516649554116,6.3549490783448075,44.19951537932395,61.26459941869311,52.459496224605914,11.106584417036125,24.796861402999028,68.57625124791964,92.4727840392137,96.66857517165856,17.342980223644876,2.411587368467538,77.24176959533726,80.17944986459956,23.176158735049036,37.31286046237751,83.27185553097868,98.40720787871565,96.64489057405554,11.26083669988651,45.61810554422225,78.32271716839105,7.996468412543356,2.077396668538223,95.10543419328603,56.76740425411785,42.65948012152501,61.77314645161525,51.49001533892669,82.46508370592944,38.700151759745616,7.383673297899795,88.37146159660043,10.803525825034288,58.86580493618874,28.245017184974763,84.50893528540111,93.55855567585488,31.64939804291992,6.33771349339205,16.894168012138678,90.43172773911226,60.18330956981448,53.129264631419105,67.39594259602903,10.688566404704147,53.93484022715913,69.35152588066704,16.27167899350963,89.28032048572156,75.7966330735402,48.82353784452713,22.746770531561523,25.881518253514024,8.283309790127047,23.8180773047194,89.02436606882517,98.72952217614746,17.33258417882396,12.591361043074789,90.85278857231557,98.62962226123328,47.8123029926355,27.143759991995797,49.288805189977346,91.56844149460179,61.15619316931578,1.9659625696491823,46.55408348113137,29.882062413695454,87.92181781375494,40.45647785468615,38.05586433937008,35.80784565738669,73.8726124716839,23.350678687442883,45.105814820752485,66.63117332694894,27.78127252377186,9.306100872837142,61.02912682676839,27.870291816075,41.48167668814008,3.5275407991189556,45.68222452467789,75.51341188804544,29.91399002460987,83.4469776987085,48.7374425522383,72.16260151682744,80.55260540152281,31.733965546296062,1.1039190030003865,81.48479924354288,19.667156972281987,19.340834029718902,94.40998252765974,86.74783961051052,24.936976553854684,95.9893246498214,22.516526051951192,63.97569682634041,89.42985944490377,30.871779457840066,36.50373091453102,23.449354477490946,38.960719877585184,33.91094408169097,18.650440239393074,19.765741476387998,94.67430507231097,16.390731115273873,85.23946718978964,14.811883002402492,43.679062315704,17.226584508322773,48.33503253656254,72.20206213909617,28.9618084460053,76.421944671349,42.05186048120856,59.31035544545358,34.72593231372986,78.64661373504315,56.0524763983559,69.8097749561003,68.4539611663191,3.6838920108144046,33.96309611398151,94.1255157222672,68.0235495128369,39.22569432629127,17.558055789911485,88.0954766688157,65.60163680925996,85.10105893221203,92.59440992433217,83.80889010900454,23.057724924210632,99.02703611439891,55.387262936517466,78.22523638267434,66.98447615748226,53.506719375663266,26.91132456191606,20.5027304581356,88.14583987747856,23.864997043109646,71.84148207158894,89.16277316273971,93.81471137936546,78.81353727179905,23.26147300763557,10.102114181659061,49.995040154975676,44.486781398361096,3.918280808678909,58.43156080987091,17.2601798296368,11.871033379013197,98.85199543077526,26.14686449794248,78.30311518782386,29.267388020354268,93.65252825570752,80.73198624713179,20.254054330103276,16.795043331394275,49.15185997443222,98.0655559180953,96.31103636082793,6.731084123616393,16.01864703725272,53.774700415335296,79.42283474953233,0.27463282302335745,5.745164579179707,37.24913999591122,26.622343226945798,11.258755819715638,55.14636062401961,18.626826131099527,30.249324123657896,90.17210033543147,30.75625620642214,9.462607967618375,22.902212490808772,68.25433910038102,40.14249308178053,12.496296481424874,10.00217830451816,14.615633211961388,99.19795599327875,45.06510991750498,9.810519111048988,33.3221327733609,98.89611029006358,80.002386907495,59.76940351330992,1.672585814088312,72.00587841781922,11.182702584165305,89.66093863247112,96.63659456584861,78.56582172153945,74.3189114860218,45.82637047509026,39.67219626902313,1.0405977441081626,65.10881648235686,46.439270443407096,8.781552174770646,69.41773866014421,29.39471243047791,28.96547301270125,52.30463759159606,77.82089960513883,17.967556272664854,32.1143161529528,49.38963997204225,62.34644586523969,94.48047562261728,40.37276290529726,89.45327108199814,47.355444750456044,27.38031215922574,90.19400164112656,39.21072641743145,78.41124540652984,94.60173651563143,73.62878324703826,7.797022581276847,10.644974468747003,39.63115048610752,69.6380676407857,99.10801297770084,30.380833781866745,38.97246318539794,55.92645374831149,64.50935117554505,39.915724526994424,80.15665042316596,76.35312317663083,55.66235300367184,90.33564550507933,12.656543951203947,88.91614036549083,68.30362656109176,74.33503302266197,59.028976801395714,28.715365233002643,70.30447501797525,81.38667852558171,68.62911995804659,14.113270974415304,3.9219936355797125,92.70511436417235,71.6201267728713,94.88351604535706,86.60827572449935,50.49008909756571,16.924672964900466,63.994379625003916,28.306032469633436,32.36135829749907,50.45961845925869,89.22052614401774,15.394757249722746,19.22872017733933,64.61527712888756,88.27447691622751,63.45665343212682,18.98470873151583,99.47013412787123,72.21917070158224,12.749420466727502,20.315799505572496,48.79609746068404,75.53706828144735,74.37366484942031,67.77379600181035,1.6917715869101513,58.28652292625427,73.02041132946594,96.96476399064326,65.50541028065675,9.443398623386944,13.557256372161852,96.8654577696852,55.91404506126671,50.23157390966577,45.557243788400946,76.96963286649631,73.2425257580072,49.553823816397845,71.89685197358128,78.99990692240155,80.07409064102558,57.905178569375735,80.1603916403337,2.709040483235381,77.41415710365952,97.59270473287222,91.44193481870663,44.97787254838359,96.34865997864358,37.63902746546329,55.498963752307226,74.17305739338633,13.807019954008226,64.58352881543381,32.32124030484093,47.11238052167415,52.76096057317077,37.444655421484796,73.86023067037458,26.892706319751515,75.56816007044085,76.57667739134082,74.15260943465627,84.50478183397266,84.08911314730764,90.78833846954983,84.12618793022861,74.5246680710916,47.15557924501065,9.918711771562016,19.371509088289464,67.249849024902,31.998402931387083,18.83630161496216,71.28016671957987,49.9600311960038,42.278705333574564,25.454949788377114,33.97304393584448,21.706787871407474,99.1974500310056,83.61711408000782,97.68554221512707,31.81045061021055,73.00767272604533,65.22049531762062,87.77626359204905,88.28373166435283,89.37686653873146,63.27326452675934,55.59801848834308,35.35030270249149,15.20484917003586,91.74321067249505,80.24652659578936,63.682263151054045,49.75394532759232,25.192570130805937,40.293166706291814,71.02670735228929,89.37225256011926,75.34188263590511,86.71971186022229,78.19374548707182,0.21809812616374602,28.592549045581293,41.477023779858136,32.52120438274575,32.84490002942363,63.53051445189678,87.49858426597193,25.301243666987773,84.2794482994877,20.080773687670884,19.766840369508387,76.7659423117371,72.77280092764008,16.41976327842164,89.80697419847891,12.543003238945161,79.5420936816131,61.79918127820658,32.627147393062,1.5438837491570157,48.75447511497205,36.094029616014325,75.65685767879448,82.88814249139197,37.73994187043489,34.82708004769689,71.19174826842092,8.487294576143945,52.4571859215593,42.90887629013106,89.87025865594968,85.75415933356736,25.478103871674705,26.18791145422279,21.963032249944415,33.437968926173966,58.83591990008832,24.060045137497777,84.39028361005748,60.92459755987342,74.74230294339354,96.88913438228856,80.76377064410762,85.71989195915395,18.447136919027706,0.829455013310676,96.04783007914624,0.49755789480678825,53.19333057301932,47.19140967668072,70.48376826273476,46.762417433053315,10.031902463520959,32.80256058789982,72.45616415629932,64.46494432116124,41.75125475966519,9.941143608856073,16.167236900651826,21.469675311156966,58.368820106820586,54.616445894802546,8.817870625213086,92.79685351713482,69.13234109692617,46.9657002968958,83.29225874534956,83.20879830509298,50.188248831195715,40.110706899856055,40.645833670593134,33.56071305572691,61.6602634530168,10.452679186922653,27.39043193030769,90.35652576822444,25.57034615210997,6.286339162480125,45.80337820840005,64.26046804831691,38.29674694431069,72.60315854700563,49.721424564659756,48.46812589882988,85.98359342822691,41.98577122294807,42.131343190090206,24.349397259683435,77.1980719545614,24.49516317880113,35.81321123752371,79.307536157694,28.6379647071622,81.71302365140053,37.37129060720563,22.31623330805761,29.247609904127593,48.33676379217323,6.9957690033047975,24.64158968888992,83.95455510433429,57.346220843490435,67.93166635301569,94.27543724837516,49.538888246030744,89.45358905703392,88.51731529333766,13.901993336362118,22.419112164390963,59.254774622405684,90.22878747765287,25.124178654609707,99.49103602228449,35.233132144170675,76.64764168736097,71.13346084255367,18.913846635191224,47.244634662747295,98.80507447584658,93.07230730082493,65.9996822854763,53.35499874485956,29.72918550827436,20.876929600510717,20.521434724676148,56.4404762738844,29.140461423436072,88.44042770762628,10.822659222619691,30.32698913607326,32.87754248338477,27.96292841033299,96.10441446732895,41.76662196928888,2.1587721201590915,1.1032534216957934,71.57967342498375,91.16865676409665,74.46825130075537,59.7171377522336,10.979099229566492,26.411811181154775,11.42489360552057,74.94242386199524,73.9342056015408,11.322759865037524,44.495131550357655,19.385472423246963,75.05532987481071,6.543155565093562,53.19253714376811,58.814165578200154,11.259841850298146,81.077397402825,18.638173161918736,67.05978924697054,20.45069062856726,17.505627912894006,35.62949326248871,81.89852085497051,62.77536253806445,24.36132439326364,4.954014627072434,21.979518109471563,98.30369544949812,55.38021287593432,99.46432223268344,64.87773650843872,49.51822404660493,58.36652367794023,26.01963377742955,34.49157543128971,92.26647918900551,23.5548275822009,24.91176074464049,50.44036553010116,30.12505602056169,34.96017285957972,77.26308697404379,85.8241548506261,15.343478027347757,37.60636579127035,1.350956215741217,16.854059582362147,48.078260643170864,20.55063437253406,76.30869269461459,90.69236661227805,91.11921176365819,93.64548622489163,18.33810596995513,37.54910819131362,53.577085873064924,66.24566674352882,38.422393762692245,33.83835296837484,58.74384010343333,93.99004813073978,62.443996452750824,26.91709585791291,24.946489510398706,67.90607299242778,72.8618758395995,14.066297676096706,3.514116390518718,63.164237224369735,20.673624953858628,18.92475516604253,6.908960691662013,20.40894603919118,30.541218965173258,28.240166224597253,61.75787890923665,27.675543418876046,83.56459863029446,13.93615750924393,96.63037306166923,9.346913761629938,49.524450880901895,8.064036985502753,28.412685146707204,4.4085122452137355,4.661036785441119,3.7155089875103964,87.18698746695569,18.18989344628019,12.51754305950138,14.635748713452113,76.81013716877078,8.918122916852301,81.7435374270718,14.547610672854194,95.74393626268848,43.66633589993369,81.00106784126372,69.41565711262217,39.68650662595782,6.791449202437915,22.82640233561155,39.26855499843369,95.25851063208417,4.6693995752357775,7.498595053656542,47.81360417596608,58.288847361522066,23.951296474978346,43.989992189076254,3.097733166720229,75.30214633318384,73.99059464234146,39.56112162072966,87.55093060410434,90.59437830993477,16.900841478068273,83.64016893448543,22.171857371476346,83.68175178408272,95.01439708779526,74.21570471957716,40.52662801154019,91.97780028726746,11.029216791988706,38.305658800077445,82.61122623969885,78.91496436010557,54.24957486278748,7.295362701281427,67.61117642400922,61.559627131811446,29.22395113887706,14.837604663119786,54.90164577945672,6.755363905347645,63.52840941636499,60.199628223883394,5.1010018312590555,49.99884855239998,47.76575824463969,60.94527109505593,29.04439031273607,62.429561556739756,3.660257685775581,68.45969753222322,94.60616574883576,26.76410900154623,27.516951987366213,44.94456657524207,47.73671403865667,71.42016438784886,13.305819342081715,31.48684070942923,63.1683449370029,10.563033570578684,22.133196366106144,5.475725762716266,82.16022516780323,84.9538710306873,64.19480225536172,8.07484946462167,29.895629143454492,1.1984532086755761,71.94508516659141,76.12408205896841,18.96180907624342,29.305209696524916,3.3685220006668737,79.88794799527385,45.85534479555188,16.014751871598985,71.4879642252441,74.63351456451917,20.9342015174683,37.96170522866933,58.576548291049235,71.12609807650682,35.63235308740295,6.6090844251933785,85.38047667314264,90.15309418318795,75.62196070617897,56.7839143492359,13.48764427945831,63.821440810723495,28.76709774059809,95.53345030892977,36.845850757878615,40.600784520886066,23.987247391340972,72.65546776459628,47.82643886571813,19.054964640625684,10.967861710270899,18.366938159037705,46.35259342739298,74.48906478562813,43.08054668670969,94.97215899914613,24.648971897657578,17.70373319077214,58.967421425195276,60.91721197088024,37.172489823128686,36.253694122564625,9.997167814801012,5.140530075726446,99.4484836684959,41.00747441528644,67.71212063705961,19.446243853995327,80.4512254955282,4.957389484088493,4.5585183021675135,99.9625392819118,62.509980126296114,35.03551991650325,13.011739017985246,65.76563007369586,31.010672248780892,4.10062367557944,89.27062773971596,21.739705904272512,4.303692703667328,65.59772569215082,73.86507588264546,52.41651504087256,25.42635154223678,84.11788489252558,99.41412461076439,26.781710087826703,77.6888668660953,9.476155301722578,29.681114185810763,23.096602119452125,56.058989698581684,36.81457680145102,90.2771213174752,30.862256645281285,20.85696374809789,33.32174696745152,6.1671448687026675,99.9536853710751,25.361719956426466,86.31903484623628,48.705226443630636,24.754717408136774,33.94359462366457,62.00589341593681,69.39176248946846,17.260454758432843,21.03496360889584,67.68274848510589,84.32784915235834,19.975881368259273,62.998305477881885,62.19505420522725,42.90517569391565,81.32624620748757,74.56991841324057,84.65531253001262,71.73072573704673,37.85040217717821,11.354259014444523,3.5911769503433555,18.109715727037912,97.72333008205102,12.808390877238306,1.5281230584863303,18.70940604089023,18.786469469545175,0.45754040527978823,81.45639872258896,13.221609654216026,12.427292765903319,15.126083869143548,29.929220088269272,86.1351752479887,62.82873008308321,43.55538956755613,75.54082981816508,18.788532484049924,12.178841759207437,19.909039298671406,87.67551040156513,49.258072005503394,68.92850102835034,73.0392317975098,71.12129515461312,15.755643674112218,84.82258148902825,12.705004085731986,94.71103729444759,64.48768378327462,22.0666890423186,73.2690352616879,14.711245774042592,95.52735476271748,61.58286992453782,78.97136293089939,42.92942023019781,40.53493172211062,73.59130344528602,3.9320235731616027,73.23759426959593,51.03371252078356,51.66729832800417,74.63402548998424,6.8539056366682445,3.4932814641854715,74.49053103836569,83.90125725021747,15.856325816760474,23.578392309126606,18.595066340307387,62.871159962753566,0.4932170689597726,40.082667137960634,67.10530856389258,55.1229359248143,50.64339607672992,47.869672583684896,58.23571019046402,10.039794595450246,35.13945570427482,9.351115680218925,1.0193558219121823,90.10129072560734,14.071865216202895,11.424426635042318,84.31614525799847,89.8003975362901,36.4755936485721,82.08250641087685,90.92077333727624,85.91140757755267,44.035784703408574,78.75493573968009,80.91971191586487,42.31278459181386,98.23017104011183,39.234662943664375,81.68108541662359,39.65072201670551,41.31779382233888,8.547965825913906,20.964402551591576,47.233019963054055,22.68430751684982,41.48082067161282,5.5757805474619175,73.74506383953162,60.95143036602199,98.85934693861869,89.7621810241148,64.56155163691571,18.01048380478818,67.78984923382625,32.35645856761094,92.81428878747722,17.593711132651457,19.910186333558833,80.66269931630741,59.43164012284197,24.20881180849549,13.137711825457,51.457283628856985,55.34130808600561,40.33143342055159,55.22785394016017,72.813379676867,80.93788097069249,25.879268627862807,46.30417824322856,51.16349913231806,49.96980334436637,86.08166896970056,39.081449444962225,0.7951431111916984,18.874300498440643,66.94272090203485,99.48971626680812,87.60485777905079,75.33128929405945,82.99528166885233,53.28923761738624,95.5145952938741,61.27086039784647,48.79331439036784,5.145459000586294,42.71149954082903,98.60673627214267,21.132104144833708,7.138649132420216,1.0669192167067743,33.210389022382316,49.02898221910156,27.238621155079258,4.065435333638767,12.05670955005157,58.0616513454839,39.34345189451841,5.526242833862083,61.42279710009543,81.58452043624223,25.31695573042194,22.800046463977928,21.46375024027194,54.61540089502961,48.666688233597924,38.138417307465275,88.06642304400584,32.62855385376701,74.7604110019585,64.18202205184873,83.35359885320098,20.487892992081,60.998152086815395,21.106296944588788,47.859675563383384,54.67927117822617,40.50582654333221,22.00367730371702,95.32173311324668,44.90662581728252,1.9719830169464325,95.24498933743061,43.422332324026705,75.65504657517644,88.76569915018142,14.614645138444205,87.12796149549031,14.30652739866659,33.01050473776087,92.8811901391657,60.08456736826916,96.21912299210106,18.955684893375945,24.598461252580282,71.02642749532106,1.6517572186539153,69.13433946399252,58.80478869784645,98.98024292748238,24.699564904930394,15.287752060218839,14.752825394468383,76.43268661358084,1.1196637017612088,14.678921032808622,61.49486980842636,24.965068191660777,42.83395971788666,37.13737256293115,70.46681774779526,6.656718451714704,83.26066088518432,74.78020980283327,19.43976498532183,71.66954230191203,80.86254720867096,68.58732870880772,63.0654486532326,31.67130200610161,74.97102366739878,21.905495915081417,14.819967127914191,80.8781589251876,91.52941531718405,17.755607367790248,40.11253033877294,62.993487350472364,12.270241398966508,26.206920631182907,24.170935114893556,24.442020919046325,53.77256508127252,40.479998524140626,28.194389389213935,38.09284238334815,70.63230957474015,66.85357481809008,19.552165874763816,56.24743385352249,48.53374428701843,23.586169396399224,19.571069264449925,67.92446111287383,19.2516573332017,76.61256629779626,80.68813769845057,76.42664797231724,47.15483290937343,35.796042959476324,62.21528813061442,33.778201353465164,97.33485636728268,39.80970066196898,14.969087256394742,3.9158586772315984,14.963730903118677,96.24340780571092,29.396015340625258,9.420404509643898,67.57920574592481,10.680252958810089,12.368434472353195,12.859727047525404,70.63350110211958,79.76513060008291,35.17162918129705,82.08939580637934,35.82739042551387,18.477329367451535,44.675273437803064,64.75912279238842,37.856640589690315,48.50371170430541,57.587993255291934,64.6182965567209,22.517258423670828,30.15378577318215,50.53594806654759,9.05480603096408,38.106313104216504,11.062048715482398,0.6963456669321744,25.582361051229352,90.53543471568054,2.7833195814834677,26.830742533375794,52.81032871018135,18.911414594242494,31.692054807376714,33.09340002488579,26.015946103282506,27.569969619422242,99.55387713153041,81.95362076550879,71.57224865744925,11.391267841101637,47.66643448193152,63.85522856186926,63.76534238392571,18.38889361566489,21.287450558708887,80.17556819741739,55.847584846421704,21.735391442130393,7.772194146719347,21.433879420903633,24.55930880155506,89.28652389623592,97.86057203566236,10.260103510955776,10.750202749703853,68.39364458491154,92.74491606012153,88.19934335755288,74.61265919062956,44.802309469743626,51.30939883054183,24.86214603697724,36.210548587537815,57.60178912892536,63.43844371212851,5.6668293792823015,35.03175501962801,8.946642250341807,12.406351361778057,55.664674898392754,85.32933558189929,8.242805190588133,37.50383213911525,23.57325882475607,40.43582091519311,67.37650540534041,86.53383887132188,69.62141909512246,42.39730134304509,14.090388476436988,77.75229906569307,49.90852205060482,53.20178872076615,6.144164100329363,21.13448518455794,71.74880776682946,85.29122278421552,27.55512461272911,84.53199984407209,66.11299456235446,64.63154375922667,15.986696089816588,21.91558914544336,50.77807017427415,18.24497178624419,31.88023290192993,6.657104315706519,26.61568837487006,92.03374739138587,26.65546115953029,81.85975161151059,85.20445543571843,19.177186685991053,76.94734317589328,91.27177373789377,60.85652101654363,95.17832564049681,74.27664194156263,30.34578735689537,29.892101452938146,10.019516624937818,42.46230616525764,55.941915013625106,8.074654439251994,40.64105030989883,54.16096811666598,46.17206352576542,84.0033373286744,39.68055071367067,33.515031976456456,6.199212166204104,47.167984455891855,14.16403747753997,57.028942114925194,82.84360177735167,22.15599314116793,31.5967162239856,96.24323721201144,34.95146775034647,21.697865275013218,43.06309137743646,68.37055396893089,90.48888802071897,48.300052797611706,98.38475912059099,4.674877035784286,18.636604607538978,33.52680744676897,56.06828641210316,19.208532342059147,30.56842346842632,14.637226732445852,15.11759741088663,89.49803251426087,33.73448390724491,36.06157929856367,64.21796636738803,81.56446034276823,54.117420725205974,53.49375144691758,6.085405563195778,29.40950625840516,97.54957609475308,29.36075082126125,8.114827605281205,27.533520116006006,55.72182757032266,14.947743852894247,55.0155678373884,80.75694452160253,22.911174009869285,98.46499886858656,98.65705259536236,43.39287335276707,70.10208256451517,73.4298972583257,79.06686502056476,31.030275176988365,44.36241849301767,32.18630281666234,65.18643010416507,39.96679684620539,44.02711646297163,80.44180006469739,30.404794910904076,29.284498527229484,16.605285154801553,89.12788180566204,18.645813291950574,73.04033314220766,3.7853886314508256,95.59512925166877,29.32719571509219,9.268338016809153,19.81315297478392,31.705521591952103,40.81958422476599,24.122688686724768,20.972386675981415,40.00751148626714,47.242062711972025,2.0355675555612462,6.924884399643627,65.19942220674761,24.44238509540535,95.60653387955725,90.42495191059236,18.533754683530834,47.042921764454185,72.2080717777994,61.455790503709096,57.73065302195551,66.34743227531301,26.730072785219306,25.42309157095197,13.238621692463026,20.209690641857637,11.838797353176966,49.60445936776651,76.02535869918074,23.33994925532801,54.386062186393744,54.02514025360219,70.29853700375274,16.99007953341973,29.02497483844415,11.257223644289837,42.725481653511025,28.361230595364304,71.48915264109407,48.680367296220695,94.23738315839773,68.73159648917775,13.663434263278173,86.69691301118583,79.01070995111044,11.122883185930855,42.98476339110636,36.77588705549866,46.070421057443035,90.25260693008885,70.56712226275972,30.720307301028637,29.56208752321632,78.2218275336783,63.71991571475662,13.107602140789865,67.14606898354316,71.79978258658798,66.39450486625346,84.17759378741486,79.45315929039558,18.214689756767623,26.38486588012967,35.22570946573489,67.27444087008608,20.02849531999682,48.76408002934143,55.471451212093235,23.144523433183274,58.11405595632808,12.637588403692156,19.84162265380054,7.015956316474547,36.28177537911985,47.05434177010407,7.879757505615426,2.6089671276448456,51.9194537872481,16.139240902186604,48.12522651182639,92.6266302726187,9.173657849605254,37.447624517449064,23.36744992412679,39.67975321799395,90.25417057698319,64.50472744595676,80.27716236687445,95.74915494691224,51.5946204131354,56.260514999256,52.57362637933704,46.11884805583662,39.80143082200181,79.16450309924328,48.39144917728889,89.47989706891876,56.525033141090084,48.60260106403517,61.68844177294709,56.036505312495336,30.0086731389976,61.87028515079637,35.523966910695506,61.903815823338974,99.71349148155205,3.561631758086148,0.7109669888561543,61.25830755179569,1.0099164397161298,44.5558350107628,47.39662844697355,67.3676506940543,32.69447737246195,56.99824491032326,41.161648887485505,99.30089991543278,94.84352247956072,81.26094041402904,77.07033721193133,28.169157463325522,30.66990098077168,54.789931104590416,8.004848572243272,53.15139777928957,11.758554784048393,70.90766666685234,13.01191984827177,68.058413374295,48.264550772354006,85.83344191272927,33.33385581145003,85.02476182346737,19.27294898690557,85.51494211508643,48.43835851368713,33.849639568066856,27.365282512756504,57.714827406952686,76.71820997461202,23.25704782079655,9.659734521678697,14.671706033670507,63.1566859444422,96.79564363090535,91.33239828657703,7.969468016851899,51.96109929578917,15.002173315454847,77.74514519194923,74.85348283160224,58.39873735059429,13.59105820586568,21.722250563994294,42.63329829294536,85.08599641949004,0.7046981404757569,18.198213076673397,83.82081210053519,78.12762796270742,1.6111158708459028,67.13926926680315,70.61993534573274,40.12879628922049,30.078609652681866,86.32819138602052,99.09516632709783,45.054521499928946,70.81093355058657,84.58848808235862,15.33748229377193,7.582231254050398,29.67216995976676,67.32894182951316,37.54991757856872,82.06921063599397,92.79947084466485,88.62260801789225,0.8284950229217158,31.219599864423586,49.04126676268381,89.8665088490581,82.43668033433015,39.94719096580671,33.346259317715486,75.49348173290808,0.49607219552210147,49.052006024609064,20.204535634483456,25.66088836875685,98.72696054983291,41.65295735940673,94.57694055744335,72.85190908753565,7.896850900733932,36.98583284585496,35.02854231567741,48.35400473249197,67.28674135737353,68.78896565237555,87.97349991272327,76.6403818133995,27.833549917076184,17.97267351335191,91.87715095663857,14.845452676436944,61.02550838138545,47.678082663071834,2.4972205445585316,94.88653363285728,16.19553460091321,55.13140985515821,95.0048536903928,17.277591335020247,67.66662609593745,41.55125071048039,90.06467514796904,44.28437440181517,91.03585325665952,34.86089003234021,73.64347834059419,53.454295576667754,80.20706506596026,40.49888595244694,83.62340437597389,42.0898610845945,5.1294716947822945,10.72681897621891,51.743455476698195,29.18941410614446,98.52965720413953,2.0557764340922158,3.585885606796968,10.000873248964947,62.5537669469382,17.64090218239077,72.61858122534781,97.50353368114897,56.65329098570781,49.294819516304585,78.99642401145152,87.26569350116893,75.05545632103163,31.05492357799133,12.875957779897007,68.88680007127051,77.1669957424421,87.8989083998128,25.23086940397873,42.71118104171957,17.39092469570551,18.568470820775772,63.71886859765882,94.6406579373424,96.51057404963439,78.10056428402436,42.55691805332654,73.75587558799295,33.156952200808746,49.448391715326814,25.061128527012855,46.42558423120939,66.75537773408018,16.07100348942425,82.78400655145917,43.06325792557367,57.619904337629244,3.471395991761561,44.17069012993413,31.362816655922032,26.908975490555274,23.096583466481036,70.89332580613915,87.59256883278238,11.084551143523502,71.05279723813483,68.80693570296154,90.97371303162072,97.42793549771699,36.67740648072416,47.33138384862059,48.612326961750405,80.0791993847351,58.77025864672895,73.30773967800364,84.05926555046082,52.52239691776155,71.14295329560578,49.79096183822159,3.281844757322072,96.84046027099701,46.740129864772115,45.16247871839194,85.86801619111569,15.306455446698997,33.877612479024485,58.72191578588114,96.83932443318447,61.0099194570792,1.5975831959812337,78.7422492930938,69.02997051655001,75.90438111806293,67.75167814172634,31.13866917660929,48.34636152451905,96.28792959858984,6.048171023872795,73.83486835821354,30.926693390546134,37.67051997008226,77.45210647509117,62.99661472865451,9.792600532323426,83.99737229094757,37.97904522895982,26.269813672092333,61.9528049666654,1.9128159800592903,32.218530441222114,48.79428915853886,25.601802305361964,95.27819044550348,74.7446622212405,7.908392258882535,87.4595428521246,84.66913790709462,6.973208878245685,53.590044998736886,94.09196373451175,2.1152219333149147,17.307227872808497,90.10050632501724,82.61490518225959,71.1255215623138,8.98863336009601,99.22339845855159,27.784984473310793,66.54694858338553,98.71218223796063,65.93867725054771,40.18853618211779,81.63762135533658,34.292244651494386,28.41537339309128,5.592006014818929,21.92082197277212,69.48142788811738,59.992427545462846,43.135752399383065,47.445720905946345,66.21323423620824,32.549723723351356,18.49617400761835,41.02600533773254,89.34479029096636,71.48384717403437,51.169836271301584,30.47040622763314,72.64713033034869,2.492746611461516,33.10171406081673,74.97805999607998,28.537635621953783,22.861175230098585,39.217030257805376,57.47163857651508,51.52507549251808,22.765538572763766,71.14912929917415,2.973542229488879,60.17275259848154,35.075362638021744,13.027042715267223,90.24011242381481,25.968433535344857,88.73872191585595,45.533118205017765,35.06760943969485,3.7601144065545045,67.16689700793587,67.4507826873179,16.700179621548074,41.058483018820446,9.269857518856039,66.24694413133582,15.047702528029273,79.57441209926833,10.754764226354553,83.61178445339121,51.029614343274986,36.08985786624491,73.62648718621323,69.2038236802243,68.51549177335079,85.7447174030681,82.0733822296553,10.833210544296579,78.58589640681679,20.69509288664345,33.007469601918594,45.675979096420235,41.0004355720746,4.996962286995488,97.56346488734134,47.892645232305995,78.36051396910801,36.011756964307885,34.708934269587324,59.53305510387168,62.58771151272544,49.31188284983033,79.50849472691536,64.81384889217381,95.90901290572617,76.048510591336,46.11326234747484,76.6725630706209,15.25743216269866,84.54508884304701,1.3205586432597505,94.79877689520218,43.76946813357531,13.630925664168803,55.76476409498663,31.664540037428324,93.64718229682546,55.787022063544796,44.2098498591422,44.56751064889429,27.61333642551349,29.474820538824552,35.10573982720603,81.73505509062491,97.91172673522837,12.485959776824263,61.71561070070632,46.977068760297904,10.965702082234884,21.843460036547803,64.02278261705536,91.75481640133644,61.431861327609816,80.33468444377395,2.8188048472516436,17.574476882156244,3.5640351111778323,70.35026921449688,19.90718680780914,50.37132563978166,80.17393007463814,46.22241797063008,2.5208496450508044,59.73921967504094,66.81065212108732,91.9888110347111,1.550201893249581,67.59950108996348,45.34006666772823,51.502766475426654,61.202723920829825,23.412136245472126,48.34103079382239,86.14159657634909,76.81951135434758,73.48907576202515,83.5477485513375,15.529154572517035,96.2787631272162,94.61383160341504,16.895247788265277,36.630744339110365,28.56471628321131,84.57338913725374,98.36511359417892,59.38828751293851,1.092939338147203,86.24453309462756,46.1458224986377,28.329005944067553,98.98532902241257,84.3866405536555,65.97561865399238,88.03128800763434,32.90144967695543,60.15828550238766,3.5249567785145985,33.50702486679458,29.054523088707917,26.176194748988323,56.91162035071267,65.84423152424954,52.72370525693836,31.482776366008668,35.13631337459617,70.50256947613344,97.5963760587042,47.75890980694064,79.09721626996141,66.43284225965493,12.619109480346724,69.3593372312319,97.74699559633385,85.7570241736715,79.01219273267135,15.168534819799817,77.9508560577503,15.114417041168304,93.45194196065925,15.319922175114176,60.845626594004266,63.95143172542345,83.19710432984228,27.046788953546464,3.8154195010182357,7.800657450237214,69.98509961196751,4.552485250020533,12.612450043684941,17.283131499259007,83.77987132616947,45.841934678804186,37.07305961639784,49.25436384709197,86.02222514831782,88.90851940023846,88.73431009465914,57.69479688564753,82.1134987761604,63.94971322702203,63.59835238180099,91.71181927592212,13.05690275650322,55.355621667928375,29.510970895740474,37.171891626823175,45.376390383226195,64.79756665238034,25.022154300804132,92.50692686831405,93.46011216124178,75.44362810495437,38.27629916543237,71.25912155558913,49.61917178710146,76.13066554015808,62.52422475001937,34.57243488519662,42.98011917216199,10.129628434108495,28.256339339161517,9.878299045000016,53.97018856918545,79.7123125972468,18.37827410098051,15.087986279635246,21.283035816684716,88.83233813547069,78.04430756671627,39.27190744245381,95.99928246312112,48.16079098080527,16.01179194946508,32.97866853725171,79.8959970630021,63.37917358713801,2.1510827909177577,47.34410668359763,75.65093400294025,95.66102774747101,43.49896635381033,12.93481670358686,88.9935874735767,92.38950715215347,69.45786173164912,81.67358559288877,87.28266192522214,64.99792080097907,95.03808461063001,25.277091329452873,29.82381427962907,36.31854709964594,9.58691554587766,97.85123170532282,13.48352946498811,0.700491461632291,95.42970979856084,23.41444176649817,85.15526968785674,18.761790433077806,26.89543802036448,66.02609758942529,66.98523897458864,93.95517502868933,1.756322140755684,34.49275736588747,25.63883228504945,14.088054929322924,6.440871157475514,5.549518396780506,24.75737477594301,89.7639664986927,39.75048189734625,17.400352909653517,32.08260707810419,33.998146819116414,87.48490005959911,32.60772121032638,44.70592589780639,94.50954364869264,44.37420704718773,33.08523759289874,17.159805979649832,64.39993699780025,29.212839310771145,55.233907999230055,5.557615162124407,43.819104534204335,38.578464905041486,94.41290308492547,64.82749490126956,23.4773416408685,54.80805153968669,2.465812871325368,35.39318621013017,53.81706271756488,27.789392010987257,29.80826311762752,78.3369342094898,46.71032751395307,68.2462842293803,63.2909849875691,13.37566108063405,1.2313068601810695,23.583160204376675,46.8201265876036,8.162771794348146,95.14083953834988,45.44128375074674,46.158316357129024,14.333092263401259,98.20538185380046,9.56099221223008,39.9578775587623,83.43535319408255,14.282185138723891,88.57304964396006,94.91090976314293,51.83703757251222,89.8145303571437,60.20761817322787,36.190986837871776,92.48668389004311,57.73899731500759,52.702620504402496,68.4742702070027,16.835712718390294,16.0289997932756,35.78259143844254,81.92627282880804,44.60976952994356,3.693960368970106,9.773014564038363,17.874941741723315,75.41029456664397,77.04904389385116,87.15560836234937,60.294254139435985,79.90641583524203,32.474266087847546,59.43562978924953,11.900211329143751,16.907724304117167,34.53069062787596,89.59609555352687,27.77235480434106,28.116928421952537,34.16859019962494,73.46632100679025,47.40434612486941,92.95814012034982,71.00913804341637,69.20452536963857,17.041352076268335,71.4547454674269,79.15960729206382,61.622573434405616,33.55302170328388,63.0069697197406,0.7328626533602667,90.42848854234944,72.03839836320749,44.8692882118526,8.528462772658429,23.797062277735613,34.73294483742444,39.68506916776434,61.30775941824715,94.4812750185729,20.340384495511323,17.19102874857208,43.131175285352754,15.155216360293334,40.23420394568903,17.09070705368777,60.932041551791706,78.80753461458063,41.597922616413875,63.498831061887806,6.5948722244688724,85.81454713160453,55.07043688318719,76.88108870469446,26.398720914295716,98.62470524709302,49.69362140803888,17.697227893915755,48.50224795386152,82.83203549847515,60.76964393728647,70.45554173079779,19.21678335950827,33.03908155884685,4.3325752402532896,10.511817395506473,17.766367555564,7.100253959785108,38.35188514485299,22.09074435876478,8.609886711497927,44.41446222346015,79.56190618556896,20.63858159710269,72.18019791497375,80.99542997072376,77.32525327767723,58.730497297778406,8.389105006832033,31.55511227298439,97.93002167184981,96.0051091443765,19.61287674205836,11.526206389366433,21.55184019666443,15.407807772289972,20.570201729358363,87.00833914634714,23.308205195787934,84.07213654517537,92.61300197484363,65.18171590086779,96.47350502578432,42.2695162555885,59.658463312870026,39.20874502973655,9.780016667298753,4.4355276830195685,16.340589644979666,78.94959035118102,36.6635664170245,7.1314629307898,58.08342621312952,6.124694230919781,1.1561855417172362,57.570443318445406,80.62346781862327,57.742322240181785,26.17648711013527,67.97951081423258,61.98199945176967,64.65753991284686,25.88736244213452,77.34820391362304,83.04493151161634,26.25491401674732,27.79308732371114,88.58685535600453,79.06454396306025,96.08171734079559,68.21495306093621,57.89993696322866,28.135708694850926,28.17101537814999,57.95331464812199,48.9404449332152,20.017506463381906,68.66299341494553,15.58366559979355,46.86721260451796,46.17957420510791,73.30305104973563,1.2328740228986557,50.59934330382616,74.5811422877495,57.14549854743647,81.70378862122203,41.808305391815814,69.42965410658906,13.847896395414072,39.89545613690697,59.33154044722594,91.58720877216652,37.87289742292004,64.58317025640564,46.13005092709146,88.96606752264695,4.046165204667885,31.18703096368115,62.23378616914772,1.78852238153272,98.55036055378989,86.47609008739452,30.750043889412904,17.747283732148745,75.5656290768544,23.633379741984818,1.315552378167617,91.70390052315125,96.94673077768321,46.65087795842182,13.472106155993735,28.997069789962925,59.13265449457881,12.688060433655401,36.14535883166179,65.9711419696655,96.23814592499458,76.77788047475649,44.57643007959615,45.50990509359689,57.295784884930356,3.640071460666161,59.57451123780593,92.35760169566896,42.35605134983099,52.889045678740686,35.28499875138711,3.8940578467341447,63.730342285362326,51.1869062804783,63.7740491435013,53.54271033095753,41.810525600459044,73.05898980791014,19.345428797123255,94.84116599044178,98.46760043946165,35.59976842586961,89.29349173375958,23.588633223155153,18.391116400415974,22.689280196611385,26.889831110973105,23.021737401788545,41.71511974885579,33.68110914488997,98.99126161549587,81.68057940666037,1.4073822427541405,70.91712472559539,50.280676331268396,93.73639801066308,36.556084755165784,0.5532847633052507,9.0467878006538,74.38776153574614,44.310023645374095,38.84066289311534,84.41820630921168,81.36760272195482,88.8023222752936,0.8076260938413626,4.252903619112159,74.10160688401498,20.95905307487127,7.5209431685025585,58.13596568115798,57.47509845458131,74.09012185433144,65.0910369173342,79.59424327852103,85.29829689773155,31.411735439215104,2.65143920037495,35.29223548191851,67.68798214794455,33.660513907680226,67.0053058454889,75.1781948144281,17.595641697544107,58.529892141887586,29.270838748873807,26.366946209570198,93.58688738330352,56.58539105592322,68.34878710194184,36.48368580769819,57.550376099860934,69.2250406859063,97.31218408576193,44.358021542598976,2.694809321519387,16.705752675680262,43.09984107059558,71.6060333136403,20.813258340203323,43.95067916703778,91.2748895357789,41.040261110277655,36.89774877147084,34.301189863748526,79.05630782780332,6.393183588916507,4.638020866632919,11.186433881183067,73.31436026794688,44.73239359321228,36.11656190960635,15.555077364152414,63.86455515289804,94.00367720181309,94.76014150326547,49.127857583797066,35.51013635971759,71.17672306744467,93.1678947695597,51.72775750792948,40.96734736409115,78.09768052729498,20.63197015155136,6.834058168807422,61.813546290636744,42.17699690819452,74.61653145300808,23.37153858427181,98.59817879431685,73.7756477023925,56.47010893411267,88.65861214350413,23.401910304697836,96.31933687519802,93.50168487626483,52.88309701468283,64.45814058248612,72.90815909831912,70.77670738906886,72.51716776263109,90.69485818854734,2.7308445969001505,68.31510180615207,26.925754998313444,28.37509288544672,93.22845639008254,23.336774162702454,64.79452038690542,39.55485802949684,0.07054025845690814,71.35372577429547,36.67473878639035,95.77576075187933,59.8873449935483,33.97718425500897,15.29313195415336,16.72369293912349,23.041193992509733,51.7247809726163,22.396681199877744,86.27576046283714,85.64865951044133,34.04286540147986,29.612551969833444,53.18673781986961,24.92544281172002,73.25032880442049,74.97981522921476,62.741390537521426,6.012533223081851,70.52930459007455,20.140905458224935,48.55179793831521,98.51290229462299,84.3195167830572,6.993476600849002,27.210538201241373,67.07189933377279,2.6767395106210956,2.3511884771134195,28.292345963291275,82.68932521095564,14.590884061789877,38.86281446047983,81.07320962264944,91.67933463673819,58.082853542360745,56.13331185859393,10.402430390852068,53.263493291698715,77.46623437718762,36.89793456803889,7.460598130573059,27.884795241744087,4.5059837182968465,25.93380595011866,81.8844253172672,42.574919670609546,93.9050717004244,7.2417255114953,63.227195524566135,28.16262267222822,37.16855816441077,51.78714355742223,74.17711255028264,7.122456077445161,93.70967572564766,45.12878647659363,25.05760595962666,96.31012863206776,89.27638043189664,40.251993078359895,9.452933095670058,9.523315500365314,76.37221033736681,23.830782625403035,54.365150750793575,47.64028113780957,76.92557415280803,45.02640253400128,89.73771466502988,92.24838195375605,80.37310943843147,68.83365989838707,38.74663432798688,90.81264508514653,40.36774755041449,14.253906524518356,65.49442112014897,6.259037467654438,45.99781894858354,10.109787221327926,63.86045960541158,59.82088483410751,58.41366936290848,61.2948475992162,20.555063062657176,92.81314476170756,44.43787028050181,9.365982124257044,60.99523479560239,31.991787713886634,96.707579722225,14.403258271313124,48.38208044054593,95.0847381629398,95.0561725994436,50.31140957612722,96.36706697866134,0.6445025217104106,96.62174219730274,26.00018280695674,53.919829168796404,31.314847433165294,62.36267476703876,80.91890769067047,25.07723775297268,87.03074507214356,17.553741103166477,46.8295557791033,6.272587008824848,50.4373794779348,34.98461919689656,76.28876232418794,42.68674849644436,20.08053747527223,39.90772787086429,88.58454214421441,78.28746378372179,81.28104575741108,36.6848188973614,79.59389127392306,70.547964986243,62.38312802065441,94.99223227068786,82.88807113035844,0.3241040352267466,23.61107717395653,92.27868249314058,93.16184871336208,38.075295901796636,40.67505517490074,55.741108089655924,95.49777605542269,90.56670585000805,60.82432769888603,1.8906249342462766,79.78171570152878,16.74215053635081,78.83695417613306,63.57957976721191,10.313795144388383,7.359653075078176,12.496281359099715,58.440959380094014,96.69900267596431,21.155551952299277,34.469496799515696,76.80704236452151,99.28598756363459,11.14959991586575,40.9594053327354,41.455029449014745,51.47597753425367,30.208290093172984,3.8776343020656023,48.275294167784665,82.77232042406007,1.593015033591183,68.31955060619931,98.98812033753019,84.0357508391575,89.62180942852999,75.41508564571382,66.36584535061998,97.95887296025042,53.50587697659086,57.080333310246566,82.05077986813708,92.36518543178119,2.9833947686837337,14.235631494158651,65.7261216620972,67.5396035218912,60.954433295627155,11.196834075776085,42.26220760828716,15.01392174739885,54.28744956865089,27.659770817559938,26.378149852680533,28.19590782094278,50.31606469035257,98.38844608208151,29.432780018269433,67.66652093847061,97.44608204128423,4.166314552447792,62.216975877056804,4.812115244795045,94.9319827297521,68.01343743081219,68.95624408119116,77.48203908231838,69.76295082486644,63.0998449720743,61.7358778258851,86.51714710916826,48.29566287852337,62.733644874308716,69.21872268857804,53.75613052902667,38.567678747841725,41.35660514262407,4.768204328791392,14.557078086137887,76.80209049667546,30.825192268904544,85.6241324270151,32.88407415804807,65.76022866415467,77.12240160581555,49.22443106187484,38.931635509926075,19.682888775459904,28.063199952717877,95.40834437926654,29.50142660737354,57.058276814205186,88.94717093818555,73.01892771267867,45.119301286386325,59.89979512984356,70.09827675121265,81.97851589383879,19.1748406524342,2.9731574708171893,64.78582121261512,0.4085207306189109,65.86599823913765,37.7236119244618,46.6449904354189,94.20707608474534,52.72009684916989,34.99432974313271,49.52186875205462,44.80779779142654,51.17091717329225,48.17034944386352,84.53517638332727,60.57434013256597,53.47258991129428,61.591604725923645,23.031595452711386,30.729675243054434,40.93088448486839,0.6668284518125844,78.610956380645,67.3100835021798,0.8850498495410641,93.94049413755103,61.284986370968916,58.87361546235941,61.19153998436945,24.497369999002316,14.803369946426004,75.34392707087346,63.91900837614908,38.03506072903389,63.00374488884606,37.6716280975632,58.59219709457235,89.75074748948771,4.573676279764105,3.4133449575549535,11.981526302175027,61.43450100869655,68.95249812669515,10.648494644445016,93.94854217336814,94.40247595305618,94.32639775945293,60.29680518571984,78.92488132031328,5.919244759843378,59.48301381939621,94.26816834186795,49.726226247745345,38.02504676662131,68.74995615154849,84.8850613907989,39.00802867937222,12.170077504740851,93.44028719147202,70.73260504415936,34.39713579782472,63.51437948039735,86.42841136162347,91.29927077512956,78.93499643838999,51.939925938037504,74.45893426957986,43.88228398454832,3.2761806727758747,34.70670785064368,60.90415154307871,93.60365581531394,55.79813589653993,59.813310206949744,24.868054256995407,77.93468200737331,89.80332499028599,80.01065482473538,66.29329410335842,51.177642888772766,61.236789938368865,3.0601497384924015,30.96251520505261,98.29979769624,16.590123148313662,64.20429385639241,1.4502373247121447,53.07643544843174,6.349998247759848,11.517368700445818,95.06013061927871,92.69606173166935,66.94959558705943,18.604973293724957,55.143979873440664,1.8799272376440967,98.21715648232416,30.736976783995296,33.50296296991203,98.3674923405586,67.54007605900321,47.611145258027484,80.33739818465129,40.852152084153936,0.3614665584310339,91.5858290999255,61.784691465962936,58.295089393446695,66.85066199321122,79.31590783565035,78.46325229222589,9.463168119398146,6.310967884377483,6.653829351592355,21.04424211818334,45.68031783767701,45.640953064705315,53.50211361609789,56.101467012787666,89.20043785393283,68.86994242888406,77.69412712017827,65.65331558802447,86.959139324542,85.05411709005966,57.88813113311323,9.656076913426602,21.077133865432874,45.89794315123318,84.36880666422613,92.70711063139831,57.45141866640606,25.31708838214194,26.333956191967633,80.30339589109707,81.44698475399338,69.5784156861312,11.3913154869548,67.39175181113914,32.16682494625863,80.91447353554835,29.698068401236878,29.748729071229143,64.85837755618351,59.093781087453,27.47339383196894,51.65906610224664,5.250582589736896,6.9639632787781185,23.794562097771255,72.97678359407726,29.95101582781071,63.27478602359433,90.59164011720372,93.79958449706433,56.68065630313565,67.5535546910469,37.38126864621595,40.61889317392463,37.613229307006925,82.3226068044878,92.37338215957821,71.20081525188046,26.961605471365,6.557392537011597,57.2606146878872,10.823748069973027,75.12607395710556,41.42301784665855,31.966414117132846,19.35733371516498,9.395745798069498,81.79650101952632,97.39057976764481,60.102206664567426,8.825918774646023,23.1136639895986,99.58057563333591,52.995633197801226,3.985862405645646,37.3080350696373,8.484927362961514,96.28606161953945,42.535079463260914,65.01991669713126,35.50195204643997,27.43936725634223,92.51252360527442,57.49522746662164,92.5462798225326,69.7280288441822,58.966843044382536,2.863328413280375,70.25562393282128,75.74737371735932,80.0224953119422,26.017685579541393,54.472240332930234,14.081037903716986,56.74424165952202,56.42483679316119,27.781316627740438,1.7463549566603787,77.5988440131936,23.977798908316707,83.56265652701241,26.713054440902916,8.847279305680011,37.57887600468841,53.4171805938348,15.0621534207122,15.45953713595203,22.982884379081803,5.3122563227238295,54.30498293486289,98.12666102858628,63.00704288225607,44.11121055492219,72.32584808306014,70.12705635961397,44.38754902643557,87.21948098984905,0.5823053322807303,63.88754868709412,67.17373702521293,2.0104660440818933,47.16146223488327,40.002948430349704,81.24764082556688,73.03878055009652,66.99449907739528,64.44410041362337,75.47000692707499,25.802887812016607,6.867117597500327,68.311742136907,86.13098655359344,79.19062819837728,26.185941067828942,97.43933234134609,23.64168631039425,74.62023348646727,30.778849159477772,28.905032319774314,34.05495185095878,57.108624063475446,15.388268035449993,11.921803988120939,47.62600605225876,48.22488961788831,67.12397747759542,27.7732014524388,66.47020009521668,91.72231484302665,54.33854089898571,12.538905787172471,51.75052190200663,19.982334786784882,87.5769260881903,51.06124217341965,72.92950044226471,82.98902102608528,65.03293182745928,69.17678289809905,96.71557954347453,21.06457908805156,65.5101118851259,77.94787493390301,72.90296323556535,43.51687690080913,21.63520274960944,69.26083583419273,51.666105852965735,58.77040022570128,74.03987427032729,16.30453703959869,91.4714988973592,53.22657301786779,34.17918536966894,66.727285064657,97.82112871511865,56.824957069501636,8.715836777437591,25.54611257499634,64.52032250111363,30.053601658075202,57.33546296302625,51.672873545355976,65.92810180946098,27.07423704049785,76.12176072850292,50.23748693794934,32.53141057454074,85.78888045737915,19.640362394537302,85.73069749109858,17.23516838992535,93.1049427697648,92.20706543315694,80.40482889602319,2.3393690309108206,61.78449126966316,22.070532340489677,37.19694990415894,7.438798439994033,56.1471906383814,85.12145173364246,65.8667937529175,4.909627723139842,5.100663148850049,22.575259591252838,35.45761116498484,60.54756485433542,40.56122260737423,73.74908871247715,91.70768325331673,60.87849136281138,76.9510380182261,39.843523133387734,67.62301435124456,15.6989186189199,2.125467052854413,55.03877256866767,76.59108315274452,63.66935893123235,53.54526374304864,4.0715882132074,22.956608055904894,34.03672143903918,38.561994424042545,49.75831935759316,56.76047867380811,87.7003931333267,98.00193121138369,75.26475180854547,80.90906863449652,87.7993508042381,77.30500029584074,29.717761393020748,96.81178286133564,4.9423952546405525,53.885474456098294,16.319846875687837,31.889438598128407,12.789400265724883,31.28651399264476,61.847536976700276,21.65691488145296,96.56702126877892,64.4359783522432,69.11440163910423,58.35336082619189,73.26011868285025,36.69947695560727,22.38561239067384,8.865964226814826,46.49666462150381,13.525188984009862,52.44032307881278],"y":[22.134539359481863,7.258181734894076,34.583316326051005,79.10814576595939,34.29580514564778,94.02157166750538,15.894311231951496,51.33675970697832,18.921164222773612,5.800180322865723,4.120188504703548,14.386323752219365,50.216326830439506,73.059564791912,33.25332662706233,47.23388312464958,52.15560136794345,66.84261163426306,79.84150978853334,64.19604356053652,9.79155063173911,3.0658683125032726,75.86371797772411,14.416976548603799,46.62143490780997,5.378597488364722,89.56233096773775,83.04717403778265,87.60199659284488,99.02647982490933,59.901498796564525,12.47133204870785,65.80700519086633,91.26611398424019,54.298042104468756,7.813732303915655,31.417589344419618,65.20365872759875,36.70126110983176,95.80565476707504,69.29511991598368,25.04675615872818,84.0341959330133,73.74397458133315,24.05381955984469,46.919378927493824,67.6807114370733,40.66770470211096,29.833371952980126,83.28191133416746,97.13465941541864,80.78611028727703,33.678665041101674,25.530809440839754,72.25131578782698,51.26499479871555,28.54314914763535,75.21853868176503,11.604798253253056,72.3412272236001,96.54978537717109,74.70026211151256,32.311494700298084,37.94752197700561,20.145247125823985,52.950837458465,89.47840164096777,82.7316022509565,10.713318578809716,58.10510562276302,14.53577516528325,4.6474639828582465,2.444197790227287,49.85000440575001,5.2937512365590305,55.24980409260808,80.76690157711681,28.548527712074232,94.49077770706864,43.16457406520713,39.61308048357522,4.323874948948547,75.03423342050644,80.36159462927172,71.2568503209839,45.426226857574214,65.24635166907947,27.31967832024973,98.08978417485969,8.656285325887335,62.72470108996062,92.85415948324372,22.84291059975787,55.10234773673851,1.926460623787396,13.264032731047992,59.72603697298917,40.91451738330374,19.16211972252451,65.85321714114204,7.684479128774157,17.521891540800727,68.072216182375,29.40247429258743,18.527628242811257,34.88773492422608,64.54223565791347,53.79862963504327,65.04023147174887,67.12017836990533,81.19502895120567,96.360956767171,55.78211592102665,27.401619881938377,51.69384832679428,96.01624847818772,65.43102230356769,27.34204117571608,39.168703409030655,64.0218556789204,28.245036768842002,52.25156487255427,98.90837496400773,97.76711588517655,74.07859609254038,73.60398672454495,75.02393499775457,40.43526707770013,92.27843953485035,29.785887013991342,88.11556070435834,48.272738218373114,83.61558080386669,80.43395773962632,82.09545389821933,7.220885962711865,64.69446795396215,17.999969401489423,37.648793439183535,39.54489554246504,25.594043271281564,69.80881991827876,80.63481402643207,8.20330412059327,13.412735677330556,66.57698118992168,27.18109739160921,75.27644612178723,23.415644034265025,67.06541508115093,62.88885280502422,34.70089147981661,10.52338428599593,53.64649730393328,64.39396913940053,44.62739448258637,59.10074393599152,33.740346098863874,39.001161409921245,35.70666704399505,80.60090818608462,55.93012022052844,50.3092937020293,5.284979617272601,92.33279159905999,8.762616891246344,28.07749915271669,94.90928018051504,66.79026083795314,50.26481992196291,69.38880215156948,55.069085952586775,20.338886775934096,73.44698261089596,51.51266646003813,86.6103982699448,58.02281913335939,63.87391954900606,14.104989722376027,84.98766777728113,13.123055516488524,61.193233168740015,41.16804270827903,98.06424997641203,57.409550127216114,17.72418469617011,51.303590274154566,94.6978816379699,47.414221418386845,1.3502698794533474,7.87737628374674,60.14106693378225,30.63145867865915,35.585171703660556,26.688813969277525,31.616082967585367,79.04522580848126,88.45508120342475,90.84936397957145,93.38217470084217,41.09889069002601,27.756933681192052,82.91642871717787,25.93396984538948,45.04749187613582,27.205404134563437,16.345678813192123,28.565680513447145,74.49606113638912,66.00302603898832,92.45641824016117,84.66816035459665,22.637701164292736,94.42599460591137,63.296908416306344,34.33754429553102,24.598265298744014,54.69386945335381,16.52867714861942,70.18241120155986,67.77629495343099,83.90915021678758,24.799863909778175,40.97852563024333,87.52792490310314,68.26077951734445,86.96415006308277,10.464788112599733,53.27564874673212,38.25473869677827,3.94460599393357,6.157390926724371,21.578502606650186,61.23677771874198,43.47339423980189,17.29848074509518,22.877968146957027,54.33100630481138,30.608315094143745,85.1154628262226,50.633455356170145,67.97929890396915,95.37360506663084,86.01498161764101,75.33629810693078,79.94221101538776,7.651207540073401,95.03697356235728,4.804696678776366,42.1838168251447,39.60519808700379,45.81738184472551,12.254207174375175,76.9416861050451,13.120605057475398,25.521889942697275,55.338573699955276,3.093009836056071,44.21101036398392,7.458179216697802,26.577031805100148,55.43692788715126,75.33608821085693,78.85120526784584,94.77251855803371,38.531124558638886,72.3833386766372,61.95610733602462,10.669817646918823,6.88158981114425,15.344217828727135,46.982663562979965,73.66726102764122,61.140878823194825,68.2189500160515,60.3178356328752,70.3025674432182,33.60925342930711,80.71992222229373,19.802911200463203,57.76296352563769,27.461772271544604,65.35288990536475,48.37630702135992,21.02709642415742,86.96079287866925,54.22403017750479,28.104350945134946,96.79619116697275,54.76186841549149,7.628544109292424,1.6512187294618674,30.16759608167091,50.88611794470494,5.275693534853076,34.973550003008924,18.748552883960567,23.66646965991973,7.964809206022972,41.602340613620626,6.4962305308895685,20.368302106771353,44.63951132854951,70.69674684481025,19.292908873401558,19.594075790295907,51.81696843498537,26.870277079719052,14.777991120806588,78.31118509427759,47.81308340334283,23.56468876996042,32.228622098606465,15.306044404001717,15.119180928626797,59.97765121004368,19.85515362042729,29.859858859565836,90.41308881336172,10.825869425358404,17.94499866918985,30.706392598068845,7.732737562483205,36.95851936401443,67.50905802189449,49.33418731253608,11.267193978489864,7.553761862970465,58.85657381205396,40.57039939897855,20.720603115133486,45.52303870111878,71.02039290738013,86.24862586593063,43.198941617371446,42.924480958442324,71.90789220509808,83.01416423848038,69.21490451192777,44.07107747793494,14.641275874551507,42.49579100547034,84.22320262808721,86.69617269317979,2.5218029814229492,64.69914637205541,45.77336574526332,44.35437200364027,20.838709493850395,20.504001202529444,4.498442618535026,65.17133156619732,21.13083602614292,1.9594091919539425,48.53799816815375,96.98228801602366,22.193127243393928,61.956457825521106,24.550643231418267,57.29337490211529,48.475082554794504,79.19757923872787,1.8351566018419474,39.3212428161987,82.5989751220566,18.418603786575527,28.930051024211025,25.226190095154756,72.81081250817275,22.19562234148018,27.21991772253437,89.4851829249889,20.81963862611136,70.75083340177798,3.61479117716319,42.11508377362533,67.29101660343298,85.64715239276637,30.14103351014228,19.17312691845523,6.474116672157814,7.30325869526427,58.39355098767588,16.663256766795477,3.4769322133595515,85.5576194889782,43.162339392878344,94.39225610480486,96.97536710525598,81.24478759684037,17.10448825838228,81.29722526624904,43.52086045000332,96.40783532760237,72.48547401292068,17.70987268611376,30.95416031442204,7.248743943088664,82.68230826263697,27.674914513345207,0.45890645570810795,15.626900582478475,75.2797280369318,55.98523472517929,46.7300463059146,50.87827125090219,40.96017839646334,72.84407532705053,55.33658134181246,32.511990343947986,53.11957182983594,46.31628111141745,80.39658408602955,31.79535413552229,89.00488540050404,16.175128604784128,11.034866928561005,88.99142308435428,92.64144945175909,41.227274764675805,43.77651408274068,99.09473428975582,33.29967293221503,65.73574319402191,0.3733038238229236,12.212002272588485,10.342481949946924,83.22450288985445,61.64807923873238,0.6860861151415931,2.3503982065998463,74.23861081283243,41.03958500065845,53.505036998695374,78.80162443587938,50.44374233128788,69.69900691137502,43.3596002019478,49.710765131088955,72.20824685612277,30.222828901606057,52.83141657448852,72.11075571327001,47.69055460649157,81.81747834477005,44.49595842259567,56.67415554913357,54.664806253997035,29.10239966050939,64.02780752557534,91.85352972108005,32.12962949138932,7.423871957035666,15.381997156233973,1.662877535619789,4.759055927296496,83.56115381527293,46.976255646381745,89.30185641958987,92.25804176101737,32.70218212255186,43.02755482414907,30.60974831754546,85.4965615241403,61.50311376329043,48.192379985731726,97.91042086269796,60.76194563591898,46.79916436269963,59.0045240052086,70.03158379013203,96.97756806547577,3.5032410752565357,24.564484669517295,17.242468757769846,14.916989950121085,55.274565620742,94.99377899174839,0.29554027546234707,28.328212772331916,75.83363718864253,24.750541492548106,16.062728639987412,10.924280851951352,67.2903016098135,75.45779939252158,75.43830914520485,81.39036908345359,94.98102150437208,51.805427006437654,68.46052063852272,31.8526308398698,21.392249282043142,9.106421688514699,37.93680501568897,87.11187713652302,3.111237161282465,27.30621128920697,47.90580524458701,31.576199739705558,15.462573378080702,83.10423913784729,97.85412364486218,77.60939924203426,35.55383829269634,26.669260922888014,25.674864103814908,86.2500971977702,86.06780510799246,42.76883822380615,60.85388442817412,58.83276603454332,37.0317020547072,10.218879495541799,96.4031562530535,37.56737669872317,55.928897670194324,21.036910032575527,16.377920261986034,79.99850501732577,18.063135255090067,94.92524436092255,64.01820103072914,24.00111058059987,69.07154382603176,75.25298665996083,80.80988950490318,30.71856113658701,44.26442377682829,14.744619101172418,80.83826903352914,17.56666405291697,17.57855976900371,4.028250254026789,47.86415112044081,29.518613293864405,35.876257024897406,6.222874064960138,2.0002589564292017,62.731169995871575,20.01699418720748,94.91094266766845,40.84155157962196,98.807831727694,8.631083224309288,47.824559866342156,27.296613494839107,38.007358897480636,4.353692408949062,85.27852709791411,45.76412074520745,83.75121023498396,65.48560562276636,98.08954918895783,54.65204270544888,70.04280365351686,57.75754956600896,67.03098033241638,58.63521239701331,87.34045550448974,8.109677436131113,20.29125392051889,75.36373317181996,99.05747085350775,59.085333104798956,20.212709315613765,85.96233617348256,37.083960000632565,19.32489165868615,23.24682680193132,81.18582544239409,62.4841439434766,86.11579820437147,47.50435574856644,32.41295004254239,14.926725186381852,98.45344138420093,32.188140048285064,15.285666263407737,70.1257026189071,84.05668113597923,44.42395421143437,27.50212892562668,29.21981778727537,77.58613817062148,20.474619727137412,24.34683187077813,50.65336236313963,92.24506101988688,54.83795099318991,30.11987013770241,62.396438931819034,40.612125043821045,3.758116290470215,80.01695170690913,39.04545396403537,81.436767041893,22.521205529159083,34.1217947347116,99.31541201241426,59.89467681522348,5.094650527007194,80.75572401550872,25.439942845987517,2.480024034625683,56.631516265902505,35.62395024299458,58.965037211851865,82.29612505929497,71.62891647357323,90.8824978042643,90.35544435422253,12.13899819475911,28.860409663749365,29.156821883522476,4.368804248174452,92.5991017650577,87.96910850874686,57.92597091158601,52.63058684337154,41.42451215527881,12.276944124119781,66.00132884033346,85.75583418877169,79.42333009226172,63.49846362757686,83.68282780233494,48.03800471446511,57.77394450845696,31.551620385800618,24.733762902505095,2.717607827304047,57.024871680778546,85.23259580134385,79.40756359399715,55.63558914856487,53.09248021909917,90.68543289230912,23.773283122400013,50.40412814519279,81.20479627037297,31.05534320747998,90.30200594474525,8.513932721910688,68.83875107230101,7.895267798302541,72.20197206752414,48.82030009795535,20.45477148248812,48.713676217101295,3.4276205890545475,37.66444274117238,81.40222091758632,68.81061270783462,82.09313238654752,41.0798179361199,88.26076644553517,51.62583984569158,16.213795966443367,7.104560644569924,2.535810431298846,72.2092954378864,61.03789691230291,45.83822653681282,40.675466165575024,18.558271323912322,19.86142027338338,1.745839580452102,38.59592400164,35.81312811212965,51.89429484248824,88.6688587580498,9.841106574130997,36.11412623790721,53.44592640086461,94.3798984339484,27.942686248290016,0.10409486312220606,5.600233697411461,12.85945385030185,20.425746487227602,26.572931087982386,92.26753871007519,62.220188933453,72.60706689985055,43.36935880824214,66.40089017905547,24.166745290530812,58.92759894672761,59.681526346691584,57.08999023437807,92.27633692714588,38.786235206215046,61.750151980738345,55.15026451170667,82.67141761146307,12.465662588138404,71.06809884804555,47.56570363945897,22.650807853401457,39.79142118522974,95.46695096781545,46.85510259690092,63.8851762759156,94.58456617323469,78.04538334839137,67.2556525039005,20.146198120986913,93.32249077976704,39.92750740863371,79.58206945676702,68.4074445607734,43.533745607658744,57.23121925760798,69.4336891530153,38.27498746248792,24.81343911193562,59.3176224120042,65.30948949591468,80.31225717957064,61.53546815684457,82.68912545155784,82.43340512913184,48.704839049933746,2.4745099892962585,61.31334073994369,18.65737212336047,11.129095668331024,47.76088406556539,49.64878392176971,67.66359566572746,30.743359983194896,1.2010217561449488,79.59076148266392,30.80467440246616,27.15044707968347,49.11845331854787,32.410578931458076,3.8392405808296393,53.882251652138926,62.58660623916433,50.52826710319248,3.677714589110226,80.28055147152847,93.3737935997691,57.69003593976238,72.10500260083388,61.779612417782324,84.83496274695442,10.671847146851087,48.8925497839563,38.39326342238615,13.49933644852872,63.70859166079885,28.50974438107293,91.91374247962807,79.95185349019881,55.89743067717355,71.10869581838747,54.391445981322185,90.30461363971583,29.17663471808707,28.72279685516782,99.0096457817281,72.99334905515266,49.43826804324514,81.58950083901586,87.23517029324093,79.2896083298795,58.478570181760205,77.6561448600083,70.47673678519494,27.264342203289672,54.119619787083906,60.53777036907282,85.0229401653581,68.14540635807879,60.01597424271272,85.70401075038214,59.454199997562995,58.93772265145583,25.55139837051247,9.407056281267733,59.59258842490714,64.55604008556449,4.748501136680217,53.6611275139858,21.869072920994135,27.517924126527625,67.42602770540381,66.76122190141513,11.830381122711419,15.074097245543639,60.60406515857337,74.12410186911629,65.54210450948466,28.749152812783997,69.64566860260966,36.178672305183326,56.56726680808444,48.64295938120837,33.257783129661775,73.30575011822306,83.89921088875619,67.75641558724084,69.1337913475797,82.84659388368205,41.69870476597816,73.52476318590834,50.302882867838875,66.18930920637548,43.3031171445607,52.10785662143223,50.10862870177695,31.181129053314617,39.966093186356844,13.122428470173341,79.03985857027173,56.131522812544155,67.68665710518573,65.41818255653851,26.989779895234456,99.54765634827403,24.499437347798303,71.17218552374108,87.74015953653026,68.99852385076078,3.617716399844817,7.457853998579433,27.479895169309533,11.894857033579164,10.154533618936789,31.699857849536183,20.600965110657242,28.060841830530926,20.109322003098296,7.525354073219537,14.950549400275936,68.67800715231624,84.78528745263851,82.20944761065466,26.827559138787404,61.124685136496524,84.50486276638514,79.01507267762497,33.44117811485635,46.28943236560556,52.122994982100444,1.6724621828373532,69.6450961423696,92.876293572789,73.56208798050687,17.887259326361217,68.88349977527534,19.308040964977693,46.32644634567393,14.277087090716423,93.02380516487537,81.65056674776123,73.13479809010663,91.28464002821065,27.31994819337714,18.03426517251836,92.03972585900596,44.54015575361234,92.23926355260585,48.04357934995871,29.54292426998151,13.375232012081417,88.20510577446454,96.32922471867029,50.6707805021278,32.53747464089676,19.123107048108924,51.01785735825931,65.51164840909519,0.2967974041677479,65.43778984389995,44.59956799270156,86.46798401738417,13.829153906331282,51.19675750935274,50.77031758019375,58.34646976147814,50.39911170366943,36.09853420692561,64.53112910045725,39.273156404881014,54.21697564884529,8.155296296696847,19.073400472164927,72.18528986101279,50.85658149885271,94.93320281959102,17.135729288799485,36.15431008583491,96.48185625825802,60.83490779220572,3.6835549506673004,77.17438152295324,12.66720213283643,37.39555166284191,44.89624646414892,92.08003174174168,57.346490670567384,25.080580617649705,60.6007454582256,97.02151928634053,91.28647672044343,17.99856244572151,31.104115944421075,39.29393148805293,27.635046849457133,48.22860142811582,48.75678723375406,81.39034458616177,83.18151684888461,29.67316208351829,43.38768772448823,25.476394742516828,38.273092247990725,5.574456944722728,67.20076575310634,84.97327341823787,98.60246898257907,85.93358256312874,44.56307746462682,15.234522355499402,29.30951166591702,20.649825289492185,6.412666251057075,56.43429901922726,5.061927041843017,76.52172004906467,96.01927759846498,0.43438077557774735,76.4796322895912,50.568085835346324,15.771187409622511,43.60710206483582,12.001110015779847,32.93674792686539,35.990312117733524,91.68901568414017,25.823947208810637,98.8419504866153,21.95129977716247,33.75660149098396,26.055359164230506,79.28779504798032,79.99047087404007,38.36739563709567,25.777434110631013,44.55454081878932,97.3656712925715,23.77165481534721,45.46988623874696,80.77315820133151,0.04315028421275624,35.67045836895561,63.809002699231286,94.2248552533726,64.64572225053878,81.47040717264507,42.26541519655056,56.85544395175716,19.4376550192493,98.93939753892131,31.745564979894258,89.5561591776628,79.78425502817271,15.395707762662159,13.610454957558737,92.31297712910053,95.46396131821189,41.974773258838596,81.36881813813717,59.5522240688261,29.891441019651865,25.128008940550828,78.6627187553195,95.64882627224863,34.02116142231451,97.84132476981388,74.68534770312215,62.23407533266324,87.37114894770774,58.019292372753114,50.63012967545598,16.321814450960247,23.12978082509676,63.26741362175655,3.893728215560033,91.4696487190288,70.74035704638666,2.6775462062556987,58.514511404295014,94.53166312338543,37.26035466657699,92.4021558854305,93.37116982113058,23.52052173401219,51.76994405905101,85.87105972592983,82.45284015796034,56.82415986511599,34.83009505001019,52.797021387577715,9.039492576813634,19.806955550345695,4.816923373209081,95.94014223341041,29.10549688708738,8.386352150125154,39.4308291009764,93.38789326452934,3.8658187272613165,89.33021340124574,71.15639624476906,43.5687794776042,48.60567477735237,82.84076866206465,29.431715873695797,62.60988811416269,94.07649720636338,70.02972088550791,65.34826299532071,75.5551234836764,62.1914673100173,54.72125003151326,64.87730520323551,80.01649597903213,73.5051006603952,28.071886989079086,37.112820787348696,84.5539733603263,32.374731593198355,12.21947308887037,52.72706902598109,69.26170933756244,97.9547699722055,43.839481803031354,33.55833048028833,37.14896698320208,9.972777934276467,9.006349258687385,36.26058140643057,45.45166331103222,95.40012501979706,53.399460260938035,17.526510754123425,22.760758064844723,59.20605183988166,40.0992102522286,49.75583845957999,87.81510508201967,71.88720741138354,7.133317841309306,18.642210625842125,1.9503128383405843,54.23769062880961,46.155497019209015,39.06794156084145,49.84737313554932,64.16349459839707,28.86551885416261,35.00024349019147,53.380845930362106,64.59145469384625,49.640989742238474,25.655212091291258,43.60357465604857,41.93664977037851,56.06547568461796,24.401714945158393,65.00610405335887,83.7180259275134,59.03179560743872,96.05866085156968,79.41557600635235,14.18383388648855,7.938120734427678,57.96320491962162,36.22247706547051,39.320472541508046,96.35178272447551,32.14294741380416,0.1500002095098818,1.8224987522576064,70.70866487963472,7.738686328873512,75.82309997681132,53.92455549584739,73.97744636665496,38.9757146044454,33.34196739570052,30.002986428134403,40.965158559403235,26.045772883646066,4.281085621292602,6.195911046234848,89.4290340130697,43.92103023253354,42.66358855768534,78.77536585335322,99.04612110142695,46.24304835412127,0.284755448333851,93.38341374081605,34.32195380081401,52.187797302694115,91.80740231786206,89.43050430501464,68.20925113532135,1.284600398043978,56.51025551949404,54.67478918917673,7.628944341025933,10.45921595581274,88.86211694163775,58.20679372518107,47.62150390135349,32.313739318453294,81.98995975914956,45.66531871253338,84.7058002123415,33.130929029087056,58.20818886354898,37.69596964809744,64.12671415738565,94.01505188702349,40.105362140568616,94.20015407782863,81.06847981710047,50.92221361453091,17.373646876965932,56.048083503273425,63.14496817857624,25.2592870538356,20.496820290322493,7.857035208570007,85.36390464244464,59.935180082626815,63.244482036985275,6.0109194178991965,25.68054175502287,29.13694303827794,98.95239188263564,25.61071604718861,54.303012214911206,1.0731848308941139,78.31313152343762,1.36274194844338,3.2723671097949047,30.34291801549719,15.403494413134478,9.922321488469821,17.67590891943831,36.98181409262345,42.8685320534774,95.95966048192025,43.293665815436825,76.4805837795547,12.280064829361914,22.44042151439136,90.47715260798228,60.69147918443313,43.75162641898305,53.15095316485584,78.10428919990659,34.87370221224254,82.65323167562502,25.47682155972556,94.2284727373887,35.96904880535503,43.19196223737727,54.98411565274155,98.06018818680535,5.593048306150528,18.993920206292437,39.05800372906597,34.580509338285616,3.6127167076609457,78.49460133377755,63.207436371370896,65.87863243984438,97.8585355119821,91.6054685619055,93.10461989623413,28.86851920448499,61.03590338057676,34.264650422823784,9.827650241001962,2.2679804917213553,33.233132850235336,15.593235076694167,96.71681385263004,88.59815508064824,99.18449042568939,24.55504290625906,18.70110984466331,35.472262575296256,64.04425177290932,41.72775314468434,20.889596829318823,51.74732814349616,85.22391628806332,50.56686757693799,43.81388081738776,44.82982815270983,66.53839630000651,67.10811238682449,52.153504505841234,96.94495909651333,20.26555016149739,83.90278415235508,86.29526441659429,86.95542756902567,22.700460740776684,78.3114951658338,39.075394663275496,51.5582470368978,41.139306830505454,36.078764475674355,76.48916509174649,98.85041968784978,48.78921565733416,57.939855839474774,76.86321104794435,60.147966998798694,25.703508184929312,26.21807163774985,50.310502956192174,92.18527388543194,31.86404770608908,21.397858696182205,76.55967232066865,31.641396357280826,26.352172239733306,98.38765172158219,48.33886047426801,57.743150460566795,75.53763083457713,8.695837918938699,7.035403627949033,19.510043955602853,66.230377065085,27.128367523685814,14.276121715929301,3.709556430082117,33.15194543508228,39.34728632893001,54.91296733540126,49.04080076592203,83.0152486232394,40.95277385691346,14.851273010580513,24.863781565451358,83.79366772038946,82.74039945793713,87.64831945852976,28.9844953341028,47.40084776524445,12.864409466268024,11.887292731129072,16.48423880493557,77.1548278551004,96.38889201555956,36.43296652646434,41.21570132111809,41.418211595930565,1.6659124551724802,17.251382053624752,44.94190557323235,76.17859219901712,77.82833526218343,12.159783834519422,89.45876538242975,40.50101824934643,19.252427487873526,91.68912658289246,71.80933708567791,1.967935887200134,37.832783104264834,17.196517536678215,99.21045120493842,96.33814414120188,64.05740208589911,50.75688242862717,54.51461260605031,70.37483985266917,4.607425728095372,61.7297807184124,81.83804770859804,48.12294528621772,22.624614315121782,82.93296977741326,31.59736391903666,26.6695322884699,45.62328279122343,72.27901821262519,87.30256098329278,35.961079400656814,27.066875037471338,27.728030037569084,34.44348140559418,61.5309895941883,64.34406093039078,20.08766362425002,95.01500067610108,24.04668059873325,48.034571356559205,68.20665508928568,82.29616269798952,40.6903074757184,55.32340624795693,98.7583518900405,41.484750763503065,12.981347202276927,36.292739925643104,27.603809767689835,90.16435528760137,59.34867981018559,40.339998442062694,37.782606907962744,4.3093184276380425,93.97952788155118,38.900973305999685,78.76146617551866,37.85207845675899,81.81592293536993,75.34649568969193,43.69676419882006,96.50092017763534,96.34989590297162,4.491689024367473,97.65705241605419,18.809760064695336,80.46389681042744,67.37726663366061,16.733377400101034,21.08375169186938,20.221542898625977,97.16624697884042,16.683181860717312,92.19410308859335,51.19157963124508,43.90892771449381,46.17338177371572,74.6015413255481,86.08178466400003,96.3266516711058,5.9688584118580135,8.059587559820681,75.55679877274073,93.4044887481987,94.3468421182923,19.98346762933202,99.15395079795273,51.11520478904047,20.555585423140087,63.75956337524964,58.89705139289032,56.578895526488104,90.54967621595966,81.2618941474454,32.93554329250432,47.64510894998498,91.665636567544,29.486865251267325,52.10314391175837,54.30405253427688,59.58625390169957,15.638187392158287,42.397421762640064,69.92791303126533,17.700404508812827,85.4220001975437,67.92177266615529,1.8472074856337395,30.338528731993197,2.6900240105292905,87.23352338298515,59.555468039504625,6.828804289575407,78.92477179009883,77.57281614412157,47.66465734732505,23.995700475529127,85.63433460758952,71.27150574261466,20.558256497066008,56.39219234666014,6.0823021846940435,29.46195823314467,51.37050580868171,83.09868874580594,57.70259591573779,25.61192175192174,15.717109744688395,99.23748766964941,29.092185411080575,88.69224151330447,15.081858704609818,19.61252276651888,55.70609670090649,88.81532597791903,8.798407767830696,39.531059279801326,56.69456124626374,2.0860422632320907,87.65173552203278,27.246884100750357,66.77352587134887,56.81307115284942,24.378343219767416,56.02375621781251,84.5616337276897,4.049446548122127,94.80679039851232,2.389845177700556,88.91305880036265,51.088608580081285,88.98340396699767,15.904825941786328,60.33243125847411,8.596348314841883,91.50867979866017,87.60875601987492,88.12029071912548,86.67624667164644,82.49376388130942,95.25245270752187,48.0859120972739,78.6583356084036,45.97066270806229,69.53278695466241,2.05506513689937,52.452342969599385,93.8468541433464,2.087902429970223,71.49982211502756,83.61980271034938,22.694418019737473,37.24200638169307,77.4275794603183,60.36737338898072,63.659395572524325,7.181659246810835,8.573087587799666,90.53690008173105,88.79176253841848,20.407399006040272,5.674459330509651,64.00611474595189,1.5201820721883919,46.31525144330338,77.80203702033715,65.49419803583633,60.98493339621519,1.831823532549437,55.907312853939814,76.52899730693568,82.16639434207096,42.62679487022909,80.58954093874452,69.54469051234695,26.285173145684894,80.4218561103126,30.913039991768045,97.79527186034592,26.518879898875724,44.740535904776216,60.54519011512854,35.35066305374103,71.82006812266656,96.72495926702271,77.79837765713043,92.1649970397963,17.546099522847058,28.79782110754203,16.40595851908656,44.61083518963132,89.2034004295083,17.431851853026902,53.2897103699835,43.9622799665726,12.174130007823813,93.7942975401117,68.61999766842229,42.11929660615971,81.60763151913501,76.59932490106746,69.76961597061066,79.37700630046616,86.63707456240364,77.94694582233485,18.993833519269586,87.22274512633852,76.70750057093893,47.28878003464067,35.50828062816673,39.74578253175635,52.503077670691724,74.14576753837825,18.486192950300396,43.82164726907959,2.9478652859130205,65.32709249024332,42.87750974750655,51.23199232345223,1.8540798985923646,73.52208924346458,84.22515290080118,29.17877165262829,88.64800012045066,1.6708982787071336,45.10977046499378,6.675720991032696,82.98293398828133,75.1104190791511,17.951326412008562,49.17196443895332,2.3879375680755155,49.065835882424565,92.74196365599494,22.418732776143102,81.97963180248907,78.80774555668613,31.01114665392608,46.090863281763525,43.55378826691306,38.15740586272863,7.0175367580250665,9.137007395522744,25.113718995061006,78.0308449993972,56.403732753616666,21.308148037389007,44.58037179676555,51.026070873304164,39.02305960549014,77.52379281016118,89.59422641769477,96.0644049116171,55.216161000392546,2.7226514778884714,68.46971834159854,95.88624146351253,66.38015941275654,35.267135269513936,35.2664252209159,70.33433552887452,27.04503707624465,1.4908970910075259,75.71185371245407,35.487194929009426,73.5693190871433,27.79276439930738,20.461251432785378,83.21535796569275,9.576421057173823,75.37703508020532,80.32435065023925,56.5091296617527,22.683810198142794,54.71014945079424,67.02603836826225,77.7002072666342,44.70240452312454,93.94672463220594,96.58689814661717,10.306481140241264,84.08893344246512,95.69364719560053,39.29129610570844,4.70111025610821,7.064528128349668,24.55782325379463,10.43096927565237,69.84604683167937,9.09044172670156,92.89917469886649,41.8609522977613,48.83816389554917,56.34309185945943,2.0903997487370263,40.35194922502298,6.571526554459439,40.60370557279851,47.299632597675675,18.04618144560901,13.271718846927572,60.11599584520289,62.026517860641086,81.3512712721899,20.21349715349582,32.21730401265246,61.56086212558084,56.02928835732308,81.2950332108367,40.63592196798573,52.551721710057365,42.31596141694899,21.243768266823338,87.37093638502346,22.2616141196177,7.719851346975215,69.54025966818749,44.4925036338482,44.544992331592915,78.2812081725244,94.94062991328046,20.190372012367973,91.53763501142825,74.23261806777562,92.10112516236359,0.20142873295896369,50.35112345062658,89.48425221228341,44.41955299497705,22.17191340267235,22.12738975231795,93.10452718018176,36.1786328810925,99.36991037388032,59.99714254351966,54.65519118590447,99.34788540131036,83.35128569951013,35.21348846761263,27.17793899359706,81.92392541123013,21.420692098735806,13.18021012267142,98.0156812491108,29.230371419733416,35.03931099332828,11.593941785693683,23.81585796510681,35.60984722932139,37.57165807297571,46.74073102799816,86.55165956822695,48.47772416719545,8.702167273139027,53.35547972363241,26.81630634940042,27.904169141722925,64.79387430654354,69.34785515254413,41.06416896677773,43.005026793662296,57.55564648083962,22.37540699208257,65.1718858231361,1.5028961598690382,71.52162121202487,85.00454472608521,50.130347150643715,61.257389355480164,79.62279506713148,90.55934001431596,65.5227047664322,39.93093735325148,21.82913128661559,41.33224218471058,35.110815539589964,76.52144682242789,60.56243582149406,49.82274758048008,75.1931668924119,44.370152885535916,65.96574515870668,29.537413639326626,41.19771254756957,58.40541810220016,77.00179433728317,67.99039118315346,60.674731818044535,48.31533423331413,0.07017551385791743,42.62322790000969,18.976832542749744,92.6404042918265,90.838594224243,82.36948541392692,18.211521984813007,85.67503061701986,96.35687728836197,9.361774812106027,67.83099393634558,23.131542097308,7.678805684547263,42.88723870663254,64.35660071054612,26.309075535558136,33.83566830912119,14.788370338759528,31.60197678908342,13.534595335375121,87.0355483473098,52.48681343776431,42.22180646714396,72.97777871837047,52.44161334404897,84.62801438359354,59.676018699346834,18.929442542399332,61.78147684828491,33.13665762320509,74.5792919801526,8.462031277753024,93.00539753315961,80.5757384395699,99.32242683640408,30.756794537724797,27.127190212717856,67.27725833614225,96.38076554829486,71.54894700241182,87.90177679704169,83.04568147037853,73.66713677327868,51.420561564586755,34.18613478500492,9.343152197464576,18.527808479912167,80.41597428604564,48.82582355709656,76.81697297965366,49.82185022022158,1.131116792633713,46.65192969380889,52.14219058091372,40.600542670864336,17.372610057095116,95.23774435289208,51.53815516180737,71.64116881883571,98.05629796382797,1.2214625660787903,59.70554708876919,59.133076559871235,2.3981188970451317,47.37260339900741,89.4212232089127,38.26315841407587,35.66929492034727,56.10751775091632,45.39014520341209,81.29409212170765,26.6280825226213,12.43238566799758,79.32950081803749,38.01315264133018,46.21770072950908,32.98575976545797,5.8258844048988845,99.83652064030959,37.148652422482506,7.146426037698861,25.080446952251744,21.359883687683567,30.01124522791162,79.27612847201324,2.5238415568956785,22.06121962386337,15.847860720045958,67.67614396135069,19.68242754409857,88.93095412649096,62.041666550333694,93.1769550618333,46.898539903206185,53.76219062815295,82.4478473876455,30.62228435754507,80.6085901390461,85.34770626318571,98.95302252346373,44.38143276733081,22.204834358605062,0.5793120228378856,46.607785828481816,7.9191190222861145,88.83156650210034,65.22206727696252,49.248623568195725,1.164308652798851,76.43213810059288,20.96848622170844,98.76281458567412,72.16834546958091,75.59780849644523,88.09592276628061,51.51436140275602,81.70139157601064,91.8651198885691,90.82619592265206,3.4730067487170557,36.18834323822334,60.33856213610645,24.790393255377808,4.8084219861964765,99.26213551673993,99.4433500115706,58.918220572059724,28.623639311234783,46.87843279030434,53.59598796248708,12.37806641943302,2.7750970195690505,56.111288196303846,92.46712717838133,90.46421635363149,96.55819071380941,18.350859423468847,54.45789540500565,27.211122941553644,15.05090600745913,10.10307113048099,5.627044204753229,7.627793253777703,56.10626113428311,84.63254204332905,26.0479064382112,29.426109973973347,98.79814501541505,44.35605223682636,49.39096337246164,54.65248124313954,84.05626491089762,60.22653483633628,18.825433484277088,7.054189427933122,92.1562445284957,62.54647062087801,86.54283685474928,64.60659941018193,44.696313444547165,68.84215323623637,70.78948870593031,66.38279622893107,71.10277489597149,81.38053792475152,52.81033769458986,25.52133502298425,52.84735068545029,51.957534265618996,40.06286935294465,82.42893761157679,46.574426906168085,37.93946678894542,2.5389898550299606,23.183993126356295,87.41514640029307,53.053647348027,61.94762993395126,45.97445006508162,36.134251999007226,60.41323852756264,75.25033808838567,73.05162230306888,70.81069993168393,20.354677671845455,61.906741330327044,68.56431470876879,57.61502155728846,33.72327295347317,82.9170365404311,72.57967959346396,25.20877582927542,61.061284040223526,37.2112089832854,22.1442462840021,19.307542611013673,59.08958274682955,71.13383216223926,68.23509800126236,35.33587871746718,33.970937976943446,46.128169570645184,44.16043214686379,75.22081167759805,18.555628547412006,35.053577408091684,63.33993574116995,43.364603713859914,42.396633523699236,46.543587424975556,7.366708339584738,80.23123545211412,36.56624092080768,21.809039853769786,18.134463457498175,38.9381628612349,58.22857987717103,86.58634668524373,39.58419201143607,80.49299469626253,37.96476604221567,52.92687830079588,36.09836531482481,65.53011321725297,9.52588043729341,62.35888429392811,48.92552810551491,36.29587127290348,70.55356916360545,92.51739683902494,79.25045330632439,47.22203287978709,58.90138976941558,31.35870633198935,5.1579762776325815,28.646502406415653,30.314492658352556,50.15138959364306,32.05270121679406,7.426908873033966,43.421314153467215,92.24129113398781,79.81629420435814,32.467849956911884,24.582929031547373,67.47079176261701,18.771592407028304,21.332691124047,50.040705896112584,54.754112713156566,43.879675588867826,4.710482393500537,70.46366752754419,78.04853760918968,48.63125023818683,56.56928918019726,33.899340753474085,48.73598393480759,99.56491891730921,37.47244027524717,5.107745793668917,75.52577284501038,12.15147719541102,42.61340339750333,51.18244173720727,21.193282098510814,75.5184621471053,42.76229142984349,35.25185517374852,51.83893894565309,45.91835040279246,96.08676652518604,26.28524814152996,3.0176185264052635,13.912756894225907,45.74754790660375,75.51801670217,81.07433452528706,58.62435936811351,49.52321018980125,69.16589893507317,66.46017662899294,14.043463235497011,65.07342497624045,74.15630436785106,50.48160693096586,74.6091979172284,83.57479521811977,0.8398060007583918,98.00641878546935,84.43275452054534,23.61940752488093,45.67722275140649,72.44512581054151,25.994256126838778,13.225700533185393,46.85378815999427,21.72963571104065,51.448845526969514,0.8269836646643824,81.07580969319037,59.67332343140711,58.37146916336041,6.706796908267676,39.04451450629687,17.75399930835293,51.78486003111124,83.56435219830416,6.63121990634049,17.01283163382803,63.64917881862754,60.48978653003433,3.325741642285218,59.59745831961891,82.68187053925456,28.412058974193886,20.260606607855625,38.36077637367489,88.07674108657626,81.20910035169831,69.97504719360276,88.4711378369664,81.47875353941639,18.458151906421747,74.19881200696248,81.9545051130753,65.43364595173607,63.26593036266009,92.1650825868736,29.229543464026275,43.69434627972314,23.914473783438737,59.7316028839447,63.237345321389235,94.55169730637408,72.5158207718198,43.30519210285338,12.93978621070535,54.916476443488385,61.387392838336694,45.217460809780185,61.18738442651668,51.119812331931705,61.016710882072054,80.20361216630839,68.44874891673685,2.297724281831126,63.212497325927885,82.98797272227615,41.826542780119915,96.3925929232914,18.441570226269388,48.814903150777276,80.55782343611713,84.16521963548529,47.305700084038214,22.7978966052098,23.249384076596733,57.65326755105251,91.41442878566022,22.55568932446501,56.641856664611176,63.41622442851816,18.673946650653093,10.86259398207352,66.52319923157866,94.26976442383499,22.113995253876983,50.668327417752366,88.01432050168134,87.19615917809391,12.3933158279951,28.752564698749538,10.295431127090248,1.8289039199361756,10.903324557944726,39.74704808805739,88.69074598368127,20.439339205459827,26.941711559976056,96.71259523421784,64.93030343850164,58.830656112491056,9.240869172144873,2.2821319534221507,23.64717951292897,99.59213247831347,31.58451690622356,27.53010853938418,88.99777992964553,60.03615846482244,57.908772371593706,56.56590017474604,69.15687935788351,3.5812216695192967,77.31252143397506,34.4903751825096,15.584641336145555,84.6984565784758,83.5593518166038,8.705421809674919,17.993292947843198,1.8385688601584627,67.64170148529554,19.43520266411023,0.8785224962134963,80.74758579991426,91.1330335616141,36.24539687481926,70.5373638766437,2.4939610409420054,33.33319892112233,64.38251685074619,84.11115757000837,7.346547926446323,38.41685444887638,81.25170221968044,11.806995327846536,41.27913441190715,23.52946126897013,13.047703367535245,70.64377425287725,17.801061864196875,90.17680414926558,86.85344987179725,22.363201978903792,85.56293588379035,46.03437367746549,32.6290388898198,94.44623813883183,52.55533136366542,41.052520948455104,72.85430483697625,88.52753698875382,32.207030013819136,56.79507763573619,98.52989992321078,98.55257530808487,14.345088022609398,20.306011532887847,93.0902514446273,81.53449798963833,56.88354746189579,80.63099338015226,19.050551748021782,72.61735514061071,66.09487033814108,56.691242240409615,18.540147253749595,77.48908142000884,44.52822986838688,18.442771080817522,19.60509745719993,95.23535301513675,86.56185263636546,11.095277611188624,44.93275207667169,49.588647904371705,63.162010702237126,79.55214635302656,84.23937614297695,93.00766286040236,37.52183534885546,82.94624842905606,62.328161564997146,28.299997598289462,43.42001581463498,30.500141075620967,14.22410873669392,49.35380967997246,19.2313985419309,92.24985450836957,2.5760725300614795,46.1305926091894,80.93467584946771,54.36275230669631,44.819346793729665,6.9112594375444925,80.18413684841474,53.793174002348245,55.189923213332236,24.074513782653927,96.86683295277868,41.080592141859725,42.047426199668955,56.51482150015427,96.54373709257851,38.630594469247804,3.188521785463583,21.13275248292711,79.78657278825817,90.64654600588564,74.54945011803662,5.430898103802595,88.16266819106225,61.401394084966554,11.247047193436178,64.80994367787441,7.85514479286814,16.506991272975302,45.60187753890865,78.31568277408002,43.97054366494366,13.262654738216217,40.16387464709135,3.0219801347836417,82.49518746867767,42.750776256971065,45.43842160691241,61.45728450280844,52.28987957508815,66.80237823455427,58.46677872763465,25.56883477002475,89.43531665847036,68.8643345044325,38.198081987819755,79.62989573743934,8.4488994966039,87.33294383812749,76.70128045433276,12.094576975708183,97.16714469480743,13.803003432094762,30.297685597982195,89.08558513503156,63.30526866721639,84.0805848094903,75.2703078654785,62.16522634965437,55.60272417215849,96.449827559686,78.81116364156937,55.21134831923199,39.73570801916531,87.12893270327194,43.31497534262566,69.85535316635614,32.691087659113506,23.79708300901555,49.98067821244223,20.020758952970485,39.18196506049226,95.23017801948669,78.8200040182708,13.04602652641499,2.1192090696465993,89.47158587959179,51.33270054483637,23.34149469072254,77.65306576482162,36.190732296706884,40.16271637603365,44.68060427597944,63.53988534574398,31.528913058688758,63.258575046574705,79.55579277689903,2.3194969430301415,95.00370583863416,66.69497710675017,51.01072314824159,23.758631644689178,21.031662911076054,76.3070404761202,41.03702632286507,51.21957504312973,17.049624182130696,52.9566632379964,55.92814608346185,66.81833072230951,56.30093226967002,81.94189871273008,4.289275152406857,55.67897735308506,88.38483333936568,49.87378608468263,64.29462509958971,23.954497605893387,80.65986026512513,74.30938832473338,1.9538951449483255,70.5695317313749,69.61720070759579,39.69831789054752,4.172187273205208,76.14520676428263,2.932372669317418,97.68415412028313,8.426312304172278,48.794781557723276,22.589718281107316,9.087231768500514,40.14241560358085,80.33133926857185,15.56232109526039,91.11019343783384,82.99301009980911,38.67207837102329,30.42374195284627,69.14517534491371,59.71216841272763,44.13021743504345,32.97136541132403,78.62610782198787,87.90997825127013,10.767157971609965,22.061216767730595,61.557661151931796,69.6152459428654,28.364633431271336,40.07988527279224,52.94184110044886,4.376143378779441,61.794019946056224,29.68197496268702,23.597479820377586,2.4324929525039063,91.72011998904554,42.22948523436288,42.10707681637265,81.68669537279588,20.838335447866385,9.929897545335177,8.48452397521664,28.872871738039585,47.52909279212435,15.561853642339528,86.61854945591837,63.245161806457574,86.88246310363152,45.554490888829356,58.5217923034953,93.70897955365062,37.90106612302275,35.99476894744716,73.32899689443109,71.03832804868716,32.45750107424355,37.47044514517446,82.10285187868126,7.774105645391627,19.7804127241887,93.54686767566012,0.7925294398109406,1.1878832997376798,45.295950537567784,34.64387794554138,4.360331367612636,51.96951515413046,39.275746335569615,26.42094471834958,31.140073408831093,10.137105371153933,16.418068740186598,4.85615792395484,81.197062040942,48.495479008410356,61.568054096108035,1.7870022970738586,26.348345359032955,81.56448227134256,8.328033238736232,71.8632687487225,69.13237023258398,0.4568951046875269,71.6738771456067,93.57901841232452,59.62211753626663,4.197014740187443,69.22692641989988,36.43590954603503,94.71799079469963,18.893896821155366,47.65299298751336,49.09033196906923,54.154272548693214,93.91100753525548,10.458594499713392,14.264501230369774,65.1538380498308,33.73661801497138,21.96311049800659,95.41597632256891,87.1488593499433,57.31591587595,99.8175464694868,0.8684428103164832,88.55525298269922,6.43086478020961,82.60175653581057,20.940763552087038,87.1630448918545,88.51545868323582,53.29828101763716,95.47144345611787,64.36112812047372,18.002250512190564,3.554111665072446,34.86472316595246,76.63579680094367,72.5657672800747,6.104637540260915,61.148299463329266,75.28317492444296,31.30153729057923,99.74803973445903,13.705725130548775,20.777829915808976,3.554676738503304,9.196479960261673,53.94494093417597,57.1632822145077,88.86394418538033,32.25000283459445,31.743908511735807,88.68437036159698,97.27227483505729,65.60074474238833,74.40232914126209,95.10481386258444,12.773763036324004,17.291309843801518,32.8814565586773,72.87269552304977,95.63205353318031,77.9381524727756,37.081664094313346,40.40673857806999,37.48538290726751,90.96336533767199,86.63885159196822,33.980337636746484,58.561597580071435,41.95849522297982,55.2493306043197,33.267083949574385,17.703950014643212,11.202512681586352,61.25745778544245,62.192947951494816,70.86176221023395,90.91329822672867,37.809696640746324,72.59173728741692,87.82403481078906,43.148341868019976,34.25268899652452,57.20395925748824,10.771824748983272,70.64880317909503,81.55787413735541,75.7860123936632,59.64656333162611,77.82923930525325,29.54189079952343,75.69521576380495,38.174112938260876,19.31288652560711,30.98350244043162,32.59096503991049,86.68063339529105,64.55637390649753,28.672316119134344,39.499883529419,8.179599845028019,83.43427709677775,17.862919802690246,9.23944329147066,89.41018103248133,50.42540129248899,78.5514348957241,19.168758390279738,50.41274034123359,9.517601778021245,93.29205378423978,7.1332039196760455,22.488051420881348,89.03154152447516,46.84422807151821,73.56019868510062,54.51294650386884,72.02033749366325,2.702487823300681,94.4364035618423,58.07094303746499,45.23340939627985,94.63856934621082,67.3573084490694,30.75008337830155,24.51331053070206,87.72502088121247,53.46341089186647,1.39546112358927,78.83568099310044,60.18857372310824,94.12371719310514,22.68908928469485,24.547371665006313,74.09918190522974,54.324027226776764,71.34197609560887,3.0367737937274653,59.72233648941382,35.11168525025254,12.308956070462285,17.041326024367855,96.0384774674394,42.80513523101869,75.87841581946664,84.10749357276987,20.13070523532693,53.77126032417697,48.97927764281897,12.338144633480042,14.707786747189466,56.20467534742698,14.657110699648301,2.8800782422334192,35.87125274518458,98.93588127241306,9.752857830974271,81.63631658779804,60.102292217497435,68.70035309474336,99.47624021501623,62.31092157828068,87.02524189151111,66.29305596121463,96.28952947266419,27.471203876226223,48.03933710264072,81.93256878720075,70.3630112585519,33.51788030994409,65.43337404567168,95.95903225050172,65.5167905975222,56.35385473855222,28.73571897672752,86.21996199266346,9.671077514255611,30.163285047544363,36.848800101478496,98.43992786188778,90.97437390035789,89.93802367531993,54.80357391688948,85.99443143446686,4.582540852731343,64.39700986910451,52.44290414021475,0.45878279959605806,30.093547957877142,39.473439834864166,48.915201580662384,75.60245339071594,77.6172858688301,77.1405461704663,42.4023451725573,19.328138124654835,18.699401264541592,22.51296443350148,81.4762420265556,92.31138482037686,97.7068280198631,68.51137530218074,14.877984898057651,8.44250605854382,82.1607641060773,24.77910656921287,0.19740686554464704,47.39814935581015,78.64905094745936,96.4002401419823,15.205446331509043,86.5621405779566,32.359139589972955,10.822532588468626,65.05867273847666,70.50615891542854,27.552907834391995,68.55712597573772,40.18706433776026,5.423526603954665,8.611238123560472,85.47478722158193,91.27375544297414,25.189848319141007,98.83012480629212,13.149777518796768,0.7668363228429786,18.29933078421839,74.16744563935225,2.499444860492106,13.268334619702538,68.3061136973016,38.29963476106422,88.10746076632286,39.77139035959707,72.67470757432213,59.133425962379164,66.59701404610414,8.02170182055506,88.51322250131192,29.47252139128319,10.030860341740489,3.680898911461472,35.647282714714244,26.891041422684225,34.51464474405089,17.41382430389413,56.80445033123398,39.67351925560927,13.870453613598322,83.61641740053415,6.79650922510453,55.58097756738217,92.40985556830758,5.8560640348190525,6.854822626853707,49.94864766234568,48.72167001249908,16.06175478449926,50.16393127598685,51.97260552756402,0.46639605412063245,15.001123861421151,62.513200714309455,37.22610895824248,44.62190384604627,95.3554264898847,6.290630746890635,50.38741942551886,36.524683262956124,10.467954876404118,92.26769457804103,60.332418795680745,11.620935791812137,76.57884591610457,30.744382270487836,64.39982274349897,65.29206595368895,26.840467670082536,85.64033738609442,83.14882588002446,82.02915622253288,71.05495037786828,40.330596674134256,40.23992862643572,29.120642060259495,86.99038894692013,96.88838491316184,13.616627392767555,61.80664567114138,96.522098733871,55.98070570724253,24.090771253016886,81.31905251423198,16.049246108471372,37.62262006743433,71.14157193841262,49.99189514636848,90.2136037405962,86.01110685762838,31.486677503614903,83.90254156362278,26.33964812083972,5.584162535887294,43.89911520151237,71.75892736032876,79.90800795006261,12.303868162092401,72.82217586598091,92.73735432487902,52.05681929932089,79.73290051031371,54.07070835138905,88.47280881942359,37.31277593482268,93.09016953654732,77.38969805521178,21.9631937711667,31.055011466543426,77.97369836774922,82.2285683983267,60.70734460706363,11.36470754371256,66.98834399744315,47.18769753651977,41.1389581644427,83.19884291391193,4.376996148336831,43.07363280547519,29.389894665989402,19.005550891868218,54.96266956451804,89.14789404396161,31.19536201658225,33.060837003914834,7.949838564542189,31.154508446434814,20.528276177873373,49.61464533852331,58.346352553500715,9.098844033370856,53.466233226779046,52.589434425701896,98.37579777946371,39.09407411084038,38.23896874132486,69.50076740543942,19.86406049102527,12.343141281032455,77.79694034660523,11.81789107474922,21.92409170463859,88.46296435711135,1.8503991277657894,55.85425448475203,15.749178071938585,60.67110968550223,93.40207548292904,16.47582579510358,58.78517557730704,87.5683522474928,15.638222824209091,36.59465296505262,91.78123924639878,36.35566865208786,11.263889073079847,63.0128261137584,28.751800931377215,16.756686388383113,5.180200293824555,26.163028649208297,33.83111920180873,32.461927587988015,19.178264771068775,64.44098558345223,12.983265170648107,86.67286964663965,81.12184319359939,31.595312256438866,80.56946310890322,27.659474400288996,69.32975150763154,28.91218506511595,54.83417970050992,46.46097220169999,94.23282623583785,67.9097615843664,93.35426569577106,78.57620854346295,84.6039063691542,81.63891251711878,7.258810667904935,47.323622309093494,60.64173550473081,34.28392139906728,71.63022815375228,26.593024969186462,88.80707123648163,98.45790409416422,42.590662010924916,25.060524841692057,46.70320209529255,40.26466502500652,17.520344399157928,75.41697547036168,50.147027704877104,42.850397685676455,0.8610506082904035,6.8854382131943614,71.00937761156348,11.45850962617998,82.02289343023243,77.4352100214507,20.47360238749507,77.87056637512386,97.60233034676071,88.80508723283444,26.47553007154172,61.669670059322165,40.86575665811238,83.9451536127641,15.263197441747012,60.26321587282346,37.099694751793464,28.704658741184165,10.461576379805171,74.12112303085573,58.69676681897554,82.93001738814762,30.102616432977257,80.97894252324177,60.442658293247945,77.38815445680949,6.788342564276362,10.124784874965599,30.161354240430505,98.38028472774765,20.76707325999928,94.24529551162834,34.300101561017485,40.78295554926113,81.07594095911908,29.08495954366398,23.286796891091388,30.983862588892595,50.27762106610747,55.86517091755577,78.68137557802983,3.0808265993792605,26.955828984509612,61.02558487984409,68.46021237374377,86.72819076591772,59.59302999820554,88.10612466932113,57.47009440546309,29.958565141931047,55.35572428241744,44.28139259701241,25.40852010719693,41.954828626513496,2.848026995736086,68.77320709767282,34.515541447559336,46.739124937698115,31.159352842008104,8.559975661088915,46.09705591788629,40.35941693630034,43.10607360167453,80.43329934555389,23.984470534449397,8.045361260875428,26.508235049517694,9.914630620095243,84.9744636423247,86.60593030367428,40.67048390667228,23.414707837428573,72.75510961642352,72.19147185162652,80.28187389816405,44.88070838900019,35.02541441883338,18.830952979258896,7.721520199021459,22.457233709783786,68.49019170823075,83.19015155736255,36.183474214386756,43.09642149633067,53.67236378780837,44.00921251952259,49.33849459146358,34.32822140829843,41.924797002404645,28.77902928978169,53.88189772933113,43.0403841040517,87.26014985267537,6.380009026058097,89.4515182733037,85.58327273862355,70.89878866896171,32.00118267777938,72.293880874572,97.82716830724324,61.564120753933736,61.67231365233962,88.38638798919554,37.79575384380161,38.269905826080965,52.80250138655408,91.87569732526569,46.11128018000059,95.30572069591398,85.92415521663979,59.45896508512023,60.827801145997675,3.4853600761647563,65.27833702999028,3.71136351314314,3.527650251760439,10.194679328857081,73.85840434304467,14.31499158536459,74.44742591132736,46.21623217272622,92.92122236907161,28.59451883575439,5.195219595922884,92.41222254680773,84.25599330754433,10.797256834377988,11.827792323976439,29.17874297330253,33.54568780098799,65.89835279464471,20.75184477255051,0.22017779151078942,40.145338626795926,36.17754576643782,43.73931955204685,30.6833376296746,93.76799971712364,53.62048572961767,44.251502512347365,38.67832354078482,69.44454552009267,81.58962235328015,41.33319479874579,30.271636843028695,18.247529767251734,56.74755596868919,72.77186702515641,57.169071613540886,87.78612618964266,30.019844652972104,51.80150297925146,76.408801817906,5.682581510986084,78.75936377023285,67.57920478410668,45.960317071750254,52.99890963557462,34.79300605342335,53.724019376682506,81.44415874537857,45.41092441769794,57.79326803232192,83.7069451323495,17.296779869873692,52.45801660031887,49.99465901379092,81.75207134007441,84.1915459563569,29.07461303317376,63.136133984095956,14.017328347950153,13.182436981707657,16.545877989056212,95.80699527976644,90.44041968717224,56.93815811462777,24.08010580185984,46.79908146923367,3.6621161075544584,74.23485489052865,13.315896549245176,63.450899186749474,92.76145253019644,85.6630697483214,42.87921499831552,57.105488121858095,67.62893344197235,51.957669831940635,59.59170588519721,59.921176954277435,7.788767477196135,57.169160901565164,67.8505274870627,52.95238553766747,57.22473340282325,59.25474093454382,31.508929178759647,21.05106895842247,5.813989818527943,75.69844406391309,45.60844976707864,66.94609833397956,91.75619305307032,41.70596486820849,30.948200899962796,47.20123683011243,97.75185262268545,84.79327248153898,8.6107632160471,36.62151338880911,88.41856880733978,37.403942023876,6.643521377977423,99.66570952136219,62.105156189780466,0.6722025925383956,21.84281081160371,74.89889643928683,2.2240489248153805,46.840734256896646,89.23415955016037,94.75329406155612,20.923218588172155,10.251046965770305,58.87281260716317,21.661808103329005,97.51145121946894,72.28425686528206,56.51341704255065,31.277438010448734,76.46990828054899,89.69510631337829,92.63509506515607,46.84608419972286,0.0564318510172801,59.98340297686501,50.096730324909586,87.05877546909707,22.918598291868975,84.056470034764,56.43711981300581,30.891162010202798,58.07772014312602,57.26818552612897,14.253146768319647,22.260095906598398,42.40349354065951,33.27714957856064,73.09180683945019,2.466346306953049,54.71478730058011,73.81053555927703,29.180478573369008,64.38219295291306,33.69827009452494,67.22707264096324,15.737683929530434,39.0586239524888,7.4555540343430255,24.275398279452297,57.31260315116455,70.04263756474145,26.46984064304647,24.082810158374723,10.84372674374553,22.123527510898278,52.41455417800217,85.15923988257344,13.911932488710866,16.707993489783423,25.558240280340694,51.13404898272431,31.54581889886844,42.72396352582716,67.51432534813851,50.574581233601364,99.59117353867936,0.516712680563558,23.894982303590428,86.63616700847864,28.567666832142336,55.65684373835662,86.6587030164996,67.3740118755069,54.62617777441135,56.418191482020866,4.27904530019646,95.46892808285395,14.504043316059256,18.664643096732004,99.95942154598515,47.1041946681782,89.06780508275037,29.957692786783962,31.886691601704197,62.37392152093123,47.24003891391197,56.94735351558504,98.4029103669838,85.50935720459785,69.50305201012632,61.49991713347757,41.31588813394287,78.059825264264,12.906504113677986,19.15954261352778,58.35806664947074,35.67645440059034,88.53591773243399,24.545614468734158,37.26640642015495,37.00316879696419,25.752796573608084,40.595097296388595,52.68066716432309,52.906910960633354,17.62374804052469,74.60774778949812,59.77990599981062,75.5388662626466,91.21744638439932,54.809620033281284,22.515996573114748,44.20979657659093,34.5050553606857,9.639520875960116,74.14748762498854,47.39533694956645,52.2355246415232,90.26806949313428,50.49078200541343,99.9878047696518,59.30659614486784,32.53733084171898,84.32944156821874,59.985355907026914,86.63688821288268,16.268741156247668,43.63090306634439,23.49881630473626,44.54665557360262,47.069753799848804,16.920100011031415,82.8806698575291,77.63967912828085,40.30753765383559,57.960997327696774,1.6763294274247276,22.474142778480633,5.220198700978518,37.13383064848905,9.03326326041447,25.768834719109513,51.841641206159615,87.24102977574557,57.817170551344454,0.6760572022647016,99.85234367075527,79.14162288664279,69.10235883247313,4.874693051638735,17.208735388733555,67.93618439454161,2.3703195589277914,22.728170643683534,46.99141129904781,1.1439310461540453,34.98266334996747,44.2851084270238,23.080058768902756,78.83081394608253,96.9209875984301,81.61557610076461,28.117761500920412,69.74500418116902,25.342956638190863,50.45836870140631,80.82628612800454,1.5747317520522497,87.29374125836611,56.079974139211544,79.42183207428707,9.039760242887452,2.188106424910241,83.50160450210998,40.71066209689658,40.252143678205734,85.0210737492599,72.18315145133154,81.30784698962296,30.2906860158644,26.711323015506004,35.486611862794526,86.55321549300774,40.0757695377502,53.15368560129941,67.38294393326184,24.750712057533363,89.68127089900997,25.00345378785279,97.46248020485899,7.24679397226573,44.74254786343296,2.7136782824032424,24.72494680425652,79.1395614961904,11.008511219749684,62.163233588638256,86.4586402399166,4.738074621123056,49.21410883853831,1.1808880281412804,24.347482879539008,39.24629954983369,86.88910000654195,67.47819364012024,28.044755889387186,13.532178170815056,19.17901959679533,47.59946592964399,47.430089674911756,92.54499658532673,7.866576192259245,47.208703409187336,68.51930518799041,20.464709138363546,50.511854617301154,8.26840202624497,36.96725775289944,89.42259925394146,60.9339845015459,38.00531939880904,60.561901613502314,99.81159046804791,51.87499297932443,81.85061953977082,18.568720645519544,74.11603268586653,94.13983372537731,40.419998756947514,14.123514267652993,9.055580626271475,77.84098106771549,62.20896664280815,48.28274509794526,28.661224209805436,62.0143682082704,66.78121837743151,4.236901495309231,46.73703663019213,66.46511904591105,14.104670675512509,96.44494286387592,85.99441365731082,57.523966232165826,45.1852310924376,48.93500080902017,9.247955927247652,62.72071254508226,46.50936766193268,5.413262924640627,49.47379372139734,64.34509653338607,2.3064315147898418,53.66748733351867,94.12027158915316,70.5782093854109,73.05007386895657,78.86292548744969,42.703408082062985,21.98481631532254,41.781456657023696,13.866634332124905,18.50185141043834,28.860609195743447,47.78157808873074,80.73552514667503,47.624280330434,28.235618397563467,41.63482944454328,38.77208949878521,35.66694043134777,28.415224396795924,74.07762674792909,4.116500425433534,31.17524066513776,73.7750692330188,95.01717172914194,21.21084501731838,55.06210328030424,14.829026662504885,42.61338572317236,68.09279953651763,14.61921544293413,2.526653304162252,97.0751996252871,88.52249739665272,99.1428556321083,17.000671176619075,90.28025196978334,63.82081616681924,87.18597894933541,17.868947800245127,9.924847220268573,78.58031832206075,13.395638830745238,90.01468482051824,43.245841111383555,3.99623364042051,59.57292323217648,50.67934157871071,46.66361850110948,77.57191748200822,74.43616634019011,52.05919407857361,64.55102622091881,40.74373269023555,97.46683835337218,94.09967096512385,18.458890441361962,12.726487474108005,39.06919532440219,88.41555885049851,0.5383388303321746,83.7167130740403,22.421454516787463,51.31394791666231,74.5860848586841,32.51048400212868,98.7052479944912,16.45095361971578,23.85508393572241,40.64651022104145,41.53769391788437,42.809702229310034,59.716684652145844,59.806871366198976,61.057583776342305,47.2739667416552,56.20129782538588,39.684305555480506,37.582677695298194,39.434981351855924,79.89536718967958,17.509078863475125,87.84715386816646,13.98556614208869,74.69096499167715,3.5403813345202484,10.951528205284355,53.35792796319186,35.542290636484495,49.65452715059211,1.8034806289915384,66.77938677778965,97.08340867521703,25.717265159361002,2.841745593028966,84.88186811484799,27.836435660526405,71.38026068615841,60.158392410494834,2.374605525118867,11.871967787273574,19.970540685566185,63.87815964652671,30.02504716818536,10.558747758633036,72.80232861890498,21.533570158996675,53.29189805797283,70.02332578470202,44.22994643816646,81.12330456230868,31.26959356389597,44.53167788690347,80.44209874912342,99.97801020921429,25.921219714817045,54.299018012993415,56.636182602062576,87.532158202999,10.053654897524755,76.7308802084821,12.293556085467017,58.30171127340633,98.67987143700252,93.54251145559164,60.376641586544224,97.68555310644518,11.403817012665062,75.96267181376012,93.17227289184513,9.28749513839302,79.88830715921323,91.2630704148944,17.937925168267064,89.24288363114059,66.72657691044863,27.633708923417178,56.99253127214359,52.869066061572376,76.5935847788386,36.265398487461574,55.87854026862067,79.77232542496438,74.8314842457652,54.20228433173493,43.64294722943964,74.25833841183777,56.516982769785365,46.957393918637294,36.23473447362051,76.16234523038023,63.98033656928758,22.13972559229176,79.02753422910328,88.33555088748241,99.66883983611453,14.368216934023803,49.79534598042801,0.7870704719651123,27.598130095540075,45.35773928024255,97.37187599383314,18.38071370626467,64.23112467128124,13.46682117038177,71.17514559538475,10.54673552247527,80.55454127105907,8.545230078457134,47.43843309155973,22.46153775372296,23.678356866360982,95.86886362775651,28.605817236487418,65.25275825759637,87.34083871972427,11.890661170469397,89.05801969777673,55.791780901286224,72.58786961282006,56.101734375213915,45.411633053999054,69.80563792876058,86.90807710651067,18.89384789257025,36.25115595436248,63.15657192069973,83.12109135535617,89.16457781379287,55.91013272554881,80.27845557024148,54.00053825973683,54.0023959291912,5.451810399887458,68.00726837399492,28.9123268963301,84.11055499955621,29.90649586669879,68.14747492262944,48.03244217292312,86.34683025185312,79.0452202087168,44.22910894224893,74.50911899987346,21.45002441635252,1.8558814456456019,13.328398917355322,24.073950860063686,5.792836192976736,46.19943650276047,35.34673570525124,81.65148718330883,64.59105986278486,35.28266954644423,10.68137512497065,56.68572963764704,21.022357105795344,2.761235652765359,96.26025292740891,24.416401130230504,70.90428112824269,62.07198046237223,43.42567730654697,61.99808344339883,1.3393752158044725,75.31746457666685,69.96553571565207,64.89541487223963,74.91580602683658,58.520168634814695,40.824192347025615,39.03543446928206,81.84144091973651,12.344990330896554,74.73765034993359,36.61498521124105,43.919311068778576,11.956888465763981,29.433275777276357,88.35508626591994,99.95822868058119,40.790678701091835,28.155185380092384,3.9350907427782134,59.304703547433554,3.216898899088083,50.75235640246427,53.5558955929628,99.31641367339512,44.566910529256276,31.537512427123925,51.40586808335762,98.18318910783252,17.002885312863402,86.88671315550029,32.170900965504146,62.50274235048982,56.11274243518341,7.964094615323636,67.99208763656108,82.60760176069911,64.32782119318834,95.51089858508558,86.5100646795127,46.1510266165155,76.88980196979388,78.05425012751942,6.048495728969128,61.49056861428199,55.16297390672993,90.3259886239057,95.84988403518857,18.46621606088281,26.694138164375747,80.92287158368877,30.568545371482735,33.36237444547788,89.02539582136075,76.64065011222627,64.29011323541148,70.86726827316613,48.80308649434069,66.83659955830565,32.429005438418415,23.453402459994365,91.79247252454434,43.18111116746034,81.65451756059747,7.168982567952287,57.383166692208064,54.57758048194062,43.4029852163628,27.010672220833953,25.241496781813012,41.22328587632993,20.412496514703616,11.35937129147706,2.5967929488771357,44.95045821425081,8.095976132171923,98.69669657200876,46.76854264314309,15.845689651380434,69.52703180038198,2.158625556711369,92.84441024896374,43.289545202573265,98.68416419774468,55.33747086364366,32.727128409876386,31.51312696260392,67.8618947458812,93.94814380063468,39.68896482767216,94.57109484774854,91.77005899680269,54.18003060675641,22.47176942061425,14.267769322880975,40.06448934079223,2.405087864696509,24.98831667964183,93.31961378196077,73.1955951039249,89.1875659595984,87.24245301054869,36.39096459674879,95.84677161920389,3.521311861928067,92.74232690839648,51.79652769416071,52.88730814140514,52.243955640013326,85.90559740716024,80.83526296322037,89.99254860125856,81.36353047095062,74.50893910549281,68.76355558343845,42.35221179549002,55.41607742029731,67.44011198926802,70.0719420730548,36.33970760925362,93.43569177988931,83.42581640310314,34.67449827247863,74.53979599605893,23.62321853540772,23.288746836243533,91.45216316929202,18.357728371474824,50.23658969983901,23.56511794369317,0.5594895903737296,8.192542781096424,20.88037500546419,48.842535260883466,65.83575599943718,99.66164562483877,28.301951912087496,63.6392510976014,53.32717553757956,8.453445051503728,93.1438159554922,49.207463799506044,91.67617979084952,4.816407964990887,65.97978945151982,84.04735291044044,54.5974706151387,49.17140186629256,27.45513574006866,1.5079491537574263,8.016756664560177,17.5739585539058,15.583769368937228,18.339715217013108,2.26697853619352,24.549622564065054,79.09184836190512,15.312374220326596,96.45611307298392,71.40599858287663,95.08841820653439,77.76143644870488,14.495079692111423,2.890001283691679,36.48820769912411,63.619922820917864,61.25844017094742,20.921245054811344,62.39020019749408,28.968638564644735,72.65179681978253,59.46636427495231,90.79739246479627,83.09402024862106,92.74842103179,0.6899103683550845,53.08047348546686,95.06900241562487,50.78356169303261,41.536292150132795,57.82267707739833,74.7694458743286,91.99350310283982,7.588344925182833,18.879945140326438,10.227020645496122,49.40534557156583,47.21375365755331,98.70042193466844,96.07755958421184,41.240750464266505,63.99694470499053,16.15566636081325,35.544135907008155,49.83023141959628,47.37346992903662,77.44883892874769,20.404145131644626,18.71631443789462,15.34115963846656,22.671863856647402,27.487009001496986,43.90119588492964,20.35770412485496,57.889239061909606,0.4983850767113829,63.74205333828517,75.53832523337232,51.28250773630461,70.53174617656403,38.73117297952028,73.56702398097006,68.1850208184884,75.69467204925083,71.71890167650275,96.98187440946931,84.81426707942981,63.48964554333513,22.86461358877968,48.87487483005819,1.788224423814544,35.96710632272767,34.82982711331481,50.56526717604313,20.949682008902183,56.396612742621,27.324554885798978,29.55363743102446,46.68944443165234,30.731029760211538,82.67866134923025,44.94997186110815,15.217404044146699,77.3772967406876,77.28715519095087,56.24710345845103,93.87468416137892,67.16901220728258,29.788604530292883,33.612018164352065,91.22068033652087,89.83803285467533,47.02563712040391,50.87416240539557,86.36673483703514,92.30411082832954,49.79749254634026,17.929145688141325,2.221542525555309,92.73042083991336,6.804550334647574,47.907468168149514,37.43314603774982,77.00687399394972,90.37748945429995,91.67532555864022,23.077522360743163,15.367740799461894,65.58943102374353,66.07212979507727,95.64832476390818,46.39601416761619,58.10978249166019,2.6489658561177687,79.18308383196792,12.274863540326198,52.5132895321335,28.188371274486435,85.35885350701787,72.26924601289154,21.262324510041374,74.66540999798653,6.251071786924022,44.04462651269638,1.352163764233949,36.9400371153593,71.90548305933996,7.980028883485868,18.09628565071132,83.07740005341,18.496606924063997,73.81182745832791,86.8721004089088,42.421496350351106,11.065542659572792,80.22270576883204,7.192571819896287,85.75647160830636,0.10198093983605494,84.88724794381707,70.46221083045779,25.229377466137016,51.42732790830926,81.57871870720298,53.50188155595248,62.88665124705608,95.34646195375693,68.81535653195026,65.08264468207173,64.56032391616097,85.37023659156411,32.334431935211896,15.827766855510584,21.576687280226913,18.18853399399253,70.3100534852963,55.130824428437194,53.136560795904884,14.624034070667536,75.74097894130979,40.96382730207178,72.23370798156719,6.144781722954351,33.471283379927165,75.7968388409593,63.723345799995535,97.23184424905563,55.19061236625533,42.40041782474058,67.5140452362568,23.695291666490416,22.708672181904767,34.70463626418147,4.047694359302079,16.37800214871097,64.39376673529114,4.116060190061122,35.02068177868999,91.20303490884072,27.1439055780198,25.986550750385373,56.442619443917664,90.0990488469279,94.69909325043483,22.875480004716486,39.24741267082664,86.64970872098381,92.84704109838383,89.5909505813516,67.99465186722236,92.25892118254494,50.98581016691573,59.37336874553094,54.48095511263142,1.0553319158958185,81.93556770956215,71.33904708077355,21.21475141719239,43.80315196726641,12.14726630323203,30.60598413073672,85.75845653355988,51.85913950223136,8.915607537996262,14.922270713731978,22.742241371447392,92.78935153233567,31.56962011105462,2.0817839828526585,2.2557242572266323,17.074245071901117,71.69798702397753,12.81884654529093,56.652311159682526,87.00354240542792,76.76433533645647,31.849481588570395,91.08654158386182,55.39982916490855,21.225645515563606,7.5848709246767125,83.67954512539572,94.51957939145305,89.16750777783714,45.53183111696924,28.103049265879477,82.87732523757559,27.93073146417938,49.65209553148945,27.89752622471263,87.64358102551611,82.18199503748603,89.16566708212478,7.651446751434432,99.03536315470748,32.93990748800611,82.51778974706863,94.56841888676084,75.00179894237957,43.70560800308482,20.124591219830712,5.888483580745962,21.29838590565146,38.736827756377224,81.02182984608243,66.0672793332729,60.65215604200851,89.8294098604683,19.032452591856575,27.657536283700367,6.34028794267143,93.06219424119033,89.73466687485573,82.11383255545218,76.52588524031579,15.73676576762615,38.471332652815846,36.3403091794277,6.2297213657922175,33.01836705721385,7.98302975434787,75.59294860373066,37.9337729754812,98.7974919252352,17.121962883635046,90.09848373591207,78.20894542779786,30.114193078318905,23.298634121609663,51.2035651337432,17.016723879097118,27.852065907377455,83.49701133737433,54.0093099065345,41.28602064870409,34.12757702346186,84.57303285813276,29.33920654824478,86.94323931221398,49.33842600001156,95.21408130280416,59.807758640927275,18.07369409188967,50.77658034940031,83.97400751449553,53.46685383349897,30.384295155155282,43.11503201237984,84.82149185455722,43.11989873265735,70.71956905064573,23.281806793253356,46.25610006618363,47.32348349063689,17.668152721541897,36.24906605198672,86.70960935620637,54.18252024241054,57.385211186742914,1.8575516700311878,47.28908919016084,32.84314864856468,69.71200920181445,27.93438289770307,36.74625509071091,93.4129453402986,66.92135688340332,93.03451360956062,27.993392385831783,86.83503735548445,42.83089120775815,0.11112344334798241,8.498635924704868,14.330271627157288,4.485891130500486,87.13635395224281,71.67216659264164,65.85213895834019,54.96719081656144,29.821604436764847,66.79346038395497,51.96447790877679,54.31010621781728,13.487528198447595,16.549361699580768,94.73320003262775,12.898764890624225,12.262305892968383,66.3559858830612,3.6594096463722248,59.01731485621953,75.11059951068083,29.397987479572407,9.787177139848469,96.77598933379981,34.22974708173698,37.315070660037804,82.6983604940009,79.78527911111576,24.25728536841416,8.832807890159089,62.170063517665916,85.22006984495323,18.59317233940666,71.13823725732003,2.813796327842255,52.445906025923875,70.22173813816221,91.36081399836947,99.83951893403048,18.23154991380832,24.355630586212506,80.21162305395897,50.63559744832621,20.971904245699978,11.189436138108356,90.94935142123074,29.065275216901476,18.661225687117,81.10788563530731,52.41358963631328,45.455919579358415,79.3772943427737,28.63130882253414,92.7905692282035,83.66075511086403,18.796660250391696,25.430902549172384,69.26630160635209,19.832649623440833,58.2356071417513,0.004489985646383143,49.20569584488882,69.77739598263068,19.493324156120305,7.098200843115343,19.357825295423893,14.303867682748328,44.0790909978743,79.84915521035425,7.500902174465551,24.325210195929525,37.13679373702937,60.33677544548163,90.04090052026058,81.63102078799143,79.9270378935058,94.25071971841523,30.736834521149483,53.000019214988235,95.9151282116116,39.036507547340406,91.80047249271956,44.18278060324633,19.055393078791795,20.952852640006604,94.72987696466657,37.76796473997371,45.00686007612275,75.59368286619161,98.88917732241379,29.520753322977267,42.43229396427485,20.52827438565713,85.00233832705322,23.299629693859202,54.12982726862048,19.881265280947936,1.6913606994172214]}},"id":"7fa53037-bac5-496a-af71-c1e6cd894e2d","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"}},"id":"5d0bb551-a7d5-4369-920c-c9a6804ef172","type":"Grid"},{"attributes":{"dimension":1,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"}},"id":"2cb755c0-32ae-4af1-8038-5acaf48b8322","type":"Grid"},{"attributes":{"active_drag":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"9004d723-65b0-49ad-a8be-8a3d029fe8b1","type":"HoverTool"},{"id":"ddf589ea-beb2-413d-942e-67d169a555b8","type":"CrosshairTool"},{"id":"cd9dbbc4-377e-4d33-9891-9e2d8d415fd3","type":"PanTool"},{"id":"6a2fa843-e0f0-4297-b693-a1b3bf015112","type":"WheelZoomTool"},{"id":"9a21dc34-11ce-4dba-9c88-652c166dd66d","type":"BoxZoomTool"},{"id":"2c97989f-545f-4a98-bfde-7321cdcc9b6e","type":"ResetTool"},{"id":"ed92348a-eb48-4310-a92f-eda788e37773","type":"TapTool"},{"id":"56c8ae54-ae88-4977-afbe-e1741302711d","type":"SaveTool"},{"id":"4e6a54a1-0f6a-4fd6-b648-5a7616a2261d","type":"BoxSelectTool"},{"id":"a9eaf293-91ae-4d0a-b5fb-59d549fa7a8b","type":"PolySelectTool"},{"id":"f24e96e0-b8e0-442e-a66f-ed60c7b980d7","type":"LassoSelectTool"}]},"id":"fd8e3f33-c745-43d9-8d2c-e820c1600c2c","type":"Toolbar"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"56c8ae54-ae88-4977-afbe-e1741302711d","type":"SaveTool"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"ddf589ea-beb2-413d-942e-67d169a555b8","type":"CrosshairTool"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"xs_units":"screen","ys_units":"screen"},"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},{"attributes":{"formatter":{"id":"bd606451-b6cd-48cd-959a-66202e025a24","type":"BasicTickFormatter"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"}},"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"},{"attributes":{"overlay":{"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"a9eaf293-91ae-4d0a-b5fb-59d549fa7a8b","type":"PolySelectTool"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"xs_units":"screen","ys_units":"screen"},"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},{"attributes":{"callback":null},"id":"801a4cbe-dc36-4846-9f46-197c6ab2cb29","type":"DataRange1d"},{"attributes":{"data_source":{"id":"7fa53037-bac5-496a-af71-c1e6cd894e2d","type":"ColumnDataSource"},"glyph":{"id":"222e0e43-a03f-4e43-96f5-ce0b39a9fab0","type":"Circle"},"hover_glyph":null,"nonselection_glyph":{"id":"6947d7ee-b182-48e3-82b5-d62587267dac","type":"Circle"},"selection_glyph":null},"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"},{"attributes":{"callback":null},"id":"c0977ced-816d-43a3-9d91-146ce0fa8b71","type":"DataRange1d"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"2c97989f-545f-4a98-bfde-7321cdcc9b6e","type":"ResetTool"},{"attributes":{"plot":null,"text":null},"id":"286c6214-008f-410c-9280-5b3ef7cca970","type":"Title"},{"attributes":{},"id":"bd606451-b6cd-48cd-959a-66202e025a24","type":"BasicTickFormatter"},{"attributes":{"callback":null,"overlay":{"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"f24e96e0-b8e0-442e-a66f-ed60c7b980d7","type":"LassoSelectTool"}],"root_ids":["bd222891-e6b1-4c40-a0b3-75ad439a625d"]},"title":"Bokeh Application","version":"0.12.2"}}; | |
var render_items = [{"docid":"abac24f5-a8ff-4814-853f-6b0d1ca1da97","elementid":"e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c","modelid":"bd222891-e6b1-4c40-a0b3-75ad439a625d"}]; | |
Bokeh.embed.embed_items(docs_json, render_items); | |
}); | |
}, | |
function(Bokeh) { | |
} | |
]; | |
function run_inline_js() { | |
if ((window.Bokeh !== undefined) || (force === "1")) { | |
for (var i = 0; i < inline_js.length; i++) { | |
inline_js[i](window.Bokeh); | |
}if (force === "1") { | |
display_loaded(); | |
}} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(run_inline_js, 100); | |
} else if (!window._bokeh_failed_load) { | |
console.log("Bokeh: BokehJS failed to load within specified timeout."); | |
window._bokeh_failed_load = true; | |
} else if (!force) { | |
var cell = $("#e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c").parents('.cell').data().cell; | |
cell.output_area.append_execute_result(NB_LOAD_WARNING) | |
} | |
} | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: BokehJS loaded, going straight to plotting"); | |
run_inline_js(); | |
} else { | |
load_libs(js_urls, function() { | |
console.log("Bokeh: BokehJS plotting callback run at", now()); | |
run_inline_js(); | |
}); | |
} | |
}(this)); | |
</script> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="cell border-box-sizing code_cell rendered"> | |
<div class="input"> | |
<div class="prompt input_prompt">In [ ]:</div> | |
<div class="inner_cell"> | |
<div class="input_area"> | |
<div class=" highlight hl-ipython2"><pre><span></span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title><no title> — test 0.1 documentation</title> | |
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" /> | |
<link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | |
<script type="text/javascript"> | |
var DOCUMENTATION_OPTIONS = { | |
URL_ROOT: './', | |
VERSION: '0.1', | |
COLLAPSE_INDEX: false, | |
FILE_SUFFIX: '.html', | |
HAS_SOURCE: true | |
}; | |
</script> | |
<script type="text/javascript" src="_static/jquery.js"></script> | |
<script type="text/javascript" src="_static/underscore.js"></script> | |
<script type="text/javascript" src="_static/doctools.js"></script> | |
<link href="https://cdn.pydata.org/bokeh/release/bokeh-0.12.0.min.css" rel="stylesheet" type="text/css"> | |
<script type="text/javascript" src="https://cdn.pydata.org/bokeh/release/bokeh-0.12.0.min.js"></script> | |
<link rel="top" title="test 0.1 documentation" href="index.html" /> | |
<link rel="prev" title="Welcome to test’s documentation!" href="index.html" /> | |
<link rel="stylesheet" href="_static/custom.css" type="text/css" /> | |
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" /> | |
</head> | |
<body role="document"> | |
<div class="document"> | |
<div class="documentwrapper"> | |
<div class="bodywrapper"> | |
<div class="body" role="main"> | |
<style> | |
/* CSS for nbsphinx extension */ | |
/* remove conflicting styling from Sphinx themes */ | |
div.nbinput, | |
div.nbinput > div, | |
div.nbinput div[class^=highlight], | |
div.nbinput div[class^=highlight] pre, | |
div.nboutput, | |
div.nboutput > div, | |
div.nboutput div[class^=highlight], | |
div.nboutput div[class^=highlight] pre { | |
background: none; | |
border: none; | |
padding: 0 0; | |
margin: 0; | |
box-shadow: none; | |
} | |
/* avoid gaps between output lines */ | |
div.nboutput div[class^=highlight] pre { | |
line-height: normal; | |
} | |
/* input/output containers */ | |
div.nbinput, | |
div.nboutput { | |
display: -webkit-flex; | |
display: flex; | |
align-items: flex-start; | |
margin: 0; | |
} | |
/* input container */ | |
div.nbinput { | |
padding-top: 5px; | |
} | |
/* last container */ | |
div.nblast { | |
padding-bottom: 5px; | |
} | |
/* input prompt */ | |
div.nbinput > :first-child pre { | |
color: #303F9F; | |
} | |
/* output prompt */ | |
div.nboutput > :first-child pre { | |
color: #D84315; | |
} | |
/* all prompts */ | |
div.nbinput > :first-child[class^=highlight], | |
div.nboutput > :first-child[class^=highlight], | |
div.nboutput > :first-child { | |
min-width: 9ex; | |
padding-top: 0.4em; | |
padding-right: 0.4em; | |
text-align: right; | |
flex: 0; | |
} | |
/* input/output area */ | |
div.nbinput > :nth-child(2)[class^=highlight], | |
div.nboutput > :nth-child(2), | |
div.nboutput > :nth-child(2)[class^=highlight] { | |
padding: 0.4em; | |
-webkit-flex: 1; | |
flex: 1; | |
overflow: auto; | |
} | |
/* input area */ | |
div.nbinput > :nth-child(2)[class^=highlight] { | |
border: 1px solid #cfcfcf; | |
border-radius: 2px; | |
background: #f7f7f7; | |
} | |
/* override MathJax center alignment in output cells */ | |
div.nboutput div[class*=MathJax] { | |
text-align: left !important; | |
} | |
/* override sphinx.ext.pngmath center alignment in output cells */ | |
div.nboutput div.math p { | |
text-align: left; | |
} | |
/* standard error */ | |
div.nboutput > :nth-child(2).stderr { | |
background: #fdd; | |
} | |
/* ANSI colors */ | |
.ansi-black-fg { color: #3E424D; } | |
.ansi-black-bg { background-color: #3E424D; } | |
.ansi-black-intense-fg { color: #282C36; } | |
.ansi-black-intense-bg { background-color: #282C36; } | |
.ansi-red-fg { color: #E75C58; } | |
.ansi-red-bg { background-color: #E75C58; } | |
.ansi-red-intense-fg { color: #B22B31; } | |
.ansi-red-intense-bg { background-color: #B22B31; } | |
.ansi-green-fg { color: #00A250; } | |
.ansi-green-bg { background-color: #00A250; } | |
.ansi-green-intense-fg { color: #007427; } | |
.ansi-green-intense-bg { background-color: #007427; } | |
.ansi-yellow-fg { color: #DDB62B; } | |
.ansi-yellow-bg { background-color: #DDB62B; } | |
.ansi-yellow-intense-fg { color: #B27D12; } | |
.ansi-yellow-intense-bg { background-color: #B27D12; } | |
.ansi-blue-fg { color: #208FFB; } | |
.ansi-blue-bg { background-color: #208FFB; } | |
.ansi-blue-intense-fg { color: #0065CA; } | |
.ansi-blue-intense-bg { background-color: #0065CA; } | |
.ansi-magenta-fg { color: #D160C4; } | |
.ansi-magenta-bg { background-color: #D160C4; } | |
.ansi-magenta-intense-fg { color: #A03196; } | |
.ansi-magenta-intense-bg { background-color: #A03196; } | |
.ansi-cyan-fg { color: #60C6C8; } | |
.ansi-cyan-bg { background-color: #60C6C8; } | |
.ansi-cyan-intense-fg { color: #258F8F; } | |
.ansi-cyan-intense-bg { background-color: #258F8F; } | |
.ansi-white-fg { color: #C5C1B4; } | |
.ansi-white-bg { background-color: #C5C1B4; } | |
.ansi-white-intense-fg { color: #A1A6B2; } | |
.ansi-white-intense-bg { background-color: #A1A6B2; } | |
.ansi-bold { font-weight: bold; } | |
</style> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [1]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>import numpy as np | |
from six.moves import zip | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [2]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>from bokeh.plotting import figure, show, output_notebook | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [3]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>N = 4000 | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [4]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>x = np.random.random(size=N) * 100 | |
y = np.random.random(size=N) * 100 | |
radii = np.random.random(size=N) * 1.5 | |
colors = ["#%02x%02x%02x" % (int(r), int(g), 150) for r, g in zip(50+2*x, 30+2*y)] | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [5]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>output_notebook() | |
</pre></div> | |
</div> | |
</div> | |
<div class="nboutput container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="bk-root"> | |
<a href="http://bokeh.pydata.org" target="_blank" class="bk-logo bk-logo-small bk-logo-notebook"></a> | |
<span id="bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55">Loading BokehJS ...</span> | |
</div></div> | |
</div> | |
<div class="nboutput nblast container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="admonition warning"> | |
Data type cannot be displayed: application/javascript</div> | |
</div> | |
</div> | |
<div class="nbinput container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [6]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>TOOLS="hover,crosshair,pan,wheel_zoom,box_zoom,reset,tap,save,box_select,poly_select,lasso_select" | |
p = figure(tools=TOOLS) | |
p.scatter(x,y, radius=radii, fill_color=colors, fill_alpha=0.6, line_color=None) | |
show(p) | |
</pre></div> | |
</div> | |
</div> | |
<div class="nboutput nblast container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="bk-root"> | |
<div class="plotdiv" id="e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"></div> | |
</div> | |
<script type="text/javascript"> | |
(function(global) { | |
function now() { | |
return new Date(); | |
} | |
var force = ""; | |
if (typeof (window._bokeh_onload_callbacks) === "undefined" || force !== "") { | |
window._bokeh_onload_callbacks = []; | |
window._bokeh_is_loading = undefined; | |
} | |
if (typeof (window._bokeh_timeout) === "undefined" || force !== "") { | |
window._bokeh_timeout = Date.now() + 0; | |
window._bokeh_failed_load = false; | |
} | |
var NB_LOAD_WARNING = {'data': {'text/html': | |
"<div style='background-color: #fdd'>\n"+ | |
"<p>\n"+ | |
"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+ | |
"may be due to a slow or bad network connection. Possible fixes:\n"+ | |
"</p>\n"+ | |
"<ul>\n"+ | |
"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\n"+ | |
"<li>use INLINE resources instead, as so:</li>\n"+ | |
"</ul>\n"+ | |
"<code>\n"+ | |
"from bokeh.resources import INLINE\n"+ | |
"output_notebook(resources=INLINE)\n"+ | |
"</code>\n"+ | |
"</div>"}}; | |
function display_loaded() { | |
if (window.Bokeh !== undefined) { | |
Bokeh.$("#e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c").text("BokehJS successfully loaded."); | |
} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(display_loaded, 100) | |
} | |
} | |
function run_callbacks() { | |
window._bokeh_onload_callbacks.forEach(function(callback) { callback() }); | |
delete window._bokeh_onload_callbacks | |
console.info("Bokeh: all callbacks have finished"); | |
} | |
function load_libs(js_urls, callback) { | |
window._bokeh_onload_callbacks.push(callback); | |
if (window._bokeh_is_loading > 0) { | |
console.log("Bokeh: BokehJS is being loaded, scheduling callback at", now()); | |
return null; | |
} | |
if (js_urls == null || js_urls.length === 0) { | |
run_callbacks(); | |
return null; | |
} | |
console.log("Bokeh: BokehJS not loaded, scheduling load and callback at", now()); | |
window._bokeh_is_loading = js_urls.length; | |
for (var i = 0; i < js_urls.length; i++) { | |
var url = js_urls[i]; | |
var s = document.createElement('script'); | |
s.src = url; | |
s.async = false; | |
s.onreadystatechange = s.onload = function() { | |
window._bokeh_is_loading--; | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: all BokehJS libraries loaded"); | |
run_callbacks() | |
} | |
}; | |
s.onerror = function() { | |
console.warn("failed to load library " + url); | |
}; | |
console.log("Bokeh: injecting script tag for BokehJS library: ", url); | |
document.getElementsByTagName("head")[0].appendChild(s); | |
} | |
};var element = document.getElementById("e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"); | |
if (element == null) { | |
console.log("Bokeh: ERROR: autoload.js configured with elementid 'e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c' but no matching script tag was found. ") | |
return false; | |
} | |
var js_urls = []; | |
var inline_js = [ | |
function(Bokeh) { | |
Bokeh.$(function() { | |
var docs_json = {"abac24f5-a8ff-4814-853f-6b0d1ca1da97":{"roots":{"references":[{"attributes":{},"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"},{"attributes":{},"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9004d723-65b0-49ad-a8be-8a3d029fe8b1","type":"HoverTool"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"6a2fa843-e0f0-4297-b693-a1b3bf015112","type":"WheelZoomTool"},{"attributes":{"formatter":{"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"}},"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"ed92348a-eb48-4310-a92f-eda788e37773","type":"TapTool"},{"attributes":{"fill_alpha":{"value":0.6},"fill_color":{"field":"fill_color"},"line_color":{"value":null},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"222e0e43-a03f-4e43-96f5-ce0b39a9fab0","type":"Circle"},{"attributes":{"callback":null,"overlay":{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"renderers":[{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}]},"id":"4e6a54a1-0f6a-4fd6-b648-5a7616a2261d","type":"BoxSelectTool"},{"attributes":{"below":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"}],"left":[{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"}],"renderers":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"},{"id":"5d0bb551-a7d5-4369-920c-c9a6804ef172","type":"Grid"},{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"id":"2cb755c0-32ae-4af1-8038-5acaf48b8322","type":"Grid"},{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},{"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}],"title":{"id":"286c6214-008f-410c-9280-5b3ef7cca970","type":"Title"},"tool_events":{"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},"toolbar":{"id":"fd8e3f33-c745-43d9-8d2c-e820c1600c2c","type":"Toolbar"},"x_range":{"id":"c0977ced-816d-43a3-9d91-146ce0fa8b71","type":"DataRange1d"},"y_range":{"id":"801a4cbe-dc36-4846-9f46-197c6ab2cb29","type":"DataRange1d"}},"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6947d7ee-b182-48e3-82b5-d62587267dac","type":"Circle"},{"attributes":{},"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},{"attributes":{"overlay":{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9a21dc34-11ce-4dba-9c88-652c166dd66d","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"cd9dbbc4-377e-4d33-9891-9e2d8d415fd3","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["radius","y","x","fill_color"],"data":{"fill_color":["#994a96","#912c96","#d16396","#6ebc96","#766296","#63da96","#7d3d96","#b58496","#a84396","#af2996","#f32696","#433a96","#6c8296","#eeb096","#756096","#ca7c96","#b58696","#7aa396","#b9bd96","#ad9e96","#b53196","#5d2496","#bbb596","#343a96","#837b96","#872896","#f9d196","#33c496","#c3cd96","#a2e496","#a39596","#3c3696","#c9a196","#aed496","#688a96","#a02d96","#3b5c96","#97a096","#756796","#f3dd96","#7aa896","#e85096","#89c696","#bcb196","#5a4e96","#457b96","#72a596","#3b6f96","#755996","#35c496","#cce096","#e0bf96","#a56196","#c45196","#69ae96","#a58496","#6a5796","#e7b496","#7c3596","#47ae96","#aadf96","#e0b396","#9d5e96","#336996","#d74696","#4f8796","#9cd096","#d3c396","#413396","#869296","#4b3b96","#332796","#932296","#6e8196","#852896","#788c96","#8abf96","#f85796","#acda96","#777496","#956d96","#3a2696","#cbb496","#f3be96","#deac96","#737896","#99a096","#7e5496","#72e296","#392f96","#da9b96","#92d796","#a04b96","#748c96","#752196","#853896","#af9596","#cc6f96","#c54496","#35a196","#dc2d96","#7d4196","#89a696","#355896","#924396","#ec6396","#989f96","#4e8996","#e7a096","#c3a496","#bbc096","#4bde96","#6a8d96","#f95496","#6c8596","#5fde96","#eba096","#855496","#836c96","#579e96","#425696","#dc8696","#32e396","#8ee196","#f7b296","#73b196","#c4b496","#ee6e96","#8dd696","#a35996","#73ce96","#d77e96","#92c596","#aebe96","#7ec296","#cd2c96","#7b9f96","#bc4196","#e86996","#696d96","#435196","#b1a996","#a4bf96","#9a2e96","#883896","#d7a396","#b55496","#63b496","#5e4c96","#65a496","#bd9b96","#8e6396","#b23396","#a08996","#6f9e96","#707796","#e99496","#856196","#ab6c96","#586596","#cabf96","#378d96","#ee8296","#942896","#34d696","#be2f96","#c35696","#ccdb96","#51a396","#c08296","#a8a896","#828c96","#e14696","#d7b096","#5c8596","#56cb96","#4a9296","#5d9d96","#3c3a96","#3cc796","#e53896","#429896","#6c7096","#b5e296","#589096","#c34196","#538496","#bfdb96","#ad7c96","#ae2096","#ae2d96","#5f9696","#8a5b96","#a56596","#3f5396","#615d96","#84bc96","#4dce96","#9ad396","#cbd896","#d47096","#5a5596","#32c396","#e35196","#8d7896","#f45496","#913e96","#f95796","#b2b296","#b2a296","#75d696","#c0c796","#974b96","#4bda96","#469c96","#656296","#4a4f96","#7f8b96","#a03f96","#6caa96","#49a596","#68c596","#d74f96","#bf6f96","#66cd96","#81a696","#86cb96","#883296","#a38896","#e96a96","#712596","#ef2a96","#cc4996","#c49896","#487496","#b74096","#4d4b96","#498a96","#3f5b96","#44c896","#3c8396","#3da596","#66dc96","#49ca96","#cdb496","#9ebd96","#512d96","#a0dc96","#c12796","#5e7296","#916d96","#7d7996","#543696","#c9b796","#4d3896","#575196","#538c96","#522496","#917696","#942c96","#cf5396","#518c96","#a6b496","#f6bb96","#58db96","#556b96","#a4ae96","#499996","#a63396","#c82b96","#c53c96","#877b96","#65b196","#639896","#37a696","#819696","#b2aa96","#7a6196","#81bf96","#4e4596","#dd9196","#995496","#6ba096","#807e96","#c54896","#d6cb96","#768a96","#355696","#b2df96","#328b96","#932d96","#472196","#655a96","#4d8396","#6a2896","#336396","#5c4396","#9e4d96","#c12d96","#917196","#322a96","#544696","#527796","#98ab96","#5b4496","#a64596","#6b8596","#a25396","#863b96","#5fba96","#da7d96","#e34d96","#455e96","#e83c96","#8a3c96","#3a9596","#a94596","#765996","#3fd296","#403396","#a24196","#865b96","#cf2d96","#7f6796","#cca596","#948096","#cb3496","#922d96","#e69396","#e56f96","#a04796","#747996","#f9ac96","#bbca96","#ea7496","#9f7396","#78ad96","#d5c496","#52a896","#997696","#e63b96","#517296","#afc696","#7dcb96","#402396","#559f96","#bd7996","#f67696","#714796","#d04796","#d82696","#90a096","#9e4896","#f22196","#587f96","#f1df96","#674a96","#339996","#784f96","#5b9096","#617e96","#f0bc96","#b32196","#676c96","#abc396","#e94296","#755796","#5e5096","#5caf96","#b44a96","#855496","#a4d096","#a44796","#7cab96","#612596","#3b7296","#e2a496","#8dc996","#de5a96","#4a4496","#712a96","#782c96","#859296","#e93f96","#6f2496","#b8c996","#b27496","#edda96","#97df96","#33c096","#554096","#afc096","#ad7596","#b2de96","#7dae96","#684196","#595b96","#632c96","#b1c396","#8a5596","#ca1e96","#6e3d96","#32b496","#b08d96","#377b96","#578396","#c56f96","#90af96","#a38c96","#5c5f96","#468896","#b07a96","#7bbe96","#f35d96","#66d096","#403e96","#f03496","#75cf96","#75d796","#eb7096","#c57596","#c4e496","#e26096","#e0a196","#381e96","#6e3696","#433296","#66c496","#e69996","#b31f96","#512296","#46b296","#537096","#ae8996","#c4bb96","#6a8296","#f0a996","#b57496","#f48196","#39ae96","#be5a96","#5c8796","#d8ae96","#ac7d96","#93c196","#d97696","#cb8f96","#e98b96","#465896","#bb9e96","#c9d596","#f35e96","#912c96","#f53c96","#c42196","#c52796","#b7c596","#837b96","#6bd096","#c1d696","#8b5f96","#837496","#915b96","#3bc896","#a49996","#427e96","#d4e196","#389796","#817b96","#c99496","#ceaa96","#f3df96","#d12596","#784f96","#a24096","#903b96","#338c96","#a4db96","#481e96","#5f5696","#34b596","#c94f96","#773e96","#db3396","#63a496","#f5b496","#b8b496","#8ec096","#d8db96","#cb8596","#35a696","#b75d96","#694896","#ca3096","#906996","#47cc96","#ab2496","#e85496","#6a7d96","#6c5d96","#c63c96","#d2c496","#89e196","#74b996","#4a6596","#f05396","#a45196","#57ca96","#72ca96","#ad7396","#839796","#419396","#3e6896","#6a3296","#78de96","#4e6996","#f18d96","#cd4896","#803e96","#abbd96","#f14296","#dadb96","#909e96","#904e96","#6da896","#b1b496","#7abf96","#6f5b96","#597696","#373b96","#5dbf96","#e04196","#5f4196","#562696","#467d96","#a45996","#7d6596","#cd2a96","#6c2296","#af9b96","#544696","#5fdb96","#c66f96","#afe396","#8d2f96","#6f7d96","#8a5496","#3e6a96","#a92696","#63c896","#cb7996","#e1c596","#5fa096","#98e296","#7b8b96","#36aa96","#4d9196","#78a496","#be9396","#92cc96","#aa2e96","#a94696","#c9b496","#d4e496","#479496","#444696","#56c996","#c46896","#5e4496","#a44c96","#40c096","#bc9a96","#eeca96","#827d96","#935e96","#3f3b96","#51e296","#8d5e96","#433c96","#adaa96","#b2c696","#737696","#d55596","#dc5896","#e5b996","#8f4696","#f34e96","#5a8396","#9ed696","#f58b96","#385a96","#a89a96","#bd6f96","#8a2596","#7ebe96","#5d6c96","#9ac096","#9c4b96","#dc6296","#efe496","#889596","#4a2896","#f1bf96","#9e5096","#3e2296","#d48f96","#ba6596","#8f9396","#5fc296","#aaad96","#92d396","#b7d296","#563696","#a55796","#bb5896","#632696","#33d796","#49cd96","#549196","#d88796","#c77096","#3f3696","#41a296","#ddc996","#7cbc96","#5d9c96","#83c596","#797e96","#b59196","#3c5d96","#a14f96","#692396","#b69096","#8fc896","#e1bc96","#f58d96","#c88896","#f3d396","#494d96","#928296","#64c096","#4f5c96","#b1d296","#872f96","#35a796","#c52d96","#71ae96","#e97f96","#7c4696","#ca7f96","#cf2496","#8b6996","#f2c096","#3da796","#ebc296","#897096","#d1ce96","#618596","#733e96","#812c96","#892396","#5aae96","#d29896","#e97996","#8a6f96","#7d4396","#4a4596","#b42196","#926b96","#966596","#c58596","#6fcf96","#6b3196","#7f6696","#468896","#43da96","#865596","#e61e96","#622996","#3f3796","#634696","#a15396","#66d696","#e69a96","#ccaf96","#9f7496","#6aa296","#e14e96","#ef9396","#859596","#8b9096","#72d696","#566b96","#d09996","#7d8c96","#7dc396","#e43696","#55ac96","#8c7d96","#8f4b96","#b16d96","#acdc96","#f17b96","#b39d96","#eedb96","#65ba96","#61a496","#ce4696","#8bd896","#916d96","#dabd96","#66a696","#6c7596","#7c9096","#85a896","#b26a96","#e74f96","#759496","#65a096","#3fbe96","#a79996","#cec396","#a6c296","#aa7f96","#802296","#d59896","#924396","#793496","#6d7d96","#a98196","#cea596","#ef5b96","#432096","#32bd96","#545b96","#b55496","#db8096","#bc5e96","#dd2596","#498996","#df9b96","#ec8396","#322596","#4abe96","#65d896","#9e9196","#46ae96","#609996","#b6c796","#f13396","#a97f96","#da6a96","#7b3896","#609d96","#d75796","#d4d596","#79bd96","#e78d96","#50ac96","#508a96","#bbd296","#f75896","#695796","#96e496","#f6af96","#e88096","#5fc196","#e4cc96","#eebc96","#e49296","#d7b996","#91aa96","#b65496","#c38a96","#d39796","#4bc896","#3fa696","#679696","#bcc996","#9f9496","#859396","#7a5196","#563096","#599596","#679f96","#632796","#a98996","#f64996","#bd5596","#34a496","#dea396","#3d3596","#6f3c96","#789796","#f0b296","#f1a196","#475796","#59a996","#6f6696","#dc8f96","#767f96","#a76096","#a0b096","#8bc596","#a0a596","#86a896","#7cc396","#ec7196","#98b196","#ec8296","#96a296","#677496","#dd8696","#bb8296","#645c96","#4a6d96","#3d3896","#44bc96","#b78e96","#90a596","#61a096","#595396","#b9e596","#4c4e96","#38ac96","#50cd96","#35a796","#ea2596","#c62c96","#c75496","#3b3596","#bc3296","#cf5d96","#6f4796","#915696","#8b4696","#652d96","#c13b96","#41a796","#bbc796","#44c296","#bf5396","#889896","#99c796","#93bc96","#896096","#597a96","#578696","#dc2196","#80a996","#d7d796","#72b196","#794196","#40a796","#694496","#b97a96","#e33a96","#45d896","#71c196","#dfb096","#c9d496","#8e5496","#504296","#50d696","#657796","#ebd696","#467e96","#9a5996","#5a3896","#efce96","#39de96","#718396","#605f96","#a44496","#c78496","#5fa196","#ca1e96","#83a096","#857796","#d0ca96","#a93996","#f28496","#6b8396","#969296","#3c8296","#d56696","#519f96","#9e6c96","#b58a96","#512e96","#644496","#72ae96","#c48396","#60db96","#ba4096","#4d6696","#99de96","#cb9796","#a92596","#f5b896","#663796","#d96896","#997796","#40d696","#759096","#ad5096","#a69796","#aae096","#6fd496","#b14196","#ac5c96","#bd6c96","#365596","#ce7e96","#e87f96","#55c096","#8ec496","#a95996","#9e7496","#765096","#3e6a96","#5a2996","#37a496","#5bc796","#69e396","#65c996","#9d7796","#533c96","#7e5896","#4c4796","#f62a96","#a88e96","#542896","#f2b796","#7ede96","#8d1e96","#cfb696","#e18396","#8d3d96","#d87596","#5e3696","#ca5f96","#856596","#63d596","#6c5196","#76e396","#4e4996","#c16196","#cd5296","#33bc96","#88bd96","#ab6a96","#515196","#6d7796","#d5e096","#614d96","#387896","#8cbf96","#8f1e96","#cf6596","#589d96","#c8da96","#3d9f96","#d4c096","#857296","#cf8f96","#d74496","#b9e396","#e95d96","#8ed196","#f1bd96","#543c96","#613996","#bcd696","#f4dc96","#f47196","#ecc096","#ba9596","#a15996","#7f5096","#3dbb96","#dfdd96","#9d6296","#92e196","#86b396","#349a96","#95cc96","#999296","#908396","#d03e96","#bd4c96","#d39c96","#902596","#66d496","#9bab96","#382396","#b79396","#85db96","#af6896","#d4d696","#5dd896","#864d96","#e88596","#52c996","#5bc296","#3b8f96","#f76396","#b28796","#c93096","#cb4596","#542796","#6ddd96","#5e5896","#a72e96","#5c6c96","#8ad896","#582596","#4ad096","#deac96","#487596","#7a7f96","#e6c396","#f05896","#f59b96","#c9da96","#ccaa96","#95a096","#7eb596","#949a96","#878b96","#479f96","#5ebe96","#54b196","#565696","#f36896","#f6c796","#835e96","#5b3696","#888796","#aaa896","#32e196","#6b7596","#c06196","#ea6896","#3b3196","#be3096","#396696","#3d7896","#addc96","#488896","#d34196","#474b96","#8e9496","#536e96","#408196","#58cd96","#a0ad96","#c92c96","#c54396","#462196","#7a8a96","#e17a96","#b36c96","#e98196","#619e96","#435796","#f16496","#e38896","#739f96","#e18196","#cf5196","#cf7596","#517196","#ac8e96","#b84e96","#d5a096","#d3c596","#6f9496","#a4de96","#67bc96","#4a3a96","#db2d96","#e39196","#7f6696","#e56c96","#9fde96","#695e96","#c01e96","#e12196","#5aab96","#842d96","#bbb596","#f68996","#99b196","#956b96","#c06096","#b15a96","#9c6f96","#d25296","#ca2696","#ef2a96","#b0d096","#7a7596","#5e7396","#95bb96","#d8e496","#8b7a96","#3e1e96","#a6d896","#696296","#948696","#5bd596","#35d096","#eda696","#4f2096","#948f96","#6c8b96","#7a2d96","#6b3296","#c0cf96","#599296","#697d96","#8f5e96","#4bc196","#d07996","#c6c796","#ee6096","#8e9296","#996996","#999e96","#dbda96","#4a6e96","#b1da96","#c1c096","#f48396","#5b4096","#a88e96","#7f9c96","#ce5096","#334696","#7c2d96","#8fc896","#969596","#399c96","#562a96","#c75196","#e65896","#e8e396","#775196","#868a96","#4d2096","#5cba96","#3c2096","#432496","#a75a96","#cb3c96","#e23196","#f14196","#6f6796","#847396","#aadd96","#f87496","#f8b696","#bd3696","#7d4a96","#c4d296","#819796","#487596","#4f8896","#6fba96","#f46396","#ddc396","#a25096","#d6da96","#976596","#bc7496","#f48b96","#4ee296","#b62996","#584396","#656c96","#c16396","#512596","#f9ba96","#8f9c96","#66a196","#4de196","#5fd596","#4ed896","#c65796","#d19896","#516296","#5a3196","#f82296","#d36096","#843d96","#36df96","#cccf96","#a7e496","#d24f96","#6f4396","#7f6496","#c29e96","#627196","#664796","#c38596","#b4c896","#cd8396","#337596","#957796","#6da396","#d9a496","#588696","#33df96","#814696","#a4c596","#a8ca96","#f3cb96","#9a4b96","#a2ba96","#9f6c96","#838596","#a27096","#cc6696","#f0b696","#d2e396","#807f96","#609196","#51b796","#5a9696","#795196","#425296","#878296","#f3d696","#835d96","#434896","#c5b796","#4c5d96","#765296","#4de296","#7a7e96","#549196","#5bb596","#832f96","#712c96","#3c4596","#3ca296","#775496","#c13a96","#5d2596","#9e6096","#846c96","#898b96","#c18096","#c4c496","#b66f96","#6f3b96","#d84f96","#3dc596","#38c396","#f7cd96","#ce5796","#a07c96","#4f3796","#5d3596","#4c3e96","#c1b896","#61de96","#536696","#c27096","#cf7096","#c72196","#544096","#767796","#ecb696","#deb996","#993696","#49d096","#506f96","#3e4496","#8ad596","#acad96","#9a2196","#486996","#634096","#bbe496","#eade96","#f39e96","#548396","#368b96","#ccaa96","#d22796","#609996","#7cc196","#d87e96","#f64b96","#f3c396","#485d96","#8d5396","#ce7996","#41ae96","#36cc96","#f06596","#a35496","#875596","#ad6296","#989996","#d69e96","#7f4696","#40dc96","#e24e96","#477e96","#a7a696","#6ac296","#db6f96","#ed8c96","#71e396","#3e7096","#533796","#e66696","#aa5596","#9cd296","#b89496","#476e96","#9d6996","#bc2696","#52d996","#e46b96","#c9bb96","#936996","#5fc196","#65b496","#427596","#61df96","#e4de96","#f72696","#54e196","#4b4396","#e7be96","#f7a496","#913f96","#684896","#944696","#e9e096","#ac3f96","#35d696","#8f8496","#6d7596","#e17a96","#82b396","#7eca96","#79de96","#c52996","#602e96","#8cb596","#b7d896","#69da96","#444596","#ace496","#698496","#844796","#399d96","#8d9396","#c98f96","#6dd396","#d8c096","#935f96","#c27d96","#d3d596","#715896","#348696","#d48a96","#599596","#583d96","#ee7296","#dfa996","#634196","#f1c896","#5fa596","#b12196","#e45a96","#6f2396","#7bcc96","#609596","#7f2b96","#75bb96","#57b996","#597d96","#ef4d96","#52c996","#dcac96","#4f4796","#898e96","#542a96","#925896","#c28496","#6bc496","#ca9196","#865196","#a83d96","#77e496","#cf5896","#a2cf96","#bd3c96","#ba4596","#398d96","#75cf96","#ee2f96","#ba6d96","#808f96","#552296","#e2cd96","#b55496","#dca396","#eb8f96","#d94e96","#608e96","#f8c796","#a02696","#cedb96","#b72296","#9dcf96","#678496","#5bcf96","#e23d96","#619696","#c12f96","#e4d596","#edcd96","#cfce96","#60cb96","#46c296","#95dc96","#8a7e96","#39bb96","#a67996","#54a996","#492296","#f78696","#66d996","#ce2296","#6cac96","#edc596","#d34b96","#5a6896","#53b896","#949696","#f69d96","#f22c96","#3f2f96","#52d396","#9dcf96","#d04696","#322996","#3d9e96","#7c2196","#677a96","#48b996","#a0a096","#579796","#6e2196","#e68d96","#6fb796","#44c296","#5f7396","#babf96","#82a996","#4a5296","#46be96","#4f5b96","#f8e196","#8c5396","#457796","#749796","#f76496","#d2ad96","#a9df96","#35b996","#c2d696","#484196","#e55796","#f33e96","#cf7796","#c6d096","#8d4096","#818896","#347596","#b43696","#8ed996","#43a796","#bc7296","#6cc196","#6bb796","#9aa996","#cdbc96","#55cb96","#72b996","#944396","#aecc96","#eeb796","#827c96","#e46596","#906d96","#688796","#e6b296","#804296","#ce7596","#ef2396","#c5a096","#417396","#478496","#812196","#bdb196","#f8c696","#6e5896","#7fcf96","#a12196","#b37896","#812b96","#d2c396","#cab496","#a14196","#e68096","#4b2296","#e38096","#bad796","#c64a96","#a8c196","#6bbb96","#be5c96","#d47a96","#bb7596","#4e6a96","#392c96","#eb3096","#c15096","#efba96","#df8e96","#964896","#537796","#b18496","#6a6c96","#72b996","#96d196","#e4de96","#508c96","#582396","#b3a696","#e2dd96","#b0a296","#576496","#f86496","#c2aa96","#4b5496","#5a2096","#93b596","#c96496","#c6b196","#b95596","#354696","#a6c496","#c43196","#f3b496","#b5be96","#448f96","#4d4b96","#f38b96","#a1a496","#96b996","#8d7796","#cbd996","#c4df96","#953296","#c1c696","#cfdd96","#d26c96","#a52796","#d22c96","#374f96","#cc3296","#f5a996","#e83096","#8bd796","#f27196","#7d7f96","#a08e96","#c62296","#4d6e96","#b32b96","#726f96","#907c96","#9b4296","#7c3896","#c59696","#679a96","#c9c096","#cb4696","#c65e96","#db9996","#da8e96","#e7c096","#da6f96","#c78796","#907296","#454896","#58cc96","#b84a96","#712d96","#57a996","#c07696","#957796","#86ba96","#64db96","#754696","#5dd596","#f8b296","#d9d696","#f51e96","#718296","#c4d096","#b47696","#e14a96","#e24a96","#e4d896","#b06696","#a1e496","#789596","#508b96","#e9e496","#d2c496","#b16496","#955496","#64c196","#824896","#c03896","#e4e296","#c85896","#df6496","#ce3596","#324d96","#6b6596","#846996","#737b96","#73cb96","#b17e96","#e02f96","#648896","#da5396","#5a5596","#599f96","#cba896","#c37096","#527496","#e59196","#4b4a96","#d1a096","#ad2196","#73ad96","#35c896","#938296","#7a9896","#c9bd96","#d7d396","#7da196","#776d96","#c04996","#427096","#9a6496","#87b796","#e59796","#dd8196","#64b496","#667696","#5da196","#745996","#a77096","#629296","#dab896","#aba596","#c79796","#f37e96","#d31e96","#dd7396","#564396","#33d796","#f2d396","#32c296","#9c4296","#90c996","#bede96","#8f3096","#46a596","#734c96","#c22d96","#b27396","#859e96","#455296","#526196","#5c3b96","#a65d96","#9f3996","#43cc96","#eb8696","#bc7296","#8faf96","#d88696","#d8c796","#969596","#824396","#839996","#756096","#adb396","#462e96","#68d896","#e6bf96","#65e496","#3e5b96","#8d5496","#b2a496","#7ede96","#c3ad96","#95cd96","#92c496","#ddb196","#858496","#866296","#623096","#cc4396","#62be96","#797f96","#d0b796","#6b8196","#d52096","#7c7b96","#5e8696","#6c6f96","#924096","#3fdc96","#638596","#d9ad96","#a4e296","#b92096","#ee9596","#959496","#e42296","#e37c96","#4dd096","#5e6a96","#a86596","#e68e96","#647896","#f8c096","#785396","#cb3696","#c0bc96","#576a96","#907a96","#f75f96","#ec2996","#b5e596","#9c6896","#6d2c96","#5b5096","#5b4896","#a25a96","#6cbc96","#e22396","#474a96","#6e3d96","#73a596","#694596","#f2cf96","#859a96","#36d896","#347b96","#c18996","#e8c296","#c65b96","#a9bf96","#47c896","#66e396","#487696","#c74a96","#c51f96","#487b96","#8a2d96","#58cf96","#c8a096","#3f8096","#9c2096","#a7b696","#484796","#d4e396","#57ae96","#b8b596","#5ace96","#558596","#79c196","#d5d596","#afd396","#622496","#3b6696","#5d9696","#f64f96","#a02796","#f8e496","#b3e496","#959396","#a65796","#667b96","#768996","#ea3696","#612396","#638e96","#96d696","#6ed296","#77df96","#cc4296","#dd8a96","#505496","#7d3c96","#343296","#532996","#922d96","#5b8e96","#cac796","#e75296","#e85896","#ede396","#567696","#7d8096","#9d8b96","#b6c696","#7e9696","#754396","#a72c96","#edd696","#ae9b96","#67cb96","#639f96","#b97796","#c3a796","#4eab96","#39a296","#b0ac96","#5bc096","#578796","#3f5196","#5a8796","#6f8596","#6a6e96","#adc296","#697b96","#d96996","#4d2396","#f34c96","#44cc96","#958896","#429996","#6a7996","#3a6696","#3b9696","#39b496","#e0b096","#56ab96","#4b4696","#4f9996","#cba796","#439196","#d56196","#4fc396","#f1af96","#895096","#d49896","#bc6896","#814a96","#3f4496","#5f9496","#80ac96","#f0a696","#3b6496","#406196","#917a96","#a67696","#61b496","#894396","#386496","#c89c96","#c57496","#817296","#e17b96","#e72c96","#53be96","#d96796","#5e4996","#d94296","#f06b96","#c69296","#83cb96","#e96d96","#48be96","#7e6996","#d78796","#cf6696","#9ea196","#403196","#b99a96","#ad7f96","#6c6696","#4fab96","#9fd796","#3fbc96","#b17c96","#aa9396","#3c5c96","#952896","#915796","#ab5a96","#6c8296","#ae5e96","#392c96","#ba7496","#efd696","#67bd96","#695e96","#8b4f96","#91a496","#c04396","#4c4896","#708296","#b08b96","#477596","#5e2796","#3caa96","#d6ba96","#db7f96","#b28f96","#426196","#6d7f96","#34e596","#c16896","#ca2896","#57b596","#6c3696","#387396","#d18496","#8d4896","#52b596","#c07396","#c76496","#5b8596","#7d7996","#a7de96","#c05296","#792496","#3f3996","#dc7996","#e6b596","#c9c096","#a39396","#4c8196","#b1a896","#6ba296","#f13a96","#7ba096","#83b296","#618296","#c3b396","#91c596","#581f96","#47e296","#56c696","#8e4d96","#c67996","#88ae96","#ef5196","#633896","#557b96","#a74996","#ab8496","#7c1f96","#7ac096","#459596","#3c9296","#f82b96","#846c96","#b94196","#588596","#d2c596","#3b2b96","#3b4096","#f99d96","#af9696","#782496","#4c9596","#b5c396","#705696","#3a4696","#e46a96","#5dce96","#3ac096","#b5a996","#c5ce96","#9ac096","#644296","#dab296","#f8c196","#67a096","#cd9c96","#44d696","#6d5896","#607596","#a24d96","#7b9596","#e69c96","#6fdb96","#5baf96","#747496","#3e3796","#f98b96","#649896","#de7896","#939896","#638496","#759896","#aebe96","#bca696","#542296","#5c9c96","#b9c396","#da7196","#59de96","#af4296","#ae7f96","#87bf96","#d4c696","#c77c96","#db4b96","#c14c96","#7d9196","#48d496","#394b96","#568f96","#f59c96","#4b4396","#353396","#57a396","#57da96","#324a96","#d48396","#4cce96","#4acc96","#503696","#6d5796","#de3296","#af2196","#893396","#c96d96","#57cf96","#4a4696","#595396","#e1df96","#949f96","#bb9396","#c43096","#c02296","#514d96","#dbe596","#4b5d96","#ef5596","#b2cf96","#5e9696","#c49196","#4f8f96","#f1a896","#ad2596","#cfb896","#876296","#833d96","#c5c796","#39c596","#c42f96","#984196","#992196","#c7a596","#3f4496","#381f96","#c6bf96","#d9d496","#516696","#61ab96","#572296","#af6096","#329e96","#82c696","#b82c96","#a06a96","#97c096","#913596","#a67096","#464d96","#783896","#44ab96","#344196","#e6d296","#4ecb96","#484a96","#dac996","#e57a96","#7a5f96","#d6da96","#e78796","#dd7096","#8aaf96","#cfcf96","#d35e96","#868f96","#f6e396","#80e396","#d53a96","#814696","#84d896","#43c196","#5b8f96","#90bf96","#5f4496","#84af96","#3da296","#c58f96","#ab4396","#f7b896","#e57796","#b34296","#564596","#b9dc96","#72cb96","#eb3496","#557796","#598196","#d39c96","#a8bd96","#62c696","#4cd896","#986996","#a0c396","#829a96","#a05696","#c37496","#d35b96","#653a96","#8e8096","#984496","#95d696","#de2396","#807a96","#33bf96","#578a96","#b77796","#f82b96","#e1be96","#c88996","#d78c96","#9c4e96","#f1df96","#ac7096","#937296","#3c8f96","#87df96","#f76b96","#5c2496","#404896","#34bd96","#74d396","#94b396","#682896","#3ace96","#4a9896","#a63496","#809f96","#3d2d96","#ac3f96","#d57996","#64ba96","#5f7596","#5c3896","#9f6e96","#932496","#7ec296","#e27396","#737896","#c79896","#b28696","#d8a396","#5a9296","#ab5196","#5cd096","#91a796","#9f6a96","#83bd96","#5e2e96","#f0cc96","#8bb796","#353696","#f0e096","#883996","#c95a96","#e3d096","#4f9c96","#e0c696","#4eb496","#749a96","#eb8d96","#aade96","#f2bb96","#578c96","#636d96","#c0cc96","#357496","#bca996","#a75f96","#f74d96","#638196","#504696","#4f6c96","#cadc96","#34bb96","#4f3896","#ac2296","#63d096","#878496","#7c4c96","#beb996","#3f6696","#d86e96","#c77796","#589d96","#c15d96","#d39c96","#bbbd96","#b02296","#71dc96","#c7a396","#5d8496","#4f4d96","#d34896","#e9b696","#557096","#828496","#af4096","#4a8796","#668d96","#62a396","#628e96","#9dc196","#822696","#6a8d96","#7ece96","#bf8196","#b79e96","#594d96","#a2bf96","#93b296","#612196","#59ab96","#b9a996","#586d96","#cb2696","#d3b696","#ca2396","#90e196","#792e96","#ae7f96","#754b96","#f43096","#816e96","#4fbe96","#393d96","#4fd496","#f2c396","#6c6b96","#445a96","#b9a896","#479596","#4a7696","#4b5f96","#bfbb96","#d1cd96","#783396","#d64a96","#799996","#56a996","#8b5696","#b36e96","#7d8796","#932696","#a59996","#b35996","#5f4d96","#6e2296","#97d596","#447296","#7e7296","#48c196","#334796","#653196","#e72e96","#375796","#677d96","#9b3d96","#57cb96","#719c96","#74cb96","#667996","#699396","#f9d996","#d56996","#c16596","#48b096","#91ac96","#b15e96","#b16896","#56c296","#5c2d96","#d24596","#a1d996","#5d1f96","#412096","#5c7896","#636396","#e42696","#f58596","#466c96","#475296","#ba5c96","#eb3296","#e23e96","#c72796","#8bc096","#987e96","#639996","#7a2196","#a55296","#b0c196","#3d2e96","#78ad96","#43a896","#4a1e96","#a1ad96","#dcd996","#429596","#7d2696","#61a896","#826696","#b8db96","#df4396","#bd7d96","#868096","#4e8a96","#cdd996","#953296","#9c3a96","#3ea096","#5c6196","#c14996","#dcdc96","#69cc96","#db9096","#b6e596","#b31f96","#51cf96","#5d2a96","#97c396","#564796","#71cc96","#3fcf96","#678896","#eadc96","#679e96","#d54296","#dc2596","#586396","#cbb796","#e8af96","#ab2a96","#f09896","#c6b496","#6e5c96","#6de596","#463996","#864796","#a12596","#423096","#838996","#9e9096","#8ecf96","#da5e96","#815d96","#75cf96","#3ee096","#90a196","#4eb296","#a4dc96","#d73796","#5e4096","#715f96","#f2af96","#77dd96","#5db996","#886896","#ba6e96","#e66896","#92d396","#f6cb96","#3b6196","#579396","#757196","#a28c96","#586096","#6f4196","#4f3496","#509896","#e49a96","#75ab96","#7ad396","#b26996","#d5af96","#9ecd96","#9c7496","#3e6296","#6c9096","#f53396","#6cab96","#42c196","#69b596","#a19596","#4fb996","#a05996","#d3b596","#5f6a96","#f64496","#f75b96","#885f96","#becb96","#c49f96","#d05796","#706c96","#8a2e96","#72c496","#b44196","#813096","#8ad096","#d28296","#6ebb96","#6c4496","#538296","#e43196","#57d896","#c42c96","#394a96","#f1d096","#6c7b96","#44b196","#598b96","#71ae96","#832396","#62da96","#5b9296","#827896","#90db96","#36a496","#3f5b96","#b44f96","#62cd96","#f18896","#e62096","#57bb96","#909696","#c2da96","#ac4b96","#a54f96","#b6b296","#678a96","#64ac96","#4c2496","#5a9596","#496496","#953696","#ca4096","#60de96","#9e7396","#9eb596","#bec696","#534696","#6c8996","#487f96","#873696","#6a3b96","#c08e96","#933b96","#ee2396","#bb6596","#4de396","#df3196","#d0c196","#489696","#87a796","#7be496","#8e9a96","#e6cc96","#bfa296","#6fde96","#6d5496","#ce7e96","#b1c196","#4caa96","#b86196","#c1a096","#b6dd96","#daa196","#d08e96","#565796","#66ca96","#783196","#b85a96","#5a6796","#93e296","#a0d396","#60d196","#a68b96","#4bc996","#592796","#409e96","#7a8696","#901e96","#415a96","#376c96","#997f96","#52b596","#92b996","#ebb896","#447296","#7c4496","#604396","#814b96","#e6c096","#b3d696","#d2e196","#f1a796","#993b96","#a22e96","#9bc296","#8e4f96","#811e96","#d07c96","#92bb96","#e4de96","#a33c96","#93cb96","#ad5e96","#a23396","#6ea096","#adab96","#795596","#ada796","#f96e96","#392896","#332f96","#acc896","#34d496","#8b5096","#90e396","#b83896","#731f96","#a34296","#84b296","#f82296","#ef3896","#d4a696","#cc6a96","#6ace96","#6f6d96","#9faf96","#429496","#9ca396","#492e96","#bfcf96","#4c5896","#ba3296","#922596","#dd6596","#745396","#dc6396","#584096","#dd8f96","#926d96","#753996","#68c596","#a52b96","#cb8d96","#60d696","#452996","#4f2b96","#b08196","#f37f96","#e83e96","#418296","#998596","#501e96","#cd3c96","#c79b96","#a66896","#4d7796","#5ddc96","#872a96","#dc8296","#336796","#563296","#d9d696","#ce9696","#353596","#b8b796","#bf5b96","#829e96","#6ea096","#de5396","#f8c996","#8cc496","#bfc296","#dbac96","#506e96","#416e96","#6d5896","#b8cb96","#7ddf96","#d63996","#eb9996","#e3df96","#338d96","#704e96","#94c096","#e53e96","#d66996","#81ac96","#748196","#c8d296","#32ca96","#945c96","#5ac596","#655296","#f72996","#857596","#efad96","#c3bd96","#413696","#7baf96","#78d796","#928696","#b8bd96","#bb8a96","#e1ce96","#cb6896","#69d896","#55b896","#e94996","#4f5c96","#acb996","#91c296","#369796","#ef3496","#52a396","#a07c96","#f07096","#54c496","#b92696","#857496","#e65896","#8a4496","#e88b96","#77d096","#c55c96","#9c6096","#d22d96","#825c96","#d94796","#868196","#3c9296","#473096","#998896","#6c8796","#f7e296","#366c96","#396a96","#46a996","#af4596","#553696","#c3b996","#f53596","#a34996","#94ce96","#cf2196","#e08d96","#c83d96","#709796","#4bd896","#bb3e96","#cc9396","#e1cd96","#643d96","#876796","#54d596","#576696","#b13496","#ef9c96","#f35796","#ce3f96","#872896","#c55296","#746196","#945e96","#644496","#8e9e96","#b73796","#52cb96","#d7c096","#885d96","#a5bf96","#385596","#8aa896","#705796","#678b96","#607a96","#bfda96","#e1a596","#48d896","#c0bb96","#bbc796","#e7c196","#f42c96","#7b7c96","#909796","#936296","#d2ad96","#a75396","#c4cf96","#dae296","#9b7396","#c05096","#957b96","#386e96","#f34196","#8fb496","#8c8296","#dd7396","#501f96","#752b96","#a7ac96","#f33496","#acc296","#35b896","#cf4696","#bcb996","#c9e196","#b9cf96","#705296","#929996","#f26f96","#3ec596","#c53c96","#6f9696","#7d6896","#cc5796","#af3296","#45b296","#d99396","#7dc396","#665a96","#adbf96","#359696","#72b896","#932b96","#653296","#f05a96","#c7e296","#414796","#e0da96","#db6296","#3f6f96","#9dc096","#ee5896","#364c96","#545b96","#e68296","#d78d96","#c0bb96","#432496","#f85396","#699896","#b7a696","#f7cb96","#b59596","#82ce96","#d59096","#765996","#6a8c96","#3d7696","#5d5096","#bc7196","#a92396","#88a796","#906396","#b67b96","#735c96","#562f96","#847a96","#e46e96","#c07496","#98be96","#6e4d96","#c32e96","#365396","#743196","#c7c796","#6bcb96","#5f6f96","#804c96","#a4af96","#99ae96","#5fbe96","#c07796","#376496","#aa4396","#782d96","#4c4a96","#e6a696","#65c496","#e36696","#8d7496","#788996","#397696","#b88096","#b86296","#537196","#845796","#448996","#b67496","#50cc96","#d12a96","#47d096","#d9c996","#98ab96","#7a5e96","#c5ae96","#bce196","#bb9996","#dd9996","#d6ce96","#476996","#cf6a96","#5b8796","#74d596","#8d7a96","#84dc96","#3bc996","#f59496","#919796","#ce2496","#7aa096","#772596","#a92596","#af3296","#94b196","#d13a96","#b3b296","#f17a96","#cad796","#8e5796","#cb2896","#50d696","#dbc696","#343396","#ef3596","#895896","#4d6196","#a1a196","#714796","#ed1e96","#a16e96","#8a6696","#8b7596","#695b96","#6cd996","#788996","#d57696","#f56b96","#4aa896","#adc196","#8f7096","#475a96","#5d4296","#b28f96","#e9af96","#ac9096","#d2cd96","#375a96","#558596","#39b696","#be2996","#59bb96","#96a596","#d27996","#8e8796","#376396","#a98996","#b7c096","#e97896","#359196","#b9c596","#8c4096","#998696","#ac8196","#60c196","#92c696","#de5896","#cb9c96","#c43a96","#d93896","#513f96","#f2dd96","#efd296","#538f96","#7b4e96","#6b7b96","#db2596","#f6b296","#a83896","#349c96","#ded796","#8ec996","#6a7396","#f79096","#daa596","#b58596","#e29596","#739596","#aa2d96","#399096","#75a596","#6c8796","#669096","#a39496","#b55d96","#9b4896","#702996","#78b596","#bf7996","#f5a396","#91d596","#d07196","#b65b96","#4b7c96","#bce196","#f5c796","#dd2f96","#d06796","#50ce96","#cd6896","#502b96","#ece596","#509a96","#ab1f96","#b14996","#d8b396","#682296","#397b96","#41d096","#bddb96","#3b4796","#4b3296","#549396","#d94996","#8de196","#7cae96","#948f96","#de5c96","#e3b696","#e3d196","#a5d796","#d67b96","#b11e96","#b19596","#e98296","#4ccc96","#a04b96","#6dc696","#7c8e96","#8c5b96","#b39296","#649096","#eb3a96","#ec4a96","#c87296","#7e6096","#c0b096","#952296","#ca8b96","#afb196","#775896","#879e96","#466196","#6aa496","#453d96","#9d6c96","#d12c96","#564e96","#509096","#5caa96","#e35296","#ce4e96","#803396","#f14a96","#928696","#52c896","#733996","#d13f96","#b05196","#368496","#905d96","#c97396","#f1a596","#888396","#4be596","#e31f96","#ea4d96","#bccb96","#d55796","#e08d96","#b3cb96","#f0a496","#648b96","#6d8e96","#7a2696","#45dc96","#f53b96","#4c4396","#33e596","#f07c96","#60d096","#dc5996","#575d96","#679a96","#b67c96","#b78f96","#ede296","#35c996","#76a996","#659896","#4e7096","#3eba96","#3d3796","#634496","#e59296","#816596","#54cf96","#724f96","#756896","#e06896","#735196","#8b6f96","#ef8796","#8a8796","#744196","#54b396","#b29596","#6cb596","#a0d496","#3d8b96","#894b96","#7f7696","#ee6396","#b33196","#60b296","#9f7c96","#368696","#78d296","#9d8296","#69e596","#6d9496","#ce5f96","#8fc696","#ba9596","#b0cb96","#4c3e96","#347596","#614c96","#8f7796","#427c96","#f03f96","#8cc396","#8eb996","#4e6e96","#f69196","#452196","#814a96","#d82896","#4e6896","#e33096","#ef5196","#998596","#e5cc96","#aa9196","#7a1f96","#eae596","#a5bc96","#9ba896","#ba2796","#534096","#52a596","#792296","#d54b96","#8b7b96","#392096","#456396","#557696","#c84c96","#ccbb96","#e0df96","#aac196","#d15696","#72a996","#a85096","#498296","#53bf96","#772196","#e5cc96","#698e96","#6abc96","#763096","#c42296","#90c596","#eb6f96","#c06e96","#bcc896","#54ae96","#c0c096","#d05a96","#ad5396","#756496","#b0cb96","#336e96","#e68896","#c2a496","#8b4f96","#43d196","#615096","#77e096","#812c96","#ac7796","#ee2396","#5a4f96","#54bc96","#883496","#509a96","#82ca96","#542796","#ab8096","#cf2096","#854e96","#b06c96","#3fcb96","#dda496","#a05696","#cb3996","#664496","#f77d96","#957c96","#55d796","#932d96","#d77c96","#aba796","#be4696","#588396","#742e96","#3a6796","#47d096","#559796","#406a96","#7e9796","#5ee596","#438596","#8ac196","#d14396","#5bb296","#c2da96","#d36e96","#cc3a96","#a73096","#42b996","#719a96","#f57e96","#f25796","#599a96","#49a396","#5d2696","#507b96","#5ba296","#e03a96","#60de96","#dac996","#eb9196","#b47896","#f27f96","#863096","#a99b96","#807b96","#452896","#3a8096","#529e96","#cf2296","#7b8996","#40da96","#a6ab96","#3eb096","#34bb96","#a57396","#d34996","#a57196","#663996","#b94396","#ad5796","#b37d96","#65bf96","#cc7d96","#d85696","#667196","#696b96","#e36596","#d05696","#f2b296","#ba2696","#a55c96","#6ab196","#6adc96","#a54896","#938c96","#5a3b96","#bb7396","#51a696","#8f3b96","#8e2396","#c4e096","#34cf96","#97e496","#c74096","#a4d296","#d59d96","#85cc96","#bc4196","#4d3196","#81bb96","#a83896","#e9d296","#7d7496","#b32596","#8e9596","#e38396","#3a7b96","#70b996","#aeb296","#358696","#f79f96","#de6f96","#6fe096","#55da96","#c94296","#613796","#346c96","#e9ce96","#f31f96","#8fc596","#4c4a96","#6b8496","#a8b396","#4b5f96","#7ae396","#b53e96","#f24d96","#cb6f96","#8b7196","#8d7396","#a49596","#399596","#a99896","#ea7c96","#868e96","#9b6d96","#786996","#396c96","#b1bd96","#984196","#b1cd96","#9d3996","#85b396","#c42596","#583396","#ef8896","#f66596","#798196","#e42196","#61a396","#56e096","#5f5196","#672396","#60c796","#855596","#75ac96","#f79696","#d52296","#343596","#bf4596","#969d96","#ed5a96","#7b3396","#33af96","#444996","#c68896","#8aaa96","#7f7696","#dac096","#d45c96","#e37796","#33be96","#3ae596","#c65196","#5b8a96","#418f96","#a6cd96","#a43296","#c6b796","#b43696","#d19296","#dce396","#70d996","#379696","#78e196","#b93496","#75b596","#b8d896","#c83096","#55bd96","#a7d496","#6c4196","#66d096","#eda396","#a35596","#ba8f96","#7a8796","#a5b796","#bc6696","#f48d96","#8abd96","#37b396","#538a96","#887596","#c1b296","#5b8f96","#897b96","#e86696","#84b696","#7b9d96","#764a96","#d0bc96","#3ece96","#3be596","#483a96","#c48196","#8b1f96","#7a5596","#517896","#b1e096","#ee4296","#ef9e96","#943896","#79ac96","#c03396","#ecbf96","#992f96","#837c96","#ce4a96","#5b4d96","#3fdd96","#ad5796","#86a096","#c7cc96","#603596","#f7d096","#c58d96","#a2af96","#e38e96","#607896","#f2a996","#edcb96","#9b4396","#b26696","#c39c96","#bfc496","#c3d096","#e78d96","#37be96","#ba8a96","#678a96","#6a2896","#eca696","#605796","#b3c696","#815996","#32a696","#c07e96","#7bca96","#f1bc96","#a97696","#75b396","#504896","#532196","#603896","#994e96","#5e2996","#de7a96","#dd6496","#76c196","#6d9f96","#9c6496","#633396","#c48f96","#c74896","#af2396","#3ede96","#bf4e96","#5aab96","#939a96","#f77496","#da9996","#3f2096","#68b496","#b8a996","#379f96","#36b396","#6a9396","#d76f96","#4f6c96","#7fc196","#d43696","#e9b396","#a66796","#a27596","#463596","#9c5896","#ccce96","#7be596","#406f96","#695696","#3b2596","#659496","#d52496","#878396","#ed8996","#40e496","#b07796","#6a5d96","#7c8496","#99e296","#c64096","#40cb96","#ed5e96","#8c9b96","#648e96","#f22d96","#e4a596","#82c396","#449e96","#45dd96","#cacb96","#617a96","#9eb796","#91ba96","#cb2a96","#8c9896","#e58c96","#ead296","#d2dd96","#bb4296","#7f5396","#e7bf96","#825b96","#4e6096","#b4d096","#3eb796","#8d9e96","#46ab96","#b17f96","#a9a396","#a65e96","#ac4c96","#5bd596","#eb7496","#8ac196","#442c96","#ab9096","#718b96","#f37496","#4e5496","#925096","#f07096","#f04696","#963496","#f22396","#337796","#f32e96","#66e396","#9d7b96","#703d96","#aea996","#d32296","#64d796","#e07496","#55e396","#8f8c96","#3e5f96","#965d96","#77a596","#cad996","#876d96","#5adb96","#81d596","#e38a96","#ce4a96","#d43a96","#7b6e96","#d12296","#bf4f96","#aed896","#efb096","#d7d096","#32cc96","#616696","#eadd96","#ec2596","#7ed796","#838596","#a18796","#f08696","#e7c996","#abbf96","#35d196","#d1c096","#53b396","#cfa796","#b17296","#468c96","#40a496","#4aaa96","#a66696","#f3d896","#5cc496","#766396","#cbb396","#f84d96","#484c96","#83d496","#844296","#988296","#6e4d96","#391f96","#922e96","#d74796","#357f96","#baa196","#f7e596","#da5696","#e59d96","#c88896","#b62e96","#f5d896","#9d8096","#a4d596","#d62796","#eaa196","#37c696","#4e8b96","#b58096","#b95496","#ab2196","#482e96","#864196","#503d96","#9e4296","#692296","#664f96","#6abc96","#963c96","#f6de96","#6cac96","#b9dc96","#f4b996","#3a3a96","#ae2396","#3b6696","#ef9d96","#ba9896","#bb4796","#cc9a96","#bd5796","#b0af96","#ad9496","#dfd396","#92c496","#afd796","#bc1f96","#9d8896","#7fdc96","#848396","#3b7196","#4f9196","#cbb396","#6fd596","#dd2d96","#734396","#b53296","#cc8096","#947c96","#7fe396","#59de96","#6a7096","#f09d96","#6d3e96","#a46596","#e38196","#c47c96","#8cb896","#a94696","#be4396","#d53c96","#584b96","#375496","#b37596","#324696","#b59196","#7d1e96","#8f9d96","#eeb596","#9b8496","#77ab96","#956b96","#8bb196","#98a696","#92b596","#dbad96","#abdf96","#9cc796","#ad9c96","#604b96","#6f7f96","#832196","#336596","#cf6396","#b88396","#334796","#ed8e96","#ac5496","#a75996","#ac7b96","#625b96","#4fc396","#c87796","#b13c96","#7eb896","#b0b896","#7d8e96","#a7d996","#e5a496","#3b5996","#386196","#49d496","#acd196","#bb7c96","#478396","#edca96","#eed696","#ee8196","#aa4196","#cf2296","#3dd796","#a82b96","#ee7d96","#956896","#7eb896","#bbd296","#dbd596","#804c96","#4a3c96","#eca196","#bfa296","#76dd96","#b17a96","#de9296","#e82396","#cfbc96","#993696","#c68796","#895696","#38c896","#77ae96","#ab4896","#edb396","#a12a96","#a97696","#632096","#cd6796","#e5ad96","#d22d96","#b64296","#98c496","#ac4296","#38b196","#6fcb96","#f67296","#533496","#b2be96","#342c96","#9cc996","#3e1e96","#49c796","#f0aa96","#eb5096","#b78496","#57c196","#a08996","#359b96","#f6dc96","#6fa796","#75a096","#f69f96","#b9c896","#915e96","#d23d96","#834996","#324296","#e9aa96","#ad8c96","#a68896","#b73b96","#d0b596","#ce6f96","#44ae96","#3e2a96","#3f6096","#5cb596","#8d9d96","#8de096","#9d8c96","#a27296","#e4a596","#bb4d96","#cd4b96","#b56396","#df2696","#dc3e96","#a59e96","#452696","#5c6496","#8dd496","#da5496","#eb5196","#a48e96","#64d296","#66db96","#d24b96","#d46c96","#bdcb96","#48d796","#b8d196","#72a596","#d3d696","#6d8396","#6d9496","#b38a96","#a82096","#68c196","#99ac96","#3c4896","#3f7596","#613696","#c35b96","#6dc996","#b08596","#e72f96","#ed3b96","#a34b96","#b9d796","#7c5d96","#832296","#7d2296","#d64096","#eaad96","#c03796","#678f96","#3fcc96","#a4b796","#475d96","#c8d496","#848c96","#714896","#582d96","#44c596","#d5db96","#f4d096","#aa7996","#435696","#60c396","#f95596","#9b8196","#395596","#7ccd96","#42c296","#f2d096","#872d96","#b4e496","#795f96","#68c396","#ebdb96","#a4b496","#eb7596","#bd4696","#a72996","#374896","#be6b96","#c9c096","#d2a296","#669796","#9ed196","#4e4496","#a35596","#a22a96","#69d896","#35d196","#cdc296","#61b796","#d93d96","#676a96","#436696","#7d2a96","#9c6096","#502d96","#50b596","#5f6996","#3ce396","#9e4096","#f6d296","#b0ba96","#8a5a96","#c24c96","#be8496","#8a4096","#e05596","#33c496","#b18a96","#b87096","#366296","#90c796","#825896","#d4cb96","#c48096","#b7dc96","#b29596","#c84296","#658396","#3fc596","#ba8896","#de5a96","#d07496","#66c796","#f47496","#61ab96","#c74c96","#6f7a96","#6b7c96","#764196","#a46696","#50cb96","#498a96","#919096","#922196","#b87c96","#695f96","#b6a996","#e95596","#9e6796","#4bd896","#99a396","#59d896","#e15596","#98cb96","#c37396","#d71e96","#b42e96","#bc3a96","#f32696","#5ccc96","#b5ad96","#cda196","#c38b96","#895996","#5da396","#bc8596","#998a96","#a73896","#c63f96","#52db96","#e83796","#9c3696","#76a296","#b72596","#f59496","#a3b496","#435896","#653196","#b3df96","#6e6296","#a46896","#99c396","#b5bd96","#684e96","#ca2f96","#969a96","#73c896","#dd4396","#59ac96","#dd2396","#548696","#ecaa96","#ead496","#d2e596","#364296","#ad4e96","#5ebe96","#7c8396","#404796","#a23496","#dcd396","#b55896","#3b4396","#3cc096","#5f8696","#787896","#abbc96","#835796","#c5d796","#e9c596","#ab4396","#cb5096","#81a896","#b94596","#519296","#361e96","#a08096","#cba996","#b14496","#9d2c96","#3a4496","#5f3a96","#767696","#7fbd96","#952d96","#a34e96","#e16896","#f69696","#c8d296","#d3c196","#e1bd96","#ccda96","#6d5b96","#f38896","#3bdd96","#9d6c96","#52d596","#717696","#4b4496","#704796","#addb96","#5d6996","#f37896","#b2b596","#bce396","#a65996","#c47296","#7b4796","#5ec896","#434c96","#8e8a96","#4d4596","#9a2196"],"radius":[0.7421629153887686,0.8845557645036722,1.458755061224639,0.8223550892055762,0.5638909317097827,0.9813233065536198,0.051545772320760797,1.3607515312846585,0.017239715734090055,0.1066358007614766,1.2817189807289568,1.147358804778845,1.4276806878068173,1.1403982123547052,1.1688894331035495,0.8696432527778357,0.304131948362526,1.1927202781691735,0.01906070916319097,0.3011986835833976,0.5069933165914238,0.7386543555825835,0.9957943977661071,0.1659411939787898,1.2365892668577938,0.5087423854805839,0.5757550872046939,1.4278369939935784,1.1615191263431628,1.4313797135328779,0.6242462067688934,0.9328312018936173,0.7492281835225396,0.1689444104920817,1.319797306607719,0.03113259822722897,1.2423353800291603,1.3451585875252188,0.1991804458289525,0.7691925806360116,0.644054545165519,0.38527558734401196,0.6549168749836733,0.5278017993668407,0.1032277432938597,0.9714840376649796,1.4243361927687137,0.34736539971901953,0.24184677042265645,0.873684331016721,0.34315246064161614,0.3356723014804552,0.5142670203521542,1.2638964133968051,1.0818506166617166,0.8502656090186019,1.270240879396257,0.7422208527906347,0.49201155795130114,1.332827399287693,1.4362419418233392,1.2822587337262892,1.3724878369037148,0.009447082949028685,0.6708110682089956,1.0441192130363386,1.0142217995361136,0.03410378103684153,0.5248327967341913,0.6088577462017155,0.7974968068535169,0.4662942957654301,1.3557811121634775,0.04097498059588367,1.3754193633669813,1.2341294956892805,0.07775352120952256,0.11679087613957895,0.9385680827690943,1.0255176519014713,1.2320275827505527,1.3064009756961974,0.6624097960818538,0.2945284423668178,0.3845299385395146,1.067392970640762,0.04314189934081597,0.5996917285483023,0.48016828338976675,0.35891457049487824,0.19577262496683812,0.8854377189231782,0.3242501156437057,0.8564390568225146,0.7944852907853666,0.09671531740488881,0.9229425208404056,0.2831659131268197,0.564414622343137,1.2861513787648526,0.6447403836444106,1.4691131238805688,0.05183274115635256,1.4651149589002626,0.9943136450010186,1.3013427414810261,0.9118698372937819,1.4898967618664507,0.6681092688916952,0.6799741616149905,1.4406232157683205,1.2689729855021814,0.9469576979688024,0.33873726394383546,0.8760385244665067,1.3214736925101231,0.019799686183693377,1.2122789701052115,0.47519630460803053,0.6799116587823064,1.1265859518477246,1.2175832047822328,1.1953410881510562,1.3335956883276785,1.2594536338556759,1.075516177601256,0.6469507629065705,0.5173032123665194,1.3931239474723582,0.7677273899524604,1.0393108843385344,0.41935899107925373,1.2010305113317044,0.043461176721364625,1.3472389837847003,0.3413895105869179,0.3572191834500809,0.8216225943678068,0.5989684257290784,0.5796404797782886,1.166069096700231,0.9133956280579253,0.7414731669941115,0.18947196392153798,1.3208553069375266,1.0903167797294393,1.4613483853731364,0.8005873382181368,0.4793888735798476,0.8445325840627083,0.37769721220155045,0.6719316833993019,0.7502960907478762,0.7023515684332732,0.1906953039762851,0.8055483586713708,0.23198136173350692,0.25066113830033426,0.630354163394073,0.3717169154816113,0.4608736945726012,0.5590253339816136,0.6157869069371085,0.8956867541168638,1.1119722291060428,0.21419801975301217,0.5748608053888237,0.3684634487049291,0.5225046488762601,0.18790847268659328,0.5388591507782048,0.9923140176858111,1.4520371909603214,0.5797652886370351,0.10052981668092587,0.05826365704099601,0.9148175818578723,0.8601390035186389,0.010007877389992537,0.9196346315779969,1.204643460491813,0.7693814264125864,1.1869840654112875,1.4167271962438395,0.43281018761509915,0.6713527592811602,0.8096892018845476,1.182893369419095,1.377661053641038,0.49844209350568214,0.9332327825981822,0.6155271760752801,0.24076626103169063,1.0989469514662753,0.9385024381788344,0.7679696017398314,1.3027337047134955,0.7388938701124872,0.001768231243159113,0.7250123878571324,0.2699860758523382,0.9439425834912621,0.9713274810083401,0.5239639645814161,0.7760941433861636,1.4141412090024013,1.2322169316938387,0.2813795389428246,0.8351846970546064,0.8084534926228564,0.6258225723164214,0.6115503962311872,1.4306936004382376,0.1987658895564457,1.0004037404828794,0.9895741066537889,0.33103263558815493,0.6498457419714163,1.0820611517712426,1.084794442842059,0.2440168422318521,0.01313167176401997,0.9061880301376035,1.001864758978338,0.7901861297250374,0.6697624369230872,0.7011432833057798,0.9503463795080269,0.03552263296877889,1.0624473805030028,1.3870843600916987,0.765514373267624,0.5755133855749841,0.8257106894201091,1.2158530208857852,0.32219871554023927,0.9336195200906927,0.03978787483219248,0.018591661438062512,1.0178168792403293,0.29253516731658474,0.019785650615362305,1.217925543554661,0.5574740387150641,0.7415013789943707,0.04147643984694793,0.6379715963699167,0.39793329738188604,1.0181797303139157,0.6377581410115113,1.3633267458144358,1.4854590217887182,1.4968401746443547,0.9903540834110411,0.2936255221687932,1.148506384741942,0.2718350320969725,0.24843720950620068,1.1127987927314171,0.805734144573365,0.9619872146117971,0.9257034720621959,0.31790773807360984,0.4240821608578553,0.7264548320621396,1.3104990665713319,1.2419327646905156,1.2890280738416482,0.9030368091174069,0.5452514963218755,1.1740921566518494,0.3737624314994723,1.4918397567971804,0.9714732896911825,0.8071160403312085,0.1527099884588094,0.76625921072635,0.775919513271353,1.4961871605567836,0.6373424494071322,1.489256782557471,0.4778267407650794,0.6812872595588618,0.49951519645538783,0.9868650861383463,1.1039882396339256,0.9657337991831239,0.5530352027318828,1.0780643444772224,0.34255110366079566,0.7334447764046409,1.3051784353961517,1.1898561090649222,0.10849188411617622,0.6654974715725079,0.08138666919394982,0.6647496885302835,0.8565221360063691,0.2648221196425686,0.6020519368318467,1.2305656265277225,0.35969178498088705,0.6816580024438446,0.5239433124970454,0.11913863298702565,0.9063600639208927,1.1231730453371178,0.3239768960539573,0.5233538370241131,0.4529161404911144,0.23982739504109968,0.8567664556832495,0.8490744568342682,0.9463273030999315,1.0218950798155784,0.10652472377062822,0.8458680543817377,1.1609539178592185,0.023563753545275568,0.7918878402746603,1.0654218784234462,0.45696237260178457,0.3413647596777832,0.27658137594295146,1.4879207719714627,0.18307531420764606,0.5697108434042184,0.7688142100712498,0.035399516315876345,0.5919643685345595,0.094167348617334,0.6201354073044367,0.6516286182742881,0.696690196774467,0.17103528383866995,0.72175678203191,0.36312629790945855,1.035238436647336,0.8680865803116815,0.782826668755151,0.5541639976033301,1.189198182505051,0.5274249735633055,0.8354364176400892,0.7469224579701292,1.1731514312231452,1.246762929815807,1.1476727750169466,0.9355924238117617,0.9586791111716293,0.354609544519886,0.39452774760236115,0.24596235533847205,0.6184351013727161,0.3892728622874185,0.9622835881796774,0.7065788418993406,0.9589610086673646,0.683004021878755,0.497301919836429,0.8441214187374673,1.0115249476936417,0.09982560593573458,0.21882764773075952,1.0401226326272848,0.20624965735392192,0.721654752211598,1.0923751570611258,0.04202567788702788,0.014835556610189538,0.30069981376417093,0.4436598464161597,1.40584241630208,0.5393665284913589,0.6798780999664614,0.8231620078584077,1.0511382857235445,0.4123009424090022,0.5621499669697022,1.1506314990486128,1.2622755723867392,0.4618525708830069,1.1010499202857633,0.8040760087287171,0.5024569521841777,0.40486418809970864,0.4727675540621471,0.37560109139344455,0.7604028909570076,0.7385196103491134,0.31944866556481993,0.3109685318804661,0.37296930965256647,1.221431359494167,1.489076543239156,0.6917843979775075,0.854174807447538,0.5775541594472828,0.5995449025748065,1.3448392106124656,0.20182175564734073,1.156450686760631,0.18540706178894084,1.1535728406284802,1.388739245890347,1.473655149647422,0.46042296793708765,0.030246671338299724,0.9546990681810572,1.2015939379999248,0.5895851985494075,1.4619880383960246,0.4643475619559635,1.4478649554385639,0.7071236189706411,0.38099977925265127,0.184188457567595,1.3364277175122017,0.9741782042079398,0.3482294147202015,1.4791428673184024,0.9413073314886762,1.0668203600095858,0.06295183794943204,0.5066504975897828,1.441355547137024,1.1549390399017896,0.5092823991723365,0.6380758425740116,1.3753726325024302,1.2559745160657916,0.22664904228914756,0.7959061112491379,1.2582129144437881,0.9365702423994589,1.3144230751629822,1.3677244692717543,0.813505678075749,1.1614443805339139,0.20758748888465706,1.3545687955415529,1.3615700520010616,1.1738839058731068,0.26125584743879054,0.9995503316475434,0.2876300098024087,0.9359110590121973,1.374885691209403,1.1259480628096519,1.2886722261694366,0.7686450773304706,0.32163358829293187,0.003805990274980131,0.3983585013968511,1.11252312361172,1.476824816440249,0.10405895373171659,1.3584612702486993,1.4341452563078751,0.9233794849121784,1.0662845884680512,1.3899041936500842,0.5035247931481777,0.4560617052529225,0.1420111007512614,1.428628165968778,0.8736240208720387,0.35055604861649303,0.6108329745841206,0.04013048859887314,0.046143421827872066,0.44772970850259813,1.0419771938393882,1.4656772559632731,0.6313077256271524,0.7276138148582041,0.20551396407410621,1.2984933618853691,0.0714819405222154,1.247025256902119,0.3632988753411677,0.8248040286680989,0.20707774968165754,0.33768311783719424,0.07519282066040706,0.32800590440151506,0.5843360506402517,1.1360922043312283,1.0781423509145274,0.8527131301982951,0.9381672055887484,1.4423697223652974,0.14054282240386506,0.5271372994816516,0.886015060605845,0.7692593791058593,0.7389455049025502,1.4384689257075782,1.312980680904019,0.544025962335428,0.14776290454053836,0.11985737825403603,0.08331606964903876,0.9672700727595331,0.01077267087854994,0.12863683085904692,0.22571624441873028,0.34538323169831076,0.505156354012722,0.11738515379703307,1.0737366616078297,1.3791796792994528,1.0398284313559725,0.581937614947447,0.6332739440915803,1.2367642676752397,0.12222413758841755,0.36054572029537224,1.3068867003256797,1.1903804645704181,0.015349959156791493,0.17262865381640374,0.3951637886194089,1.409693792017648,0.6757248950992587,0.7440819617565388,0.24366129843913392,1.2418877760448461,0.27620977249327766,0.4558810912291986,1.1028396887106533,0.3506898786942738,0.21527501701550295,0.8470365970273382,0.8418803438909532,1.347268243438213,0.8474049443532871,0.19713390057055485,0.8437978729796722,0.05815002543116743,0.29263697087268736,0.5725073749824761,1.044149851942323,0.6403742531595193,0.2648176058045925,0.2205932450175503,0.10922572179528417,1.1851328586647063,0.4242490417928711,0.002153907407897171,1.2787935886715052,1.3027455775536227,0.6074402241435007,0.7847151728082815,1.053197755406432,0.8090220049382308,0.009107106950262622,0.5236699926002739,1.3277801630259374,0.1492154469199069,1.3183792893887953,0.8938847972699446,0.45468784085987596,1.4739224018579167,1.3166326493815577,1.0550812485154075,1.3576903299881942,0.20615710313928903,0.2100213199049803,1.3038537387703215,0.28011191473431396,0.24149504393918847,0.23835229248750722,1.0357256575144143,1.1563884273173377,1.0198982716947214,0.8516447365976325,1.4754004046966318,0.7294894758557102,0.6419827281837434,0.2996291999830831,0.3689254835464059,0.6333322748029,1.220814071382435,0.2952195267533374,0.09574368773415559,0.950010849214978,1.1484933878984869,1.4291525835596857,0.45476581042183994,0.7306589252164768,0.8072826183780729,0.2496542511987795,0.8329256542874639,1.369117307877099,1.1097027906882606,1.318433379749337,1.4540113547926257,0.9075884145666346,0.17450418027676518,0.9725766574317443,1.2412015091091693,0.6688595239328433,0.04199024182793948,0.8360975128315009,1.4521005663541897,0.8136986422248771,0.12811587506813027,0.38133743041126994,1.0768700113630085,0.2366047539922128,0.900922397972106,0.22558895925593397,0.17692141079693308,0.2252047018581237,1.3803919835657228,0.016465744449613406,1.0697434784037834,0.4811668120113662,0.056830701485824864,1.162920571108518,0.44144611358506314,0.7950991780247814,1.4083293818750142,0.7724283274988888,0.9169263419797675,1.4703826811656593,0.7126086318236693,1.1323970868977769,1.2994397288418873,0.9818642033838718,0.43080150426165126,0.6656110772422907,0.5833597436883665,1.0978355145994836,0.3588890755204851,0.4399481926460027,0.5384250388948251,0.46760585640193686,0.16441874161173226,1.3631867463064495,0.08064704939469786,0.5163918150684026,0.4860133358813383,0.49394572662437736,1.1590806045693804,1.2237749712116017,0.3165503824841295,0.3307628394467337,1.1974952381629573,0.6541890384810118,1.0653694592637484,0.683378740936257,1.402403753861845,0.27434840201078514,0.5691370219497907,1.0460111543656585,1.1937545338620255,0.580928046148826,0.8960817296069425,0.044757776950508144,0.31182901367291915,0.15320248037272266,0.7227716757340901,0.8609193873993987,0.5249361814213288,0.47043050279225235,0.7875724593062007,0.4862343276988462,1.012568591268538,0.07209266375946749,0.44615885219662904,0.46176402791984617,0.2876148476771274,1.0745087116078436,0.1006315596500284,1.099397991582684,1.2632024259075194,0.20898163255162605,1.1675002192219373,0.8577852494504663,1.0961302367912202,0.015509087108224184,0.7752705762698981,0.5171083888572156,0.5466985489711427,0.7044075127964873,1.4579428135632788,1.1795154415681648,0.032736548106493124,0.5212478390616719,0.24362884835394366,0.9166409951543492,1.4870845828151569,0.17133391852198354,1.3232109737531086,1.2221991995606976,0.4166551847948377,0.7755678447616896,0.9991361962512111,0.6076959556859653,0.11104753654898908,0.1341905357060585,1.10976682035302,0.7425558054342322,1.4337385461192558,1.042421302370255,0.8567388235448319,0.710908220924603,0.3328545080144126,0.5167566830369859,0.018615477829728,1.272004845950916,1.2786709522616595,1.0017582273880883,1.0482484891164132,0.87404412069692,1.4644504447299393,0.18985991562875182,0.3065313706642915,0.16130143237778144,1.4771549005950635,0.21534643215671795,0.6350909606233006,1.321638299467929,0.7311802031115289,0.5006145839957274,1.4869702919325818,0.42731140145010577,0.7162441758197267,1.3776303546007174,0.701779310546081,0.30415771027232974,0.950446480018881,0.8266153898692934,1.116850305424857,1.2412027712662046,0.8252423327451968,0.9913910460644086,1.442054329683035,1.1431508576408635,0.7699696611523159,1.1546103130536163,0.5965652008340006,0.4906532211392899,0.36551708773519387,0.5136290331416369,0.28529933024297505,1.220105674210879,0.9110966214585792,1.0412035956555166,0.5136665794792326,0.4038223526883136,0.5459781053545669,0.363288545226169,1.4081169857726519,0.1497773881910554,1.4027977336217738,0.6513038934876552,0.26700879279641304,0.8375359962415322,1.446717036306907,1.4260191549680532,0.5988376633827756,0.702547346371812,1.2303608949428757,1.2292655767466167,0.6682673264482637,0.7713766923775482,0.28586768284685626,0.35843445857603723,0.27899906937794766,0.08991686394211151,1.3108965706525453,0.735976267272882,0.1861732395164507,0.6268738852194445,0.7836223883020996,0.3490567756494437,0.5486729383447662,0.16127566739438048,0.40595575062624945,0.8218519986145779,0.5533468612931653,0.6194899834263542,0.42147987275144455,1.2599584461344753,1.3241765876246558,0.5033706891564802,0.28072944628291574,0.9892547150906903,1.4678515096528701,0.41466275697177774,0.9387010881711755,1.0435100241572215,0.5114532001146239,0.39212862203263577,0.22964436888273138,1.102102466177215,1.341718789489796,0.21039773983857946,0.26033631281732156,0.7003594001040679,0.36868124924524664,0.8276610670646274,0.4597124890303582,1.4501534623506622,1.0366571334591717,1.4018621571031082,1.1974109414589607,0.38215978424575714,0.05306946020649722,1.450010713701395,0.9793335768422297,0.39685805595539686,1.417830716442263,0.48321866707867855,0.5281510583698927,1.4047902364659062,0.8615547417423877,0.03378474311735136,0.6269840154151056,0.3948385686374043,1.244997287447755,0.3382768364421279,0.4487894128111499,0.9724587154032069,0.7521075914172676,1.0143716501727462,0.6972881576383199,1.23687251333825,0.7867074016340583,0.06628179588735456,0.6085936428244465,0.25553301709933207,0.24137384888290825,0.8473179590086831,0.15053324321554956,1.312584914490492,1.420779504667646,0.7114816861461664,0.764637586167179,0.5917809243681297,1.106319980873923,1.329774246808021,0.7782818418845106,1.199061221113601,1.242724754892137,1.1970052428598008,0.1616721264739504,0.8659459497143447,0.5976229717448711,0.5165850193445571,0.8441523515992515,0.933776540111771,0.9217485889520387,0.380555307616144,0.7535378660188331,0.3773869138679679,0.7370203664695945,1.095646047016221,0.29679695578085985,0.7837597089582471,0.7826277748747389,1.0100627951043235,0.33134382683312164,1.2302728795165023,0.2325397065770139,1.0152435256425458,0.1400997645242067,0.6513355027658758,1.475219639351445,0.624538186373622,1.3928358238722762,0.007747262264314825,1.1657749517365819,1.0414997697549273,0.5955621321572784,0.8162648250913959,0.4942282556304947,0.6513658292564632,0.3399249735263161,0.47176923000939686,1.2063849837912235,1.2379444076623005,0.6205224613113038,0.2521535176448799,0.3256680198739298,1.1453542317973655,1.3190005965782798,0.24433017262369428,0.5411134860027619,1.4424699657094355,0.7744488318475042,0.524548471671878,0.2648560487866602,0.3499029206885511,1.1710445874183315,1.2775972013855459,0.75213228908851,1.309906910161725,0.380687418801158,0.5310658273068473,0.7713517457062227,1.281807650485554,1.2766232162183315,0.012015633780946666,0.10077014036031573,1.418569906898857,0.829136701153135,1.1673113118508605,1.0357302041623238,0.0036702713247302454,0.0902745132256319,1.3701950318247147,0.8530122689024398,0.2344498456310915,0.20859518190708903,0.13771674385665433,0.7442455064513205,0.13034421975167831,0.24920392635190297,0.29082472889114774,1.4036736536215284,1.3552386753316044,0.9707413250648351,0.38723422687881515,1.4228807423634684,0.3156023535269059,0.3133587517287748,0.502015156885393,0.8192949031081687,0.6837960951576241,0.9587370836892046,0.5687368602656668,1.2815847502981632,1.4483505609385112,0.4350804696411006,0.6015072258695954,0.6089488584039566,0.1625224444606015,0.5002891988187956,0.32328443754023584,1.321693567483433,0.8654078011199136,1.3777302857346965,0.5563774810940547,1.001918055088287,0.7942164784924037,0.4181497889350006,0.2667848720418954,0.9118361258943919,0.9306254168023853,0.5001516041396086,1.009139411364566,0.3506655692282988,0.4666509472711386,0.9464946791281743,0.3177493995671394,0.7789985574412174,0.980012129241703,0.7860249807526254,1.1124724405772788,1.396810805033477,1.3780767034048935,1.3340067546369534,0.6278706532987194,0.9449314437843606,1.3826354325940593,1.4843910735523163,1.340837331640099,0.13606058473467075,0.13998238214385228,1.4398659268523664,1.476808730442611,1.2824648999570465,1.2732132202831352,0.5605414709745453,0.40717089209468704,0.8139385626018291,1.2305247511233361,0.599377077908811,0.8625248707433184,1.1263533493780815,1.3803744910212215,0.22904574003836514,0.24271571984659884,0.6590604005079732,0.5618931928280263,1.1958580611410896,0.8009679102322145,0.1798281981274697,1.1228733289503985,0.6284390020837687,0.1623664099240772,0.9926982197044567,1.3418548259404854,1.0134554516723853,0.7042273638088932,0.029107588332951295,1.413082943841477,1.0614060957254516,1.0262898385048314,0.6450560261505205,0.3887089500361117,0.41295935732011674,0.6226751555374421,0.8323214999970519,1.4553100223678241,0.38441978341045646,1.29384922008479,0.21414397580050964,0.7585268983773394,0.8086454894371071,1.4930584352096041,0.8931123713677709,0.8485658890448117,1.2080798897627478,0.81487720014269,0.10500410599067522,1.0018739884972403,0.6791586920038155,1.4556183944451808,0.0357618698998759,1.0232432405591576,0.4939806685061139,0.760049092084236,1.158402783454261,0.3293128391470707,1.067438006867234,0.18345408726476226,0.4633515671814459,0.3943167909799786,0.5654896589241702,1.3998572976114554,1.4154496157640983,0.18174647765719387,1.0801572641277621,0.33696863686229894,0.11763410256022927,1.12020423258628,0.9893135081184126,0.3454301038701228,1.0295078198693934,0.15077662418744292,1.341165705010949,0.067339453035281,0.6804921535593242,1.1522324782504012,1.2800651697815706,0.17895946434536353,1.0196869055174558,0.7076353567540083,0.6758518447148636,0.993730680057956,0.8536134608915085,0.5251160299931588,0.1635740862459399,0.7465011582743124,0.38754533034974914,1.0605083562453141,0.4937190480920108,0.3628176514496984,0.23794567424342417,0.49128462801584843,1.2706381418907877,1.0289845274980345,0.1432359103399164,0.4885899119012856,0.7573070697509348,0.8398805538634451,0.2558755520892831,0.587316000870034,0.13980731608490599,1.1864415265131005,1.044923964104468,0.3253999254250178,0.6085751385284734,0.42453848677489375,0.9776539550143937,1.226967189036764,0.28082097895538344,0.6279696329900338,0.6067341397273247,0.4516127287431504,1.074031703708322,1.04560035584981,0.1835755313062684,1.1909304119102742,0.9743828147123017,1.2562664418973974,1.4054236214170375,0.5489302179003293,0.5639196586296471,0.225917689590088,0.44653104395102977,0.80212180515779,1.3413772096254488,0.825906881042356,1.4694576214722854,0.896346937952018,1.0676943496408349,0.44984715504541334,0.22581178679470587,0.7278690304815856,1.4304535355418497,0.7855083266003082,1.1971193017688349,0.6007208966284264,0.23746481569360928,0.2530362619243107,1.1963477419426627,0.3663482444490412,0.6173010747383806,1.4275328303333723,0.5116019527721993,0.11925015477414669,1.4051725529364933,0.6666725646333014,0.24851578515153416,0.19909771773716867,0.22716714044883407,0.9997440128019052,0.6675013589326759,0.2579839060560607,1.139576871475118,1.08224068199084,1.2455298319701713,1.1075935838373334,0.3499583471603505,0.7557409460034515,0.942315219352963,0.4956677961479758,0.08863387333130379,0.13652094544168153,0.003038966501031193,1.073211017615043,0.38461647020714373,1.4086522739649379,1.045530719595852,0.896290494427987,1.387843259255003,0.7415594447996533,0.017409862426011946,0.6139161299643578,1.372367379028375,1.244715163061044,0.42540444538992295,0.06806300211309102,0.8809320312206155,1.340306012666673,0.3866677724235494,1.4248788667862828,0.3817099581886671,0.8917265990562223,1.0372393606533072,0.6146159637342925,0.19147008649128783,1.100928178606487,1.4104914394106438,0.91177748820034,0.8417269191331235,0.9413441010907482,0.7224185639498735,0.8892256123718971,0.05865978289177204,1.2655360376582987,0.12418508221835534,0.29044542630185394,1.4721387731395903,0.02966558271394093,1.017525246537599,1.39967512467015,0.7919875527300231,0.3013265734217197,0.09959024633080504,1.3696378526997333,0.5685757799225974,0.7752420756398581,0.8149455749922547,0.09715428297777123,0.42017413868837483,1.4662379297730899,0.2782096952638426,1.0540049618401504,0.018061092035067283,0.7677278845323015,1.0551581852659304,0.046635374097586335,0.5560233111228554,0.6909479653596378,1.0699413811020766,0.6363491306079199,0.61146043527296,0.32217070135915854,1.4362269739088038,0.6438737322124856,1.2391615602949102,0.8841300419958926,0.7308797165416749,0.008800813104596183,0.24720081373375813,0.35602338813226964,1.209701175632718,0.5623813878710686,0.0009480434312050812,1.395390841571094,1.254556127231162,1.3573613789120198,0.13579812059866214,0.4344066528793104,0.5414198487167485,1.2707891294981175,0.8932833621237886,0.6280439271363527,0.019255626767737122,0.8413367970409369,1.4383024412564,0.19539612289877173,0.028151396333003287,1.2947591902259044,0.18897486333367824,0.3288825742464168,0.255920250914625,0.23316805610969055,1.2056575182396618,0.21166614169292614,0.8268291800447332,1.4250720011655775,0.2800572613649263,0.5198913529291469,0.4491308839810512,1.1501104400281323,0.7374638198140475,1.1263808013492635,0.029888627175902405,0.8809570717430462,0.3585102686374855,1.383857211993439,0.8473503916332492,0.7902931375034021,1.333051156022471,0.4647146981339199,0.9755425373470795,1.0292368085048196,1.327969115732198,0.9578874787200387,0.17865387203465105,0.6428120789424676,0.3579585001719712,0.17132848898325426,0.04067803758969696,0.9642081937630141,1.07675981564673,0.6714664414899605,0.22019760186933784,1.259469694079439,1.383494163907471,0.41716456149179354,0.9115659298080222,0.9750283319745552,0.1230020985369345,1.4265990587106268,0.3940816353666239,1.4756807898427007,0.8853883024967453,1.4592452589940754,0.049917020501423104,0.707226625439439,1.2185625435742353,0.5376273665804439,0.1562659544574696,1.3950607236740733,0.7833788922244513,0.5296855181537917,0.5620117194019054,0.9791982328287996,1.288975006393549,1.2837620955391502,0.8521277094838784,0.46251953879641317,0.5180727230085151,0.8541633407779141,1.3088152794801564,1.094640911552646,0.32136786088560293,0.02910869805626004,1.3165881159714126,0.33378120733777583,0.7754929482675841,0.9676229593521339,1.0523955064141384,0.4250805502660742,1.0143463394910155,0.2822210912771009,0.9440920446892624,1.2327412356895855,0.9949491177533232,0.13020450876734763,1.1957485241438373,0.8397026705574155,1.2619134048444374,1.228651586915947,0.12528864648560906,1.2977849097800398,0.9087297674406846,1.2222878215064825,0.4968513122903571,0.6705430079873298,1.1211204704887676,0.6003353498638923,0.8497925637241721,0.43491643094339927,0.832123143664949,0.08797693310872773,0.5555319314217209,0.4115977425514877,1.1070878404783664,0.018960222643437163,1.487096546878012,0.44313076286061354,0.36903498326834716,0.5297592032916605,0.43481552050404204,0.5625158416000741,0.7153574346150728,0.08706460359241674,1.3260977798502696,1.2763757231248292,0.8091584864935967,1.0310358419241208,0.6641307756622787,1.494902190987654,1.415884076788544,0.23765988485131512,0.6695389498288393,1.360244534034106,0.05405856237304013,0.2672052949809426,1.1187724287644794,1.1751214416483309,0.16800973133530506,0.1971099251978407,0.1344115871068034,0.4572697808204447,1.2087670952656766,1.4852029862830403,0.048831247165712355,0.7210572897835856,0.10192714516617846,0.891563694379006,0.14896235783159045,0.14782782912712128,0.3074284362383688,0.033044123657712754,1.2533554197702224,1.3823757020118146,0.7113987907194582,0.22204192319388028,0.38575593761213595,1.4273540531439526,1.4951164288499972,1.3762926519699012,0.2789934531906503,1.2607040932349167,0.22659728777814925,0.14061930303468168,0.0560608008605919,1.2377339440269663,1.0790957505494698,0.032457975504348036,0.4316534437460344,0.9616850331268609,0.8189064089407555,0.36884024481624156,0.40148707222154867,0.294975954977168,1.4381013551013866,1.2883030565754632,0.32244832779215543,1.303837746180356,0.5457281766823523,0.41008505522526956,0.943130073385751,1.3322529231690903,0.47850705911570857,1.3186739548256214,0.714247480431611,0.35334031515572634,0.025807605078716767,0.9959405234396026,0.5693058128967254,0.8004772354276449,0.6796903926299853,1.0859670875496854,0.19596288534337802,0.6628815944364853,0.6718911755493517,1.020277266103765,1.0366998381954584,1.2299958813199239,0.6306177819558213,1.2796038845013988,0.47530893984049666,0.07973521292226543,0.2482165996747011,0.07741184090411002,0.880444560574484,0.10010158412197406,0.18232794448873807,0.5097482905643582,1.0808773515678975,1.0268425034264967,1.0964493887314724,0.9810106647767662,0.3387275695942294,0.5061862632613947,0.41936490531817083,1.3648360228676522,0.266287379721598,0.3043388516477381,0.6893385516326446,1.4740188399795284,0.9145920648020142,0.15380067701181366,1.3844868885341302,0.5873615728265863,1.3139965527597242,0.780096952216179,0.8747833145498582,0.045886008019081215,0.20765569383928134,0.46345877379907585,0.4063524550871268,0.607869357911223,0.11277008537753558,1.1299325320855502,0.8765783080051228,0.289364068866799,1.1556211111802772,1.2792486405328853,0.5432086113947823,0.8850409794428744,0.7265606663237552,1.3448865150317577,0.42705431273332556,1.0498842985973782,1.3801638363410074,1.0776670839081042,0.32464873763206187,0.841712453135804,1.3329356480384138,1.147770131698691,0.6041651324031854,0.9559323396608602,0.06016317665277526,0.4837419207515509,0.3175829343375876,1.1676427267775829,0.8369398424159897,0.21844257049105303,0.478599080670989,1.2039758225298063,0.2060960862590781,0.5232675543647334,1.1065960652736477,0.1904878762650099,0.6737343551513775,0.31641530864812945,0.5355860303750382,0.08604642829654152,0.36414130744541273,1.3804584290960005,0.050545879903414026,1.3091319367589758,1.1957127086600248,0.4408038457058943,0.6894586927015106,0.15192927442346427,0.2502298648012218,1.3971797635023084,1.4937547697106346,0.8623587583196152,0.7096942999083784,1.2804875673790064,0.33621777570905514,1.3546046422946536,1.4965782024434042,1.3265387163308322,1.3858113703096397,0.0026667874264891256,0.08239564407905614,0.9791959714793701,0.027868692870547385,0.9602396752604738,0.8307392948824497,1.4014814265032922,0.24334929208323963,0.8561548752178664,0.33620834022814305,1.022185635610763,1.4898881429358155,0.17962006375104178,0.00914038253436994,0.5124409731697049,0.052470376553700404,0.7911620177817,1.4256890734868288,1.1176026345798795,1.3706945086542657,1.1128623807217068,0.0545710600359543,0.06189061984574917,0.03165755537474352,1.1149977908920956,1.0719847402917853,0.047909854873806224,1.2916935800844493,0.43038954099525445,0.15965250651219637,0.13060512855412948,0.5819023553346442,0.2191420076706948,0.4763447293200497,1.2264737037078877,1.3424124586862534,0.6856068117776228,1.3953588115736522,0.34655762525334854,1.0994434328520366,0.0664046184166931,1.0107424817938446,1.4835815315386587,0.8321048151346941,0.2885317324521343,0.42342402037289306,0.9781210659538535,0.9936340016912274,0.40444228411611627,0.4970173950605069,1.023616070961992,1.2301567282588952,0.5468256340012496,0.036255602850826296,0.669105868729559,0.3603442960693778,1.062107750928912,0.7154673050791045,0.661364849156485,1.3895268045716087,0.2950539155157771,0.9112577603683563,0.9738097576088512,0.37797906934306336,0.7878273079108356,0.08588217952796068,0.1831601343209882,0.62282205930472,1.2458013920243438,1.241709193728286,1.339948740613762,0.9553617255374105,0.10883030132861443,0.6758222672835488,0.24283663057333116,0.5157822153474322,1.4743439620161434,0.24248298384914874,0.9383500821187862,1.42700983470027,0.8041290120154676,1.49797957969692,0.1295068504865744,0.9882946425366279,1.468223900373674,0.5325057832100333,0.397040407277997,0.21857865254117875,1.362672695851177,1.2997765401088772,1.3029730722802393,0.6277728896934358,0.5656560347637923,1.2583107200641563,1.2708007650663231,1.2391028049825528,0.5278760046382692,1.072347755974756,1.1457613621596447,0.9573243615328244,0.4767059884946388,0.897516498580645,1.0181019189614795,1.1077912510217645,0.030942464145056192,0.7144078621485744,1.2490622504999749,1.4685828352636054,0.6426609942312937,0.20898035191959646,0.25202618248084496,0.25476350045436186,0.06442148056864072,0.3156613171483177,0.07852239134292899,0.7766768686393233,0.9863722992349252,1.397159652703699,0.36606094217019075,1.384701356009961,1.0939880729484108,1.3591698214711325,0.6035365186476384,0.34110565026335926,0.5370620071807795,0.4125228896777982,0.15909400758067105,0.1757758105687654,1.22972727876355,0.4658992007340264,0.09174761988705799,0.3327390470288746,0.31918833756837706,0.48601538661401,1.4972717246611031,1.340419312685389,0.8937083069081084,0.07154980484986906,0.4263739505636442,1.107259320414724,0.536428444516917,0.05090113598005841,0.7647892920625193,0.2091047109111931,1.1701504692902458,0.1376017930570087,0.17261765770604348,0.7301103298593707,1.2209683939861073,0.7646915191398286,1.1971012739553544,0.10331260498781814,0.9055009855974347,0.07862502150096634,1.0068584706205912,1.055000838258695,0.4720067407814205,0.11076174699986863,0.9184479084799508,1.3311715462356983,0.6340717108471827,0.3465463989988277,0.5801324229393781,0.982831639877083,0.682715322540674,0.5112630891683236,0.5873796709246758,0.5542354964128076,1.0918258435728156,1.4611782473621029,1.193724034595182,1.1021255357276674,0.9345837227246412,0.8836466024504749,0.8477421443531739,1.4287807043432257,1.2474679219199238,0.17187665055238915,0.0786414201337472,1.110342827118043,0.6291957359275402,1.1167682764936468,1.3416158771271776,0.12047158026334237,0.2193044977286725,0.7768811838007901,0.9430079146321114,0.5635682547882689,0.4630171225914332,0.041331858514478625,1.0285360702838213,0.267373756647152,0.9797396586812879,0.011525095569406618,0.6220575529731264,1.335895017708689,0.36206368906452885,1.211394458937429,1.2651257906296176,1.1711146017788354,0.38986571090716043,0.9418406684767835,0.37409095047332175,0.054655333103136416,1.1029722793921195,0.5420935718757367,0.4143590561274293,0.9520520265220087,0.7686626671596718,1.1954960517356643,0.2546353213575739,0.09559174347918592,0.7377091599532812,1.3958277549267812,0.2733118853027077,0.3696600135159124,0.6557639973672682,1.273404393636067,0.054618078653941526,0.6721770464707713,0.5555815400937527,0.32060292515255717,0.1204618403732724,0.018605652937103867,0.2251509820979405,1.4633631285961906,1.0960711727750605,0.8251167576793681,0.9089760803269982,0.8705450867975408,1.1585611143765115,0.8106654491222225,0.6073462573009217,1.0227260165288337,0.12826653794497617,0.5173888600577492,0.13776420620625152,0.9866742298046258,0.834668440854648,0.3474970824766934,0.07600008961807492,0.9007581638412404,0.8597242454158556,1.1992181232027475,0.896846708336783,0.2791958559354477,0.3839937080932454,0.6775401054605129,1.4829431819482841,1.4123477559127686,0.5908319577180006,0.17777892302884268,0.6784782140143015,0.8695839363077481,0.7237893910548934,0.10601988186440764,0.3068609270381375,0.7033514140601521,0.602263082228269,0.19983938709833815,0.11526620580382002,1.36010221636558,1.4813348017536314,0.6283032432636135,0.42397588684031345,1.360294044422944,0.6891086094222569,0.03762067722885232,0.8661620537052959,0.4536349700731274,0.43747432199355346,1.353108331382805,0.023782218239933817,1.3011980411796713,0.6408927331236887,0.28168163763936277,0.8006356910072997,0.4579415742784857,0.22194724972736224,1.335979516027389,1.4614206964537646,1.453895792410901,0.7905501225322329,0.86119315577931,1.270413937605063,1.2083350173086274,0.531800432780487,0.22750908856155377,0.7481851385600513,0.7175330113605889,0.6227739338356507,1.231433898040114,0.5258428906142187,0.27204171673675404,1.040622894484839,0.3440435150135056,1.1932914017688143,0.2893534750535517,1.0011298842160314,0.4250566018956418,0.15110405986417585,1.4499761342534123,0.322418241834804,0.8090827629780624,0.32042290090182973,0.1945704299940479,0.7956004894046773,0.8270929666797737,0.7820933306885363,0.842806120775372,0.0658147242020174,0.6239587994072788,0.7600480483992279,0.9463458124219242,0.4792987864583808,1.4082639929877212,1.42425862749052,1.1292351519433705,0.17236036926570625,0.8054796293382128,0.8389266200331917,0.801369197685946,1.0610501684890892,0.19389542191464365,0.10618159058643506,0.14298949523771587,0.16706113973278347,0.998120230795238,0.08412041539222731,0.8927252154233978,0.10284553179263722,1.0395022652971955,0.3424137336029721,1.0986088392217008,0.17691285178359617,1.3172003939984134,0.7417672773531717,0.02537224467305027,1.0715552899160827,0.9164390186095308,0.8888293291007824,1.3537053442057232,0.6087904216636579,1.487542750609589,1.228299676654456,0.6016218679928665,0.49889756578672856,1.2736872558150922,0.81842068068286,0.29666035069630436,0.22459934179679064,0.7831952315230932,1.4667254194696637,0.8632537254127871,0.41810479808152085,1.0206779986400951,1.2867348494694428,0.875363741162855,0.7930136722591248,0.009571472999042319,0.09959702285118555,1.4748881120020232,0.8108463010485645,0.14974751812757725,0.2945639948134435,0.7866127470906679,0.9004641382078729,1.0442111005232209,1.1431613573682955,0.37651009390560986,1.477366729946078,1.2211135986145705,0.9586150750238602,1.2322414035674105,0.17651687036814168,0.5359553336448106,1.4027454320733648,0.22650845412269727,0.8132746212911829,1.2837941608340895,1.0612307814685797,0.885480397190066,1.0473376140534274,0.29388435606235946,1.4025416182382706,0.7606934759750416,1.1388653060372245,0.06886386712641174,1.0985876619152166,1.0039081133894834,1.3108449930962534,0.8841586229487475,0.007622428461597275,0.9218129835571118,0.7612637829578457,0.3738495714957116,0.14482571991000665,0.7287644015413804,1.4062866019515476,0.038176334682867685,0.25098643632440615,1.1305830875454375,0.9752385089688391,0.30396301625882877,0.6163610361738342,0.10654320220994956,1.0776902667948272,1.4590607984824844,0.6638722174986109,0.5035186259370819,0.005181380939808133,0.716848677395741,1.0877310044206836,0.5145656518939388,1.1205820253162455,0.9942118269455289,1.180508931717681,0.4901101688387169,0.7845142443572979,0.9888510761414695,0.2931100977737009,0.16900843874568094,0.09641038578117062,0.3286172797075716,0.612468923351281,1.344348382564757,1.0816957715054332,0.9326951004179336,1.3237378634727377,1.336291516702005,1.2361262051473607,0.3845677585271161,0.2783641666916636,1.3167156159839086,0.9555242244415239,0.18279028801749797,1.1083064234966267,1.2139975398331087,1.104093481580512,0.821371360689494,1.150236148836951,0.5803907331492975,0.6926259196907913,1.247473876232214,0.4618571470993045,0.16449133492007129,0.2778818427873553,0.7757090981475185,0.7390989115764981,0.7307046657532057,1.3023626973387965,0.5956811963905089,0.7458155308197081,0.20240693723195025,1.133581505936418,0.017544797636206144,1.2957433934714462,0.16816031422767141,1.416242192351335,0.9203473875162398,0.9160552291183407,0.37952352559990016,0.9695225626901729,0.5180453477624325,0.11606198131579437,0.27915601808655116,1.261412132282023,0.47084485841632695,0.4980047104655286,1.3199010220340168,0.4700870354685095,1.3324670215299683,1.0126313099425865,0.15867503747911482,1.4747740768755087,0.19529603832187326,0.20831678489403904,0.2600573310496197,0.6021866002979417,0.7122017531797067,1.2662313699019057,1.4800969656417915,0.7133967976254855,0.0458611141353385,0.08790091461579574,0.23848821425918376,0.8244409198362714,0.19942310840664956,1.4025284231709279,1.0812872251528272,0.2798566899172893,1.3421846270662323,0.22631641024519927,0.7181918952751614,0.09710999881055082,0.0663420616722567,1.47401033220002,0.8510717605231652,0.3436160252776998,0.0802953915101256,0.405957092219393,1.0361345667556692,0.5801815773972238,0.4817998413963472,1.1766291768424786,0.9594056218295595,0.6953262510160951,0.3994592657736763,0.003544395170193504,0.411294521649585,1.451184097220045,0.5004896620622467,0.7466353850287668,1.0353042285943483,1.4934415439797046,0.8613486766308254,0.6424217080336875,0.1750003421256422,0.5280274748494533,0.7143199589231791,1.222753521781761,1.4670289501975204,1.1479333436803825,1.3374121916840367,0.477505047050377,0.34482159029946724,0.9457845884584005,0.42884955970619815,0.1645689352941745,0.8396512872269146,1.017375731328244,1.1881765634734551,0.22120261792612084,1.1287722306640684,0.47034356144750583,1.050665179897182,0.40449288130870864,0.4606904654627175,0.06312778041340905,0.5762536402991121,0.04968067766469875,0.611402961040604,1.3785021609212873,0.9490431090197018,1.0730803437105787,0.38483176826795684,1.4477372876254084,0.9399854436117012,0.20891183988880935,0.015163363916843475,1.3711982318821228,1.3905179833535088,0.6797358806361424,0.8075776363140785,0.8846841958087655,0.017295319430537914,0.9494593026948466,1.4550179231436313,1.0611845511709768,1.3638422195478204,0.3384719497065367,0.056261050734196016,0.2888445598838914,0.45692613608081606,1.2691977033270343,1.4882720423379598,0.29498389123891944,1.333157500953205,1.205463612624315,0.449610550528896,1.1304678795147698,1.0945255939425058,1.4946279968986877,0.6080510804936834,1.087204515707832,0.4698531368905189,0.1930844180794985,1.098620236137638,1.0454072691441973,0.6860469503317831,0.37889825393556104,0.5557633895380564,1.3408951304881207,1.3100550381259926,1.0778225563412913,1.0276995503579966,0.24706956091074578,1.4032082935817973,0.652995945244543,0.38270281479440854,0.5756912869029114,1.1567582703193582,0.18476642495666973,0.09046355832169889,0.2404896285407504,0.7032034480515265,0.9158772486689912,0.9077995275974804,1.4316823130189011,0.14401332693835717,0.727613080562064,0.024465335633390983,1.3702648620253175,1.2161634615851247,1.4605149272152513,1.2203013424989084,0.0729043454444942,1.2206739724410367,0.8669516914105659,0.8581907043518258,1.0671107269077649,0.16152572877646154,0.7933008017283026,0.12158935642877472,1.1916114227694385,0.7676318476367952,0.3046599402855313,0.38034076309369375,1.4700174455484176,1.0035111145909132,0.4707621577832233,0.2277539573510809,1.3280305053973496,1.323637375906495,0.12269463718937224,1.030075848265899,0.7460478035093572,0.8495989468627336,1.081217033080826,0.4626984602747702,0.811889506425626,0.4496047615843604,0.7645126470765806,0.32702776505832043,0.5698754091558226,1.0344793009699966,0.31226055065652303,0.20238440339712832,1.4217509457780613,1.2123220697578392,1.0104982141494858,1.2594683383161662,0.8834073542700009,1.0298048729679685,1.0091195231566228,1.2299591900301496,0.6095053875341007,1.2567714990262984,0.5442285936609453,0.39965472768998944,0.400113181624872,1.043496807505873,0.414688834666717,1.429718638937464,0.6657792774728101,0.5074312302822794,0.28746858877915793,0.6957057538807683,1.4366520198300414,1.38474567136681,0.7882791094023001,1.0629778717777003,1.0979425512858993,0.6140809590197049,0.4972845383970104,1.3835198659221437,0.5526101711734169,0.1688229576821922,0.7649496076595795,0.7730611321689054,0.3547587644385152,0.2743901269545832,1.077691056605975,0.7980857226635886,0.6565887403665214,1.0855424250784371,0.39199290416822047,0.38695613857684336,0.880272804816058,0.12631975053074013,0.8626882876792473,0.43555200510767755,1.4209299968061468,0.32541522007432017,1.3381503351475545,0.7220738477174928,1.1036062446946446,0.12759043604869869,1.3659390874646968,0.04143308320578831,1.4668965929802202,0.4198526453658889,0.09802581923054976,0.23338144550136408,1.0202292926946996,0.9055234489438295,0.38229358378895306,0.7661358669070797,1.3435010834358876,1.4522899230729067,0.9216373220019312,1.2318148014409394,0.6392841801521848,0.02653486842017061,1.3678967016076964,0.3848233349327385,1.2705678994486465,0.04695360167469248,0.2517448570065323,1.3947661000647535,0.46848233998624433,0.7617473820792662,0.5167781627876045,0.4262246024611545,0.05494512855178779,0.3155796010408402,0.73783620179021,1.2747309621646978,0.2965705419844721,0.8700455578656798,0.45207370306982525,0.9024105451645601,0.37143603428012933,0.08340953622465008,0.9956454214003811,0.01775509836452477,1.0974090859800925,0.28366303066770976,0.8725218093224975,0.2901253731675827,0.550705556401379,1.4124556442290694,0.31519088772365345,0.5348180273670592,0.5944925062538515,0.0004782881596448463,0.9323164608811231,0.015614021946314338,0.7876155750507303,0.8468528120441967,1.4495550678701756,0.6051710940935595,0.9608063995049423,1.3708279439156574,1.0529391311415628,0.2579249300874663,0.8968947929494129,0.044048293906403746,1.1597133764552001,1.4822859289540673,0.6997652958327303,0.022691168272684192,0.969957896223006,0.8920518704415307,1.1178161136999725,0.14947813730919346,0.8264326137648876,0.7307867305335275,0.873916718706659,0.33896433490010375,0.38117875094398473,1.428235806044831,0.739694846656705,0.07958086020664334,0.30504518026170724,0.9141805535805689,0.3064010774553693,0.8901972162646776,0.2516193641348309,1.4721739023190792,0.5570617255997699,0.5928567716350708,0.2788740018231261,0.6950264673431605,0.9515055862774514,0.5831580081399357,0.9725444058918933,0.5197205067476723,0.5043859823510244,0.31078157687730434,0.6972879539284178,1.1357695047956116,0.5685665090371079,0.2770419910705543,0.9934414424545226,1.4114197770112902,1.276480069001364,0.1508745853598505,0.3647241931880181,0.011536708183823019,1.0011516702887868,1.215434639710219,0.19979672613460103,1.0981429115177568,0.17673111622433235,1.4377769971718461,0.4633721723898016,0.7605912701950361,1.3656817852000052,0.3426478923339427,0.03973259520196831,1.1387685992335976,0.8528300590023707,0.5365620411293232,0.20423203828948272,0.9591187098148601,0.07485240429949175,1.4110878602547139,0.647174445460182,0.06071897732254139,1.2398589487856462,0.5886233339931055,1.0704756391972272,0.9573502112305369,0.14799010979334304,0.058807352058240225,1.0583269166668405,1.2332138179199406,1.0818183875970742,0.44068083790749035,0.0032811459942133636,0.6071178762514733,1.1926780264404808,1.0341111981087208,0.08039481059176734,0.17120548475385505,0.9809148951370281,0.6288416698672499,0.086286921838368,1.4977666254587731,0.13190813004208868,1.2153760253686143,0.9103490390360351,0.5450873411592299,1.163813962037411,0.8201727848849018,0.29550077434165206,0.6921945006543085,1.2153035371490466,0.9860103892871286,0.11233341552890719,1.1848987473310988,0.6025836319589131,0.25881766084427316,1.1756565266478933,0.2396152482833379,0.9268454887145854,0.6194003442077537,0.8267212635126205,1.2101516136662047,1.0281247954952024,0.760936200982708,0.37014530258514994,0.0104727939516297,0.3896336004462767,0.35059358014635916,0.05961620478377894,0.2471078772713,0.04957188315539879,0.3937962460321209,0.8121729998392764,1.4385135292498807,0.6497091905868029,0.8419332749794877,1.4706350884908808,0.30649328869842457,1.219219965396631,1.3848309448020018,1.3505990389449658,1.0223537180375428,0.5144676992358789,0.17532491700982844,0.5138251445608459,1.424003277218552,0.18322099620001725,0.06189835897601631,0.06603434195144631,0.5444884237455554,0.5225020164837753,1.0341125875048882,0.19451540281804142,1.0945221912245984,0.07611548022695125,0.028007063794911413,0.38778688446105886,0.18377025515128015,0.5726672806671428,0.8141217429163736,1.3067303706399858,0.5940629894941392,0.07413946172303643,0.43457031407111285,0.6022106574585829,0.8330768753665891,0.40805491935104854,0.4961136177575419,1.0496350104495122,0.5176267457831647,1.4215399131453506,0.48079485425077295,1.4300158409794597,1.0436018837081171,1.0853043131907971,1.0466213800459085,1.3298291518528695,0.26401993444071886,1.328082492306848,0.0958579390933435,0.9878032973101689,0.8682239889392713,1.3495324081991036,0.6868908486515606,0.997725620023605,0.25374209785189733,0.7735150182351751,0.5174784710578793,1.1478298447546411,0.08594894383209556,1.027824950134475,1.0617326862434693,0.21635056692831794,0.8649762362028137,1.1495760253809584,0.47826198544947884,0.739925650332724,0.5139232386312169,0.20938556276170506,0.6340551190801791,1.1079524883548006,0.5322422920047627,0.07509269639149524,1.0258792218555102,1.4875314433563502,0.7588748727007399,1.1225875717099068,0.9320087081189408,0.7553923733612671,0.11234629287029191,0.010838509144864228,1.0049432353521706,0.5705569982443681,1.165886756259377,0.5754788101345054,0.8015211393301677,1.0632655643764357,0.10931888961583563,0.9249754158515474,1.41179021370841,1.208556312300445,0.05212249869079,1.19478514045271,0.8554564109569125,1.260084503773918,0.4299711417941826,1.1548722954678325,0.624995140694187,1.0382840228262913,1.4467466317904645,0.7223530937442445,0.883291341068342,0.6110203666312519,0.13717198935465652,0.33405906671585694,0.7329103257015173,1.3242157524548288,1.1614925962927096,1.2237106074738948,0.14843370041076465,0.21520098604673954,0.06752547122700414,1.1303441281204165,0.4862463623021916,1.3389318441933358,0.7283700803759372,0.14263215301905252,0.9755210401981359,1.4314062979641595,1.4974729633582946,0.8282665018077138,1.2483181086304045,0.4140795522003705,1.0382645952129859,1.087771525576743,0.6655836951254102,1.4220165278280428,1.07618770288371,0.39270772381179836,0.6912022756673724,0.09769425882602334,0.08387114069598656,0.9296677606928274,1.1297231076537892,1.3736138840566476,1.4135280988202845,0.06803981473847648,0.11401203602089155,0.976086555870797,0.9770571105878328,1.1020410207533078,1.3955471476658998,0.13117158658951045,1.0133195702849676,0.20304444630295654,1.1330617880322778,0.2707320931806097,0.5772405378844723,1.267106510188985,0.4780331471860954,0.1073330745236164,0.8775102837134876,0.3321095049767001,1.4466659842017142,0.731945968746285,0.03166710023676478,0.8702768898126056,0.3630950403780129,0.058660586414391314,1.3521973346992127,0.9249769486670413,0.7342331459046194,0.3750733648602917,1.1026859542194636,0.397194549317769,0.7194656327970976,0.5749613556238573,0.01876361193914078,0.09935347646148907,1.4390505359238714,0.9156054305408039,0.19230231576464518,0.14028432629003662,1.0839190984093836,0.3807961713238068,1.4869628861131332,0.06998837075843489,0.2840554166134778,0.5817258906923615,0.8382943169310618,0.2149371466211234,0.6048752793142451,0.7264624760129288,1.0271650156019385,1.2336696010240764,1.3491735613437903,1.2279280328679953,0.31053512486239543,0.8227328212020432,0.3327495880394893,1.2977044655396666,0.049525151921795685,1.2109230302248644,0.26596005923388605,0.44997186987332555,0.2322400166108965,1.4518232725757714,0.5007900152777782,1.084199022393316,0.7015776317125937,0.5643517332867187,0.2986112218402325,0.4136848036504425,0.42462164736539076,1.3921107445931196,0.14018452715466906,1.173589355522784,0.06290263388943462,1.2244117880440557,0.7395575770114324,1.4093158746919285,0.2871870811324381,0.1789733380648666,0.09124222063637333,0.2545172085234525,1.1627531517998428,0.6251102882482926,0.38581902674900664,0.4792196660428377,0.8046071759738442,0.9860960570949471,0.5334269525758217,0.6667053901115363,0.08903342103109796,0.2902924439151252,0.8221328314064948,1.1510765921713013,0.3443310423355914,1.2754545396898094,0.594874647065067,1.3597402915384817,0.791575547534426,0.112322268695774,0.3717652993170686,0.6591386807410262,1.1708751744488413,0.19895619831840877,0.017355069891262898,0.2931526757782843,0.6316817996824237,0.9351444819899101,0.0308648770358963,0.7805499406969675,1.080226156820402,0.8588147941584213,1.1184811604611145,0.5380918444994861,0.28882150255205574,0.569746688342027,0.6897724793670788,0.8180150190960633,1.055651925476209,1.4221962888151924,0.7305654561854555,1.4242283650801757,0.10207972603723564,0.5771430134615313,1.197442452223588,0.18026439895130592,1.4773393799775985,0.498638693147646,0.04167218622005253,0.8686066003072961,0.35761757234697494,1.276284510203679,1.3192838441823387,0.584328186554904,1.1102346229001314,0.48435956117913787,1.1634168230952118,0.7510574681563199,0.8051873356197377,0.04156038858110911,1.188971754295847,0.9003958532703521,1.333558920624871,0.2995081965815558,1.4841200515332924,1.3640672478394398,0.061903784048047084,0.809508652765228,0.12457611823481685,0.4743864432210746,1.271246871281664,1.0377115816327456,0.34468394112536627,0.9191682903368651,0.44042094633220985,0.2829776728386166,1.2053160707264876,1.2490972215258827,1.384932040123442,0.7826918270039415,0.6490988237462231,1.140080970314049,1.400995370824292,0.9943070039748416,0.8212737789022161,0.29810083686664096,0.20379965487146928,0.6293312860799278,0.6112204023248258,0.09969330689623196,0.6739226609927034,0.6977889899268268,0.31372936439758226,1.4260023156040085,0.44588849574452594,1.1834045969979083,0.36437811323451086,0.8220783894608965,0.03180284861036309,1.0525025217483224,0.686301922333107,0.14542460650082023,1.1749336381961821,0.15511598343478045,0.8871615530042833,0.8883077610393084,0.3604915945022854,0.5710076757630345,0.8678058138655826,1.4065295565783573,0.8356200746159776,0.6082338681724269,0.8397469090677456,1.198696188114086,0.692464731223781,0.8351909548892329,0.10897016069083226,1.3344602471392615,0.383921444304922,0.48548124436908663,0.37089897158991986,1.4333224156587603,1.2737408850548888,0.43441309775616377,0.2872894536802455,0.7980446734873857,0.046776360769770875,0.5710411450699102,1.22500314159759,1.1225746188050731,0.36361356433373665,1.0517931357490602,1.0954934751244383,0.22228078747110186,0.838054994979473,0.6296652005503702,0.7993805534503164,1.198141509670743,0.31139193616674354,1.2011015951190902,0.09461443475572129,0.8347295534488657,0.7521484102838962,0.1332711709510056,0.5387302941855091,0.8940535549814088,0.6060210069327707,1.2242558843999833,1.2049671667986077,0.9433565824312531,0.8772775621092384,1.4971306670530695,0.47471503465168896,0.729346037970697,0.9768110991270524,0.3634052950453328,0.23201783875149307,1.0052641514444436,1.2156723933487914,0.1275693677261946,0.17711553778404288,0.3380863826045598,0.8469662125165311,0.5924391874019671,0.017253355925883784,0.9356921520188222,0.42334696141331774,0.13806023020004538,0.6878371966458283,0.3322000603179975,1.390932006987364,1.0594631380603596,0.3591180236010181,0.0618473616801376,1.2229208170926043,0.5506863162840843,1.4955687054020055,0.6139484258141086,0.7594096153218666,0.941653099016992,0.7740846319704473,0.5015983723567672,0.40990778230476443,1.3726328311163547,0.2566068631469761,1.0723096557777119,0.08788068492040524,0.28331067342276606,1.2482861310826465,0.7044708572020097,0.9024853747274945,0.2863314216120845,0.35760452594507713,1.415168760072626,0.053462915583592396,0.2715572442320836,0.8773442030063792,1.2825024966301182,0.045954466870704924,0.2716356033360569,0.600388805700474,0.11108716868286445,0.1826369535419911,0.9327544030947537,0.8819170793663003,1.3030574583984846,0.32465522893895804,0.13541592597938518,0.7003188547520065,1.2110458536658435,0.24642623725202883,1.3774555070675065,0.20550202720204974,0.9159062080927904,0.7671025220900752,0.08914128870868554,0.7111943353787452,0.3250747966044098,0.5519762566497716,0.778074806484562,1.3542416176176142,0.060033712844104914,1.195758558647077,0.8529621768816784,0.7332023742893399,1.147050331361102,0.03461370392025509,0.3251469752862963,0.8090960420711426,1.3990269905131014,0.29419542444009594,0.6604810622866867,0.0658307292296203,1.303355401140751,0.3681928571182282,0.7027060424640443,0.7390994002985352,0.15605360243326583,0.07848058795067153,1.3357542630476493,0.8018126142200102,1.0558600532184081,0.5855530526852983,1.4446160742196819,1.4310911790159229,0.8587269005933955,0.11195474018596507,0.6494605180199828,0.9223523030686434,0.12076060169770192,1.3987244276609396,0.49908214700135206,0.8376964478887292,1.0240652977809308,1.2080832521184175,1.0563348300170996,0.6680329546519415,0.3397350086528084,1.1571867396438413,0.3263883035251087,0.7550887072245458,0.9665539203755475,0.47434687048679813,0.95775019936358,0.2052369288047119,1.117537373036233,0.009160109219456536,0.49379565486862387,0.09121947543669079,0.1721101348327902,0.3667277517625712,0.6552430933190406,1.0406092755463587,1.363266930171362,1.0525854132183596,0.39233012281444074,0.9412601750475468,0.5007391826027048,0.6816941559535944,1.1867916662690567,0.9395548183233704,0.9052742250521099,1.4039264025958733,0.8590621139739563,0.3146872408751818,0.313887059204132,0.46407288512906864,0.5659593512035699,0.7549562212492353,0.3340298897247931,1.0189321498038515,1.293733805507193,0.3042852250908991,0.3574631077707088,0.6944919503696574,0.5976393488025314,0.40608541632003575,0.6279840703677065,0.7785281636254533,1.0236512245861253,0.4206465629455807,0.08631826339242604,0.3532720895162479,0.7568677292886151,1.4456787434781464,1.0898166178193782,0.8250988778190371,1.471048436830798,0.45789757390228697,0.11390760513490994,0.04902274981469035,1.0396453535105885,1.2343398696688321,1.0626408703403958,1.3599468881346088,0.2723124039159547,0.6265600743466075,0.0031871174822853954,0.24526265706591416,0.7532727644500992,1.1110069370246891,0.3006857996731373,0.17051251828993919,0.5957253733405592,0.5601776893920773,1.2891385232913513,0.44927945216245035,1.483946984131513,0.8523746783274336,0.6184607592257156,0.33680384143376596,0.009934887265703907,1.1267905259365159,0.43360990828285323,1.2183972513655972,1.05567380435309,1.4345103323886814,1.0763541504643153,0.6143743078195829,0.5135678767772942,0.6155237260841784,0.6496344658860446,0.907897444554912,1.0589515636591988,0.6157841968987592,0.8598242147429889,0.20114318495538502,1.3950959387304813,1.1656733417751834,0.7188046898960019,0.605110011549794,0.6633378654995934,0.716029409499831,1.0399634962538846,0.8558497186579114,0.34141641155905944,1.3626507364010378,0.23928819706861537,0.5892321056889562,1.0196176237615453,0.6884722120964603,0.926520013599724,0.14254526100010145,0.8992989286857216,1.000851816009986,1.2258983662021041,0.4175353669730943,0.8695425735161876,0.03130077554226163,0.6109374796969962,1.0548593174344525,1.062158187515878,0.34422040556814226,0.9976114123294326,0.4228600820100449,1.0103893800751598,0.9587185387020636,1.4469000308787237,1.1451309999344608,1.2050883213025951,0.8231850459746329,0.8055335541677042,0.41786927576576616,0.5216373065765603,1.1397007874804281,0.4052498189973408,0.30333097886701055,0.43859330878176633,1.307596096760816,0.6483356084714855,0.38431554221643033,1.3252477035022756,1.495528247158517,0.06028444413180861,0.495006966587072,1.3698006689100675,0.35367679215402287,0.19719664122815395,0.1930242024463471,0.2677689976733969,0.262227939123543,0.6068362972843131,1.3983805709265877,1.282276255021698,0.03317394657723732,0.512621087601576,1.1733669615462463,1.4916034198013226,0.8573379472591887,0.849239584935769,1.4455216309021954,0.8546604543609071,1.0955232429318122,0.8080856800064129,0.9968181041091696,0.48635405974151,0.36699193044113776,1.2211782041243526,0.6102325222936442,1.122620359407683,0.3560301762659856,1.0827575500865232,0.7661236447797127,1.126362298624038,1.1828997656104014,1.2407307870559796,0.1718501888289562,0.6831081209040832,1.1763570937728902,0.5770978974367965,0.8254150753022835,0.17583164940293056,0.17273100579720085,1.2912895224161656,0.932377537765235,0.8273159979135871,0.6492227015819858,1.2768442715876933,0.3119450869040632,0.7609585692442522,0.18846728582533,0.39445120493646846,0.2823407342780998,1.4686204050596006,0.9270213443832336,0.7588435246361611,0.3802957878716,0.43375235727605704,0.14532015564477352,0.9278445153871466,0.9034926468416102,1.2296212150107524,0.8373912657991409,0.5996283729685037,0.5954650587829298,0.4802663849363391,1.3789654123779846,0.9027945828473557,1.4115893345479513,1.3944353719118525,0.5900677512165763,0.8920822618849885,0.05432564170523713,0.15447456686992583,0.8199497360198502,0.5129643246067797,0.7937834813384761,0.8275246885899423,0.37432544858722827,0.7764078437625457,0.15032408880568143,0.4946949150034082,1.295834986110204,0.7142068106398971,0.1676932724064551,0.6977968059301825,0.6644719978122484,1.1257452353197175,1.3175718623247057,0.2004405425737676,0.5299243766710297,0.7239650617719324,1.0403843671992252,1.1934218522269582,0.06908190753255883,0.735581361611489,1.1967145447755043,0.2878057966990021,0.55915020878464,0.3967275274886102,1.130499581601564,0.3526167284120524,1.3867246064408725,1.1002064085385983,1.4965717507834202,0.561638654054925,0.5688731673450258,0.6769359948340519,0.5707275444032764,0.48569010177162386,1.3561003634264435,1.4511562947314738,0.8022001092800812,1.1042825332064146,1.1198841169194569,0.17015744340719302,0.4715560578736194,0.2301555633673416,1.0425882014891195,0.543062285211511,0.5570948271583951,1.0005897781169095,0.23316385562882574,1.4217054127775586,1.4989488087312053,0.03823384369570071,1.0352761982146175,0.6226034761966162,0.4855806723911866,0.692171225148448,1.418808895139551,0.12258613906641258,0.5501009070129611,1.0120768427501234,1.0104285516572062,1.1640437538214345,0.307978378089709,0.32984833668845515,1.4157248437715895,0.38382949315543574,0.8811198042575656,0.7186239592731812,0.3121424594872056,0.307483531966577,1.4460429108369275,0.10949634265604791,0.7862028155037859,0.6286588442988512,1.0956279077078528,0.6192587992011183,1.1686413479584417,1.2261988968359985,1.3839407712974894,0.24277627484745035,0.6301852920874835,0.16441186368639898,0.6400775009459876,0.6281690315556423,0.06202822998684515,1.1038317726946385,0.6743088340982496,1.411266447052054,0.6978109024499689,1.3405971833688317,1.4297148487637814,0.6475578178004703,1.1835790535830684,0.9207652735082659,1.4163154883412332,1.42242832702246,0.2951139827050383,1.2675433036211516,0.43018844825930774,0.10723450470129287,0.6494193287197072,0.2671994047964944,1.2939669918845627,0.9953359182308859,1.0134599320625135,1.421434477126881,1.4208516367025736,1.4774868113181054,0.06097385244546821,1.1712830073012634,0.3950482400924819,0.2574602014961949,0.08192319465840009,0.3180507174436566,0.7621534552748209,0.39246651934280424,0.750686045643741,0.1411730216200256,0.15773859276243324,0.5919432379589731,1.013307734243457,0.4913558426229513,1.144561834474483,0.16595051023056367,0.662430776827356,0.009556145812243066,1.4388897991546363,0.02287697836056002,0.5205029306194761,1.1785000630119828,0.5679447957997363,0.961215133907778,0.8560940543531033,1.4937583594272017,0.13145688805593664,0.9232015893022097,1.1244444317710394,1.3195112464484016,0.9358370261817418,0.10915522109472803,0.7952377184694528,0.19155206249044882,0.8528780906540603,0.0619484210030708,0.4587632632030193,0.9800217327455678,0.6260897607579058,0.8787607653356178,0.16038052382667073,1.333329250856649,0.7282202083907761,1.4885393416097168,0.6110654477419719,0.20986788905515724,0.26210659047639856,0.18959909510531192,0.5483256509567592,0.05683432745781819,1.1945935696491796,0.39482902269164794,0.9297091268371278,1.1313892168599082,0.6588214458625923,0.19757266841103632,1.4651175996149393,1.4979585123250898,1.4891855381237524,1.4714289654931194,0.939022775136108,0.5237719137457256,1.0784317211498564,0.16566197530728538,0.7087667132227149,0.8511213368475063,0.83282620663161,1.4780762877276508,0.03258849939456926,0.041258078762461126,0.08398646085885453,1.2407467926769953,0.43244186621647696,0.4425809366916252,0.8284892621204214,1.1157098148895594,1.3620861139175156,0.07282818528768409,0.31548904428630065,1.1650718090062087,0.36686489320120536,1.4773153718117662,0.41885313808168667,0.39271971353861873,1.2760751007743325,0.01022515134805796,0.9590252067342553,0.19763974564811826,1.471063361901853,0.6864971595767406,0.9638580854349337,0.7469171482948191,0.5425310815415857,0.23544937883025174,0.7403070940178962,1.3522148511220276,0.3786192749939124,0.5724117408094664,1.1717076622084075,0.32607611981327683,0.6364659057413449,0.9746469859983116,0.5312878946613616,0.1617940446269761,1.2551609478712187,1.1329595809848707,0.8788277519281544,0.15242970378039955,0.903884040925706,0.11076436283834712,1.2469525060726663,0.7749597993505419,0.9935829629980406,0.614124212203214,1.1150028501340363,0.19068512676513244,0.17008951190909116,0.4042668620677827,1.4321148472468224,1.2748390291687173,1.2527715156484012,0.16871935158820045,0.5518724776212928,1.0243295822807164,0.3389772912992,0.8320865899728607,1.4193861023356245,1.0715134950859972,0.47073742793089085,0.9341293818572152,0.05648133282543766,1.030024068718741,1.4880269085408548,0.9565836916543213,0.2621240527616119,0.1786042259246144,1.1784311859851486,0.596916760605853,0.49658553555385293,0.4742384963477368,0.9040566584548304,1.452846008383396,0.9473296633276134,0.665139333502592,0.2867313766171945,0.9134626837012463,1.3451786469371747,0.06799989719572558,1.0427743702678225,0.08604433591453836,0.8472193267720511,0.32111067479239214,0.8879153235739983,0.4552243250711973,0.7794680434443155,1.456085859796774,0.6740494138428819,0.5504562653045229,0.2595473801943433,0.8764167973458946,0.5049266711390652,1.2369130750583759,0.7971517814776461,1.3063916680192673,1.3226299897038083,0.4861009934278714,0.4911932816117228,1.1330641151099126,1.4943530214386682,0.3596020894378854,1.0702725675264313,1.2553107866371311,0.9219974230836717,0.43384378871996687,0.03968988187984973,0.688326190242798,0.5160143505977224,0.4150011983087938,0.2834222860577863,0.9116595051063462,0.6278280925726551,0.19080579320965763,0.2995769529500738,0.2946552078185221,1.1637393271682859,1.3914050944416383,1.3493971111382024,1.3230308435818965,0.09155290246887632,0.978181105461724,0.36221979790092707,1.1362973603783755,1.2215900666597745,0.9807380832938448,1.1263337805131974,0.3922864576050748,0.2658104179615405,0.5568738010507075,0.8609865946547286,0.12418080497653977,0.6134233664138498,1.0041309653513586,0.7347829157579115,0.6172422792276153,1.356070388792762,0.093509284142887,1.4226192831053759,0.616545903783394,0.6677007938863802,0.33240351025545267,0.7273483046123475,0.4901098156889683,1.1575722249678964,0.32975274294231477,0.9550516292768818,0.5057627227440111,0.13582362915398816,0.25011466627902085,0.8586783351676482,1.2908235764098817,0.03774855784788761,0.21869783168513773,1.2412631667708114,1.3793142418624977,1.2769248570573777,0.48968849165356354,0.502324445765941,0.7913539669358319,0.4217066018452588,0.7626345450233658,1.0677770871995513,0.5287531274448954,1.0119255208033338,0.25222391578179365,1.4858309900892364,1.2276467904543993,1.4832487413301145,1.1623282666307713,0.4130107641154611,0.4821953327174166,1.0356711343669684,1.1816988200265113,1.3000854548982863,0.046903389568038745,0.285562315984616,0.8573669535074124,1.3748763758603122,0.20748067711450563,0.48890583566908574,0.2679818753830079,0.9686421260486178,0.6194731187424701,1.1263243730041097,1.093498446221882,0.774099753330997,0.19752229357502593,1.41207095124013,0.642360328140173,0.7294709892876042,0.8498929078363431,0.2432967283045986,0.8335512691119338,0.2150033869009863,0.9848254361390334,0.1056585008981008,0.15869799791151235,0.013095384961309187,0.5333369354775555,0.48913453682612207,1.0486358567431637,0.866361693974687,1.094788818009926,0.7136282099919367,1.457259348888929,1.2567470913221086,0.6832731668274887,1.2866889283142864,0.002671666498111347,0.9178163833137255,0.4217666484437433,0.0017701522778827417,0.9788084218770509,0.33593411859840633,1.205849804577582,0.6496863813726774,0.4892992284526792,1.4456948153897757,1.0922688235619877,0.5877789849307167,1.1171396485952763,0.684923865847493,0.4702843578826203,0.6019120115400379,1.47869400334405,0.33514766752102326,1.1719769618535383,0.23246610373244608,0.29517602896730916,1.1385499527632503,1.2107983618872966,0.8561842430157494,0.7177467182018437,1.21814525861926,1.3282320115781268,0.9823164419631804,0.8116023577011997,1.2320860630508907,1.2849510038333587,1.377524909912729,0.008524389178049041,0.5009405919928822,0.7864862352684283,1.404757699298905,0.3704429143978973,1.1783767754906007,0.5024697452626415,0.5223995436559234,1.0502366099848537,0.3766136633394009,1.3542864076324101,1.1941503915994045,1.0353434474425844,0.14066771296441205,1.3695477616053684,0.1413239615817109,0.7794218324955609,1.0599881652608256,1.3255791975221474,1.0262396930744702,0.2590112913509572,0.9662064736645963,0.1297151680937031,1.1956275774211944,1.0295392942822754,0.5907304507005722,1.226439973235686,0.5209284832957842,1.2665408443596045,0.47314347198683665,1.1434990601913149,0.6051295217919852,0.7116824826929636,0.17210508626328724,0.695160482704312,1.3383613592790786,1.1702362341802628,1.1425496173615453,0.21022890563591468,1.463146808548982,1.433185061896332,0.37289532549168747,0.6923886376703492,0.4808819312526698,0.7517455817108073,1.1984169747115734,0.022817051844430447,0.051811825519113064,0.8045448194342559,1.3282411764150117,1.3066293200019614,0.7957699049797528,0.5033954997103206,1.0611544057553415,1.1469837206128672,1.3093429452987286,0.7069877764812373,1.0633521892326512,0.21052597219128744,0.07471641392721584,0.7166204477070675,0.9103368247375869,0.11348204280922414,0.6762467757629687,0.7755356490922544,1.3366404112754937,1.3930995201826861,0.10826939167138139,1.3232241232702522,1.1215634140671535,0.6066699223813485,1.0094341539087517,1.002987751091333,0.8569304800949067,0.5189312911710737,0.5321273419538528,0.18094593785681756,1.415181361207353,1.4316791860298985,0.2517249214374896,1.3885762316050079,0.8790677096396672,1.4130686082813047,0.8886015957785484,0.9207645446881751,0.021094477503206477,1.4940722309413563,1.183362912229066,0.5748213293238102,1.0999004349036001,0.42257309190141795,1.3680291218000824,0.6699286006214953,0.0030620222359900584,1.0748293986971507,1.4566932102151147,0.720127557355853,0.7326747507323366,0.7779824522885241,0.8708770143881726,0.9819934371267953,1.0663359704653324,0.5869920633135896,0.18994448520995094,0.9506927811812702,1.2924302530456258,0.9457590889746397,0.9107260840066167,0.33448440713209643,0.7720751147819305,1.1868255657625923,0.6535077926793461,1.0231391565464154,1.0520653146360681,0.41442416145569666,0.23238324600615262,1.4789264489631475,0.44864666189932184,0.06991583635023879,0.4179729444389542,1.4434295097080005,0.3181571851124523,1.4829482582997229,0.5455162581822686,0.32156059234844575,0.16689849974091248,0.755725959876357,1.4417209354781817,1.4461118954372147,0.9169524539800615,0.2437437829904806,0.9308885985428417,0.8558423849056542,1.3412373970699298,0.7317989831711789,1.4644192650861398,0.1305108936869228,0.16326612005365193,1.189887713686728,0.5823529953332087,0.3092633029418693,0.5308483824180426,0.10709323060929204,0.6449783770143729,1.466910629008526,1.300590216358518,1.1408505790740475,0.8835237115769669,0.5163710349064617,0.8595576042755739,0.44873406232109425,0.34954096038129906,0.3290965604207343,1.1901184559785207,1.123443602045403,0.22596170959363115,0.28592535141119046,0.26999239489430454,0.4174247125064487,0.21527176369175455,0.13038637619107846,1.0513191921663214,1.3863264078739579,0.7597613583570595,0.5472833562706714,0.6637709194351596,1.2153127019204222,0.18365031375553664,0.5690148848354065,0.40936010240153137,1.1887778159275744,0.7357165861916029,1.0138735457958274,0.708496518527022,1.3380577725609661,0.4610181517814681,0.7284394169200287,0.21054756148286458,1.4372536772379065,0.6612526198272922,0.48065522877281425,1.4705794039888416,0.11249573168951671,0.33951526912768015,0.5482598817530893,0.862899704678207,0.6520345838075109,0.6756680690573917,1.1185604759168917,1.2576423946778084,0.5488566564846886,0.7270856829576782,0.18419070130104853,0.2711466943776821,0.25473376464834085,0.10566119005171742,0.7116899630812086,0.5704388377505771,1.1445755819414842,1.3177392719082743,1.427291340717402,0.0607331123175297,0.6288912633592314,0.2996675421082798,1.4193751455893453,1.0101583134241583,0.5179992553389104,0.5552127199303913,0.2851912889943226,0.07893074151512197,0.6179544737362967,0.4043353316273847,0.0345204157518586,0.5771133195287923,1.0800607244741567,0.48832415978074817,0.3102896383936324,1.4880931640990074,0.13805380460408473,1.4373163586382272,0.9343449548722168,0.517358297614186,1.3135924863049337,1.106460693146306,1.4163981930120033,1.2783650851623838,0.35507252644014275,0.3645205341999199,0.8895856244778737,1.0845235121908445,0.6346836735518816,1.0650451272367556,0.5549744266046832,0.3713661935473806,0.8054792042821425,0.9595901627508177,1.369857489960328,0.2437251298402297,0.9005911893786412,0.6782300980458706,0.4452234579036588,0.09368369593505971,0.9614300105841641,0.5943659791321336,0.18781507892402305,0.6413091841757124,0.002429677134103081,0.3167259414654219,0.5942439298179825,0.18962281297637956,1.315636671642204,1.3419170134394758,0.5995342617819004,0.22183254132621605,1.234342991648674,1.1596870699375041,0.9712338716440082,1.02451256282824,0.09719973076742289,0.4848185695192845,0.17427405807483443,1.2042382194006511,0.08157314951908967,0.05443280113366772,0.9185965983967916,1.3924526825805688,1.4426488778396185,1.4125654683659195,0.3742420868212848,0.7616504706952278,1.4180606316536732,0.8476737128065781,1.393119927241309,1.2004588744308837,0.6337934956608555,0.06927001018215245,1.0043340460785375,0.09821565934029164,1.0135358043044058,0.5682637365677563,1.408481538801703,1.2694778480847524,1.39232218381609,0.32337648253991835,0.9671182902577984,0.8845688252149932,1.4697767596429676,0.9985273473735932,1.1926899647283302,0.594899972403184,1.4365655873463545,0.02210004736355231,0.3441014390395794,0.28113834308805813,0.4252712280994081,1.3588984850421502,1.4379734035665117,1.3654318147914346,0.41734735665548806,1.4811864991084633,0.5884064297281351,1.1019165385584377,0.40265077571488744,1.2464159642709032,0.6502841301251011,0.32661900597039567,1.0835165404256448,0.8057978100144463,0.48434578616827156,1.4228229162055224,0.8573338989324624,0.7365232823571314,1.1587481697175628,0.6454352300877155,0.8236215912355103,1.3459907080123488,1.2743411199772183,0.23342315342209552,1.4129805165094074,1.3753153247536967,1.2857739943233306,0.6145288379576233,0.19267060164476657,1.389417625414201,0.5703380136787215,0.8972528181143162,0.5355208151798418,1.3762436783311707,0.794626835777966,0.0481356880710046,0.2926039605337917,0.9028946537436762,0.0019417472228795973,0.7973993186556627,0.37707724242384305,1.0586469275230737,1.0870975467141972,0.33886184850629675,0.23339465145405563,0.6852501007584234,0.5184636147208276,1.3682677256312485,1.4560583727318601,1.3937360245211856,0.9567339668843489,0.9843872556336029,0.16880880700598472,0.6812064163982476,0.8708926364551262,0.031665577027989,0.4626627182803622,1.3327767719382535,0.3856419226896093,0.26689237374827846,0.47560654043457,0.17011567939949118,0.46687126937268214,0.705324017550599,0.3030667320885188,1.2787254930633603,0.49435657805372674,0.6975515857486855,1.2448330574540607,1.019426363570544,0.5587292776360786,0.7280237380540951,0.30908425738581785,0.7101612187654143,0.19969058742741563,0.5922024824250851,1.1133960244812653,1.2693188085422342,0.11837035461011469,0.5167877043184903,1.1320399151768619,1.1911152571139731,0.6215311581041654,0.9029656028593362,1.2298417682665508,0.37646481838130635,0.2916536648921336,1.0751879435002225,0.9902846019225433,0.4021717382671697,0.32472901945313387,1.1590614437919309,1.287129848819192,0.6486986880778696,0.27737333863154096,0.1406507657476173,0.5672796064133783,0.6039242728361864,0.481886496880688,0.2877289909359455,0.2833145918108487,0.08186757031031583,0.7946183140743405,1.0051898704743438,0.7888067921398153,0.4395504248110454,0.9815655535249191,0.09057076827652738,1.4617652550499136,1.3655837643487385,0.9363379702995057,1.4162890492754883,0.5523700619003653,0.5510741744277938,0.06387749221793981,1.1211996703781923,0.8259952813852198,0.40032030529240137,0.27527433955929154,0.6339822400289181,0.8556493246391832,1.3987606789418086,1.2128312176880982,1.1969761171864346,1.3079869785663825,0.46616004608424727,0.27837008498220506,1.4756860098862297,0.2378881220832228,0.6436213602240652,1.1408490893055452,1.1076334003288983,0.08057365896619378,0.7816667610824155,1.3859907538277967,0.38814762196365354,0.4828367754532023,0.7136907607671396,0.787374755895873,1.2744348910611292,0.7376302103379343,0.34332690420328704,1.081440831211562,0.30758818120598297,1.293636564611507,0.047275282681148445,0.07728214773186287,1.2242492916422039,0.986025829342769,0.824927084955644,0.6563946368260094,0.3563165113901179,0.7556451723647897,0.881810002764765,0.1370637452010809,0.9994170160345603,0.8385905014708681,0.5969668578525673,0.8574832549898355,1.347669755849699,0.7525569977988857,0.1820552982194356,1.0758490106381917,0.14448400115169208,0.4019946828285499,1.0454862800872748,1.382800455679107,0.4126958770269274,1.1674523491868432,1.3040633752353,1.0195280243311784,0.1790249874814281,1.1405196296015112,0.7132817562244288,0.5657010242030164,0.7131076271527466,0.8753798728337079,1.4617449989649238,1.3809509231945973,0.18926589962782697,0.9384495613167954,1.1100023321476802,1.092820322576095,0.7490490336267047,0.40267567586840003,0.39810653504581145,0.5017016005964631,1.0171757177464917,1.1577538175769913,1.0960235839679544,0.5689935323266427,0.873043025264889,1.262605194060416,1.3148160698124958,0.2914067083376058,1.415114906646757,0.0872875959644615,1.3526039972663069,0.8010543897918581,1.2915483943212915,0.9736900010164489,1.1779888366630429,0.933528296984679,0.9599909196184605,1.468277234530317,0.40240157889072364,0.277987733100932,0.14193045002206967,0.020685194857283096,1.1136936827947082,0.9540543691777165,1.2683482937440353,0.20334608548232042,0.24643301655270167,0.09017354531507288,0.2435494028766279,0.8303076365258125,0.2524046675387775,0.035065877872879125,0.9975413901262418,1.3707435921977642,0.06577137444886128,0.9643221148446716,0.8115379672763451,1.3842965287967228,0.585509440325974,1.1726343926822844,0.5569014525392069,0.10760466257729107,0.0388033283756703,0.04804293667248433,0.9128340034201106,0.26734472800593456,0.18616946854940225,0.8745651006093518,0.9730959168386011,1.0204690623000872,0.03787195687360412,0.35331064184604827,1.180188402918069,1.494907505576646,1.29290436766611,0.9150271124283327,0.1873180376259762,0.24750196821602355,1.227810491141708,1.0582286317533764,0.760338529015451,0.3288850867245314,0.9603497695603891,1.176200213703646,1.4975252960817098,0.7070078909532673,0.556075211694681,1.4704096053923326,1.2758486595804608,0.3594861593052544,0.12798616053689754,0.5631245544121934,0.32794252426194426,0.8992041325061373,0.707854577414905,0.03244265873602237,0.6235676380696461],"x":[51.747780786127876,47.73360617933522,79.89387284809148,30.0105414463408,34.17951674086465,24.797676682392467,37.75572327118374,65.90721681707315,59.03214295208906,62.6959208723282,96.89623322006393,8.718986061389987,29.16536953103862,94.22796082392202,33.8744080417798,76.24447754360743,65.95476561189041,36.20946341303174,67.9535375264169,61.98299022588603,65.67999705553706,21.984722579106275,68.86770327401405,1.1521996833091186,40.89582187366461,42.86158665112636,99.93310227020066,0.7688164305654444,72.81867563636678,56.413909670553764,56.70975195011724,5.022839846876559,75.54655880649871,62.451703113248215,27.466952061027616,55.41229545246035,4.690399930074529,50.93092536948012,33.89764011690559,96.51788902600971,36.26866453281895,91.39545441907447,43.80301900242437,69.05815924076538,20.43706904192364,9.64534069844174,32.46789599803328,4.566118151073351,33.56950651466288,1.5186954952798981,77.38915599530685,87.31892852555683,57.758706406162574,73.01711957226655,27.95114753862401,57.89089295043141,28.16713511893013,90.72030613245417,37.44929498878871,10.970592768569688,60.25003444225297,87.23748805456972,53.67613562949091,0.5380740461141786,82.86939065775273,14.724846282245762,53.16931729182659,80.66519863601084,7.571936219779818,42.29360061422148,12.821826658074775,0.6925305095629053,48.987778453479045,30.289284135347238,41.503026190191214,35.398671487099065,44.49495200204304,99.11211759361258,61.449513541979684,34.56877503293902,49.58680642903774,4.086827736114563,76.91364148173835,96.6573520199569,86.28517511767005,32.76940573642722,51.9795496764995,38.260024736339574,32.13893061297854,3.9641428860204164,84.48221221245468,48.102445192521046,55.14181116358669,33.121235974970745,33.91643524094996,41.7312335674471,62.631132576159146,77.3895730498652,73.65600538927569,1.7844468664081292,85.02594725321619,37.92306704136629,43.67708234733827,1.5834524303300568,48.100575490160125,93.29844465746908,51.45344444924673,14.112575244590985,90.77313157112403,72.76129850362608,68.96357551439213,12.972654760201042,28.14877360673672,99.97339957198092,29.27843821371746,22.5457445062899,92.60447152054113,41.809517754341044,40.71587303458688,18.782407673866143,8.111771958005198,85.37832414725047,0.13046928655340295,46.05150865874753,98.82135750786296,32.80295586762658,73.37608412120935,94.39674513779364,45.82755234637656,56.80977301372657,32.67293018841091,82.8394231066328,48.234750199963905,62.11801140579707,38.15067713870328,77.97936830165783,36.52343736546205,69.00833595287914,91.41908389531437,27.972318809763063,8.65277411767309,63.54863169648394,57.02844663684312,52.390462839574404,43.458756938703445,82.92347532068324,65.74022239790519,24.65161930889874,22.01888252394115,25.60165112901982,69.63318227011939,46.34453766423463,64.49535196267988,55.00844589606481,30.713874560652677,31.055810173787357,91.79218628032378,41.93801362421829,60.537962444709756,19.39857308525651,76.30125699493945,2.887526740194102,94.26996351595682,49.28761870906365,1.0300390967095008,70.16688109903527,72.82198595046421,77.31662462383856,15.652114112367144,71.17554119718007,59.15739247594014,40.16213355795537,87.55094666124201,82.65008054868206,21.491565767025943,18.2797328029323,12.340151015689793,21.5589683473299,5.103148451802553,5.351291698769556,89.9921821086248,8.278079120422266,29.025406406821997,65.92755636985203,19.470798527183796,72.82215017447274,16.999280391512794,70.72255954160056,61.65378727435707,62.162891223316976,62.23317348984546,22.745894759920205,44.31385259506172,57.88141610657163,6.714092064689914,23.991960740764483,41.07807958742744,13.98602989182428,52.315498218983514,76.96365866053662,81.46640601633773,20.07449256207874,0.23336668987478104,88.67979066687612,45.64265478421986,97.2947119026633,47.564671863363216,99.86019579734655,64.19294198907822,64.2898220290767,33.91838973999507,71.12652837414298,50.58720937198354,12.981784571060551,10.069945645342859,25.54110953379033,12.267731572467023,38.72442909930014,55.13153382386857,29.494983692046862,11.827546989695747,27.343694341428726,82.6585248051246,70.72625435044968,26.4206270782812,39.81042025120182,42.04989755428833,43.362250819642334,56.92602664151083,91.98836914667777,31.618966663572813,94.66994226219626,77.2572856700633,73.28207698803433,11.112751135718813,66.72372462928593,13.785158303681788,11.986966436325552,6.730750447747225,9.074049274671914,5.299225784977024,5.743784576504984,26.456271873314808,11.955300859810903,77.60639068741943,54.49113146330391,15.884185355798019,55.33455548709036,71.98676236541662,22.43487297748906,47.81880819131333,37.71328065966609,17.1486424141298,75.65927391193539,13.918496745317189,18.509136599220543,16.822642585010716,16.291168083979045,47.866635359788525,49.44914428662731,78.62974399685353,15.828353648128013,58.41327259763518,98.26625131426894,19.272123367653847,17.912275923236308,57.07455302244112,11.979253931041034,58.08819148773744,75.31361414598243,73.91488979514882,42.84648890571702,25.781188366527708,24.97450714105488,2.744953719784582,39.956291499851574,64.1071037066276,36.26977587081096,39.649703955174395,14.375416764728987,85.659158121083,51.85857727958355,28.997841117083446,39.372784896189884,73.54645041665371,82.4076700324054,34.4820509176633,1.870779858268845,64.13573150488479,0.32825956711167725,48.92976743345822,10.757940061205195,25.98177675810267,13.610429888786356,28.235688252698743,0.9611321895914293,21.2394771420399,54.13864781762674,71.7947847020837,47.54855324125587,0.02572342480019474,17.435534854146628,16.083972277753322,51.37585963419388,20.659486440146292,58.107118637441246,28.765272157600318,56.42285972385034,42.35824039061898,22.698913969974377,84.09737048083055,88.50446324918722,9.900397175142983,91.41764760409616,44.304132073000936,4.411968183219406,59.981207782145354,34.49058913669292,6.542572026758641,7.169012235388427,56.37428704333567,42.342976495770934,78.5850391338844,38.93195842935581,77.00806794857994,49.455434518918715,76.57249234557169,48.166033259505944,90.4259223361091,89.55817612795892,55.08978023655544,33.49839463443027,99.61372321779476,68.62769110499977,92.04758640094235,54.848136542098324,35.12744092540145,81.72514280521112,16.02039623471294,51.77011856402205,90.41216853780627,15.673695304664847,62.64132309618303,37.55536468335403,7.095707446786403,17.988035614792043,69.67590432073104,98.4179716183854,31.907139934234507,79.01244820388021,83.40410712277756,47.06750526331841,54.43733486537735,96.40317272171669,19.34354415862134,95.77771389445553,26.61840071084327,0.8075720508767037,35.148714132047445,20.712281528433817,23.88752397975289,95.35788468565349,64.97699177879518,26.608118127842705,60.76128768602014,91.64804237013621,33.627365137917785,22.26891247580728,21.323479519495493,65.06935349298669,41.86423565862243,57.44406003116488,57.4971360514266,37.11444359762709,23.994252818769212,4.944900661091145,88.02449698125517,45.82661379913496,86.43493497117905,12.394186102354865,31.633130612532145,35.20249554513535,41.717505182364704,91.58569320770215,30.543092022931905,67.3042791359384,64.48846747964078,93.83890436716861,50.661509861291165,0.8308668183759749,17.688864284927995,62.77150902676186,61.8894239646643,64.0627352640696,37.646426931919144,27.238150912941038,19.931785626568388,24.9531433898484,63.78300533446365,44.1618729719399,76.47404626603772,30.25011446233501,0.4339863713380909,63.303811314122335,2.84544992153154,18.810529742642213,73.94944199692873,47.05841416539995,56.80037131374057,21.279062770213375,10.34062139563523,63.22066338545055,36.996675063961995,96.76983051205377,26.449716720773097,7.440267185460458,95.33864682865355,33.70303126969603,33.85430830004024,92.85200269318999,73.90232694693573,73.21853197741953,88.2573241380425,87.15518668324084,3.096262837572461,30.09713440795331,8.643263538210755,26.032939707203628,90.43410165681071,64.7809859927389,15.721270936866683,10.209876611434366,16.587201969034602,62.27840996875565,73.4786295231604,28.496408912485105,95.23107397686216,65.68085267753271,97.08504758116632,3.557740396635678,70.44843191113573,21.289557278769056,83.11248647737017,61.2307756705973,48.90217015117844,83.50345498379782,76.71645182103111,91.5379562314406,10.104001870169132,68.65175201848338,75.52435517839953,96.5749406842963,47.804337820617135,97.9597529219428,73.19701141912796,73.94203843707878,66.72349634100752,40.78406171877704,28.611374396909596,71.72136605282444,44.81752238058443,40.95430708848274,47.887017987220105,4.67161164931299,57.363444504859004,8.433954019089828,81.03918055154462,3.0507367175368394,39.8804461341882,75.71994652630009,78.09745370298143,96.51952685636103,79.76331143996283,35.43696882188454,56.0998435953987,47.321324566500365,0.7753247950545883,57.22144211478408,11.177215966463905,22.87146397386387,1.497970385589631,75.65687054133402,34.57347134935153,84.69240152244421,24.503126909101603,97.51559201158338,67.12562326765425,46.30254470683559,83.0499077989358,76.95909837948406,1.9875482835852942,66.76212013165996,27.7222174299706,76.23437053445522,47.168232569222866,10.886883880703113,60.56178204473039,91.25791225461059,28.14517316656362,29.059575610639186,74.49432045301985,80.18352939037517,43.54689196438174,33.27896756291786,12.331622048655866,95.35599153623863,57.445340457915286,18.799078450607087,32.18406311370057,61.64004289580068,40.721705409931644,7.790662126646719,6.2126794712293325,28.04199015940131,35.361816456955,14.406504667144837,95.50993489513203,77.69413382311193,39.27387367292309,60.63031749290844,95.88227359578116,84.02846436118796,47.27377341128077,47.164468387300275,29.551205931518652,63.98252212371253,36.17249664936496,30.54267170934698,19.758109002447245,2.680279687569742,21.98753850409585,87.37869117821285,22.54019620533888,18.12344521190815,10.171123222241164,57.115946462370104,37.84918181400565,77.7526823941483,29.044447343083966,62.55908545760154,17.47612150776193,22.976272539414143,74.0150877187781,62.521409893061694,45.78457722691521,30.63966971158739,44.22773408214496,6.024915296953726,59.71094783887594,24.594408530457535,76.7826057294241,87.90511758512159,22.946581749971486,51.120432589429,36.7859010447856,2.197594414649029,13.674787942437327,35.446479184924506,70.00627737990175,48.2169936606575,60.162661159979905,59.65329274865421,75.74720914407808,81.46506699010833,10.825634422766994,9.034847068494011,18.106021320839304,73.07704168752363,22.447407187108436,57.082543516751336,7.217368511457211,69.02792449040105,94.31335504304612,40.419470110314016,48.84605709540555,6.818038743387622,15.643162388666386,45.85794247371845,8.84818766462333,61.75497046820669,64.25364133235448,32.556760791566255,81.62167701699556,85.32969983668507,89.886309811293,46.655118499921564,96.89752959394862,20.201928865184115,54.30408521207314,97.92883285574867,3.256948775974433,59.25656000919752,69.81281485148138,44.02446599685076,38.06336394556163,21.576754929480913,52.39886858710695,53.2786662089544,85.17849618343297,94.51412711771323,43.230367867701226,12.36118696877594,95.98622254665067,54.0727788228766,6.101914560254784,81.27806558026647,68.21397861518477,46.95608031404763,22.594029586896557,60.38216297037992,48.10580567084431,66.54679303476316,18.290487166281466,57.57277446373421,68.89008334973262,24.714095487375975,0.6712291277534921,11.800751247551034,17.107682991498052,83.47921342724976,74.76042964994656,6.981582223463922,7.535639388031024,85.72898176452134,37.40230192140493,21.555693339865122,40.80673979512457,35.82541372865249,65.68420241390243,5.410115905887814,55.78029997730777,27.64066190590756,66.0260962827825,46.63509170366377,87.51735056213323,97.87955784768779,75.15195614642094,96.9105785293808,11.733640531188872,48.248645287722525,25.317965594337956,14.503540060733577,63.97464864938861,42.967619610824535,1.6360484603136105,73.84255977551409,31.947336321484233,91.7598377945863,37.16913754713704,76.46838426717892,78.60254159430163,44.823406614220154,96.08850542263235,5.661287999491515,92.75190851980739,43.70097653112865,79.79711016738227,23.707485062845322,32.61283874021784,39.70220693366638,43.98941452893936,20.04025243138311,80.09637649334347,91.82773723321758,44.20816149083073,37.50151466825995,12.358706802572328,65.00888206061163,48.32006206888185,50.25495505931321,73.59122496822377,30.934586888465375,28.69147906466284,38.77668381921977,10.298749304027444,8.805833248831673,42.45564369092754,90.35946561705778,24.466967593088064,6.538969451003407,24.982881369678147,55.917404784323224,26.36295739128167,90.31131532315693,77.24034878415183,54.85861279743738,28.146419008786683,87.59489127606115,94.81956198610352,41.55075074802652,44.98709096865446,32.120574095845924,18.246777426536575,79.2701247759164,37.56511723071245,37.91448370276043,89.2995104148158,17.733912313501186,45.195025651122286,46.61577354011269,63.90852382731933,61.08189411147017,95.63181048940984,64.6677296935312,94.23317783412594,25.90071561026307,23.525672789545304,78.38208774593237,44.580331599748945,47.874252251410084,84.3133490574558,26.47840810383184,29.253167106759705,37.427706926317384,41.611499820181486,64.11091658827635,90.90376161352984,33.54123936507977,25.934191631053306,6.749586312899803,58.513587400363406,78.07978061070699,58.12217770577986,60.32177085893624,39.10781326909992,81.88560367827897,48.30895583358505,35.95497330515942,29.975468458497733,59.54811109471545,78.25353726147748,94.71054970970228,8.553379387519144,0.18500427657329732,17.155882113279574,65.53753845284672,84.6036755913393,69.20992832526073,85.81831756457412,11.50440379957507,86.96935536159967,93.29252581454945,0.27486906877460804,12.05763913477963,25.997062720831742,54.131874221391705,10.162902172470577,23.47556188839357,66.32357690254818,95.96189556485025,59.822364550949246,84.34162470673196,36.95921422092798,23.338557978784426,82.9325383219052,81.03922838938037,35.84240506379276,90.71645896044438,15.392241078933033,15.060192299427511,68.69217557123318,98.7179883762197,27.968745623869907,50.26149067335949,98.46074522727487,91.01163457629139,22.847284455480043,89.40399564185716,94.24652718298437,89.39851258292617,82.99132541647855,47.89107231991856,66.44810215911777,72.6007233300996,80.65836451170956,12.966400830533809,6.759560625916794,26.74620398347738,69.45623696629772,54.99010927345851,41.872265677421815,36.035277077560245,18.182673662893755,19.981185992984397,26.5155624977782,24.635462848719094,59.846173825701,98.36417920751283,69.85898444925587,1.451804264287826,86.22809206081743,5.588184527597573,30.623227553753885,35.340772499519545,95.14192964732366,95.63807653535528,10.933346293062375,19.793346957221136,30.899318740165448,85.36984062639536,34.250960326089064,58.981647564431746,55.42889025197956,44.726897020709714,55.17082930231892,42.01998114010414,37.36154651942164,93.30418721832837,51.27064853939246,93.24789309621224,50.46703225090737,26.607942998527978,85.66979684118724,68.56476114330452,25.34288902800367,12.23940687906202,5.6107035695216805,9.289432640470451,66.97991217654298,47.21499040050161,23.512592198863935,19.65848847173206,67.72966157417474,13.187037165494909,3.3071036630092254,15.212262568083867,1.9664302948124823,92.01893817376379,74.39289220883526,74.51052437288097,4.671104184190078,69.46303553081606,78.98758125510906,30.67081545747611,47.82360110307733,44.92609245252023,25.572714923134466,71.66311772369197,7.669195641372073,68.73912601309411,9.080165777180005,70.5479663143533,43.139004058085895,51.501969009856666,48.75774239662842,43.62523803784802,19.59649389762712,18.56822764823579,85.42709424880863,39.150591711974336,82.59765709503012,32.427960231339505,35.66083616282639,7.13259720783449,27.630884050146587,67.73655965059416,88.65011309374154,9.543852524952323,31.83301992924984,86.55713381822005,75.93392166246474,46.0188870113933,15.440865459805886,15.204630638510363,25.686511472264616,92.698107285618,10.220547379574285,52.19347446326674,20.272213622368174,94.60603913959417,3.513128975239699,31.80569152573375,23.29057359863168,57.1671888478684,74.75510924500003,22.589227081514828,76.14642477854984,40.88357921785158,41.680034298722504,79.33264677159161,59.67937597229608,96.21815488362762,28.58729529828571,50.33524624095727,5.288923501652043,81.83010870148978,15.507195773919058,54.13975800505426,65.74670411520577,15.780313931846868,25.409544919295477,32.34811664771057,73.12194961498794,23.320823907726474,68.23556978551822,13.63626491310722,51.6884436686988,76.56073187068934,59.57468610001199,97.63122383593281,26.04529888600243,83.62179405052679,51.640370858758914,7.207562545589951,33.88575211433663,61.52963225234345,58.305028196070275,60.31976705192946,30.881522405823368,63.75595098501464,61.29783102916279,69.58695246332563,2.151913418370688,78.21979016344261,91.03002619835256,17.92075951152221,46.08742118636167,59.56327711629825,54.303039042359394,34.01569106099006,6.43883402604295,20.10710517415618,2.9132024112724197,20.878639285238354,27.75097992941583,25.69641075782204,53.76060367166519,16.629351932055393,38.449126008991605,13.133024253692472,98.33022189723553,59.33434453583188,17.013440226524036,96.1059270000004,38.38926868881081,45.81437355027545,78.7581929437809,87.61261015963741,45.77319643066576,83.19649200934535,22.301363901031568,76.40080782642833,41.90841406712656,24.73303476474664,29.232300676706192,34.103980638666734,14.001770017324688,71.83569634486709,77.6365082319339,0.5064104389503665,43.295401289962996,60.62236540218979,15.990945457985472,29.69539853109209,81.7797475689483,23.683999542816814,3.2844503554329663,45.39315530638641,46.80856421049572,78.6387641878482,19.07222263478239,75.25394421270187,5.513437180781011,81.49222555258382,41.86850326723855,78.68240197937067,82.61178416618658,67.8808236519792,91.76572055783453,46.30755225136984,95.92694775698057,17.0677285076291,23.90976919838492,69.17420637285495,97.33857559118086,97.27148942036254,93.01944752176013,68.38385235315862,55.912535427741915,38.68358310754645,5.66288623237906,86.89229244778797,53.824782031781226,48.082413087916166,42.188251491465046,1.3071820186889793,49.64789787766556,51.628845007294935,47.43230165284247,79.16137900608203,69.91311285930001,80.83579723163508,47.4795714167648,26.058852818320887,52.52029866377419,3.3025022790607816,66.7235632924694,41.697940142211145,62.719327140712544,81.28788392147364,21.85225666603231,42.316988786055745,91.23411899609512,16.28561037994909,20.63364788776353,4.834125466428008,98.76463724701246,64.35874248134809,75.55169903549795,76.82768630099139,17.044520337070935,29.97296695971241,22.206392767817352,58.64131637301176,21.249623224886317,44.42653641380292,19.01082638401137,12.114293232286766,86.47999571874368,11.083182962705463,36.18301528440057,90.3889947113166,95.32085832094995,97.54890927548786,75.7339783501151,77.1569518272905,49.701939251787806,38.33776960286951,49.25077760766629,42.56896372439476,10.71306561975669,22.053213560160756,17.09317198497411,18.164738579713124,96.82558706582641,98.33861807654039,40.82336795834922,20.74915676263651,43.42169697690454,60.12994805067987,0.23960024609529507,28.79220039365007,71.38378955839379,92.19442991243297,4.554738385070934,70.35629026880856,3.845222090504119,5.56410960314545,61.93203279630235,11.302804390980514,80.74353747767205,10.616976229021802,46.492375298418175,16.7078227846542,7.001343435212293,19.431225153368747,55.39719881451973,75.97521244387615,73.79196658370046,10.268208978774684,36.315713185623075,87.74480156058631,64.75261194321662,91.58692701481534,23.709278296213498,8.548644244440206,95.6158415004838,88.6796859618958,32.763083891386444,87.57444926974152,78.65682234699177,78.99942254776988,15.663648053091395,61.354154313922834,67.3599204145139,81.61968817726265,80.83672315873554,30.738549822745288,57.36005174671542,26.96266281795149,12.21117406399408,84.62397023727036,88.54447422107788,38.5477640405437,89.80697532586697,54.567700357972335,27.69293894649826,71.35374151007541,87.50005477250504,20.08736587184261,41.491486079645334,68.52391588041309,98.30706414494415,51.783956638344385,49.70160920584185,71.49217131688455,63.61688283094147,53.49857338026921,80.3370969421241,76.38183111873299,94.70769405754798,63.396470962173204,36.00314015211309,22.49604810254087,49.658859922779584,83.25233681314809,44.929998943531736,6.449583317240249,58.1713076448233,27.79841727375364,49.067886304317355,20.542603763099944,1.988542858048603,93.8957523307798,14.596158052870623,49.34073870586501,29.399058839589852,36.447715832728754,28.657273485020607,71.29077213102765,19.766507320592975,27.576017451679245,46.74973538221431,12.506625172498842,79.07534589459347,74.34294342560601,94.2293430173975,46.48996138159463,51.86119093937261,51.801834876617534,84.84187292554297,12.210856456325004,63.844400262469094,71.57980788825019,97.41611179481215,20.584863939760545,59.07243250919885,38.99719058051701,78.19680337418792,0.8678793861374046,37.03809230907552,46.79474291567674,50.43452830491524,3.903997372447876,18.25886734429436,74.60610700228438,90.49660997522602,91.06450067564211,34.61384545853512,42.04515326734547,13.846714347919898,21.46265501035616,5.213167646487705,8.791510897581457,58.55540630180484,76.68957026797707,88.49435624057378,95.80730038059707,30.742379299534626,41.2088151948502,60.29324846247975,99.26045971955331,99.3369633835114,69.99737440118048,37.64114963483167,73.1509808157169,39.656464002289496,11.000310277850833,14.694037646531255,30.506308503641034,97.40395350445577,85.58971633741128,56.42934702733938,82.10502655516277,50.71475626163837,69.4558925504561,97.45794150251413,14.168350755116366,66.44282878526572,19.043614904936966,25.709134485837414,71.74250171220979,15.911503928228887,99.62237384361053,46.89875063573605,26.299822026214315,13.78091477008968,22.529644759632838,14.281578896564618,74.18570172472899,79.62049120377667,15.711572120285721,20.202684663074734,99.03807798027732,80.64747874691687,41.157799029699184,2.175612700573304,77.3652389049696,58.51553839749025,80.33344463213729,30.80131061640016,38.711646064111136,72.28795327110797,24.04794020206874,26.275208177209443,72.96431427312926,65.20763474430831,77.61560494348018,0.8650860507478986,49.97993132879864,29.805350704502963,83.58288313248778,19.34787785497136,0.9429727086774364,39.603609496256496,57.28292563940636,59.082433030583026,96.80031500344896,52.17741927365992,56.338657698211684,54.64582248697635,40.786182421092576,56.27826868997213,77.40575585134826,95.46859750362762,80.17785833324511,39.39201399390956,23.05053152741767,15.859299538976913,20.075578525406033,35.895870601735155,8.064570181915187,42.58403632499594,96.61219387886578,40.60181869832843,8.532078335193916,73.81995808587382,13.344953280881555,34.32026432252081,13.98397824756078,36.29935996963732,17.058709394526172,20.795386375736292,40.777604263159404,31.97507663347585,5.15070097965541,5.309281575230951,34.620705809388205,71.67653975222129,21.80635954898874,54.23022517740894,41.27504173833514,43.50330913042724,71.78162522484722,73.22810801909672,66.21736374637756,30.62524208126908,83.01634200089867,5.526088512394322,3.116302770168944,98.77020314170997,78.02533054189162,55.03104799154709,14.79202479162054,21.650153846364585,13.05862542609335,71.58476045470081,23.899514573765245,16.566605292940583,72.37170492730492,78.70014468964351,74.81319154666839,17.092907970894654,34.18419291621697,93.1386042431675,86.21429738447284,51.65339297235607,11.781056609561414,15.242516649554116,6.3549490783448075,44.19951537932395,61.26459941869311,52.459496224605914,11.106584417036125,24.796861402999028,68.57625124791964,92.4727840392137,96.66857517165856,17.342980223644876,2.411587368467538,77.24176959533726,80.17944986459956,23.176158735049036,37.31286046237751,83.27185553097868,98.40720787871565,96.64489057405554,11.26083669988651,45.61810554422225,78.32271716839105,7.996468412543356,2.077396668538223,95.10543419328603,56.76740425411785,42.65948012152501,61.77314645161525,51.49001533892669,82.46508370592944,38.700151759745616,7.383673297899795,88.37146159660043,10.803525825034288,58.86580493618874,28.245017184974763,84.50893528540111,93.55855567585488,31.64939804291992,6.33771349339205,16.894168012138678,90.43172773911226,60.18330956981448,53.129264631419105,67.39594259602903,10.688566404704147,53.93484022715913,69.35152588066704,16.27167899350963,89.28032048572156,75.7966330735402,48.82353784452713,22.746770531561523,25.881518253514024,8.283309790127047,23.8180773047194,89.02436606882517,98.72952217614746,17.33258417882396,12.591361043074789,90.85278857231557,98.62962226123328,47.8123029926355,27.143759991995797,49.288805189977346,91.56844149460179,61.15619316931578,1.9659625696491823,46.55408348113137,29.882062413695454,87.92181781375494,40.45647785468615,38.05586433937008,35.80784565738669,73.8726124716839,23.350678687442883,45.105814820752485,66.63117332694894,27.78127252377186,9.306100872837142,61.02912682676839,27.870291816075,41.48167668814008,3.5275407991189556,45.68222452467789,75.51341188804544,29.91399002460987,83.4469776987085,48.7374425522383,72.16260151682744,80.55260540152281,31.733965546296062,1.1039190030003865,81.48479924354288,19.667156972281987,19.340834029718902,94.40998252765974,86.74783961051052,24.936976553854684,95.9893246498214,22.516526051951192,63.97569682634041,89.42985944490377,30.871779457840066,36.50373091453102,23.449354477490946,38.960719877585184,33.91094408169097,18.650440239393074,19.765741476387998,94.67430507231097,16.390731115273873,85.23946718978964,14.811883002402492,43.679062315704,17.226584508322773,48.33503253656254,72.20206213909617,28.9618084460053,76.421944671349,42.05186048120856,59.31035544545358,34.72593231372986,78.64661373504315,56.0524763983559,69.8097749561003,68.4539611663191,3.6838920108144046,33.96309611398151,94.1255157222672,68.0235495128369,39.22569432629127,17.558055789911485,88.0954766688157,65.60163680925996,85.10105893221203,92.59440992433217,83.80889010900454,23.057724924210632,99.02703611439891,55.387262936517466,78.22523638267434,66.98447615748226,53.506719375663266,26.91132456191606,20.5027304581356,88.14583987747856,23.864997043109646,71.84148207158894,89.16277316273971,93.81471137936546,78.81353727179905,23.26147300763557,10.102114181659061,49.995040154975676,44.486781398361096,3.918280808678909,58.43156080987091,17.2601798296368,11.871033379013197,98.85199543077526,26.14686449794248,78.30311518782386,29.267388020354268,93.65252825570752,80.73198624713179,20.254054330103276,16.795043331394275,49.15185997443222,98.0655559180953,96.31103636082793,6.731084123616393,16.01864703725272,53.774700415335296,79.42283474953233,0.27463282302335745,5.745164579179707,37.24913999591122,26.622343226945798,11.258755819715638,55.14636062401961,18.626826131099527,30.249324123657896,90.17210033543147,30.75625620642214,9.462607967618375,22.902212490808772,68.25433910038102,40.14249308178053,12.496296481424874,10.00217830451816,14.615633211961388,99.19795599327875,45.06510991750498,9.810519111048988,33.3221327733609,98.89611029006358,80.002386907495,59.76940351330992,1.672585814088312,72.00587841781922,11.182702584165305,89.66093863247112,96.63659456584861,78.56582172153945,74.3189114860218,45.82637047509026,39.67219626902313,1.0405977441081626,65.10881648235686,46.439270443407096,8.781552174770646,69.41773866014421,29.39471243047791,28.96547301270125,52.30463759159606,77.82089960513883,17.967556272664854,32.1143161529528,49.38963997204225,62.34644586523969,94.48047562261728,40.37276290529726,89.45327108199814,47.355444750456044,27.38031215922574,90.19400164112656,39.21072641743145,78.41124540652984,94.60173651563143,73.62878324703826,7.797022581276847,10.644974468747003,39.63115048610752,69.6380676407857,99.10801297770084,30.380833781866745,38.97246318539794,55.92645374831149,64.50935117554505,39.915724526994424,80.15665042316596,76.35312317663083,55.66235300367184,90.33564550507933,12.656543951203947,88.91614036549083,68.30362656109176,74.33503302266197,59.028976801395714,28.715365233002643,70.30447501797525,81.38667852558171,68.62911995804659,14.113270974415304,3.9219936355797125,92.70511436417235,71.6201267728713,94.88351604535706,86.60827572449935,50.49008909756571,16.924672964900466,63.994379625003916,28.306032469633436,32.36135829749907,50.45961845925869,89.22052614401774,15.394757249722746,19.22872017733933,64.61527712888756,88.27447691622751,63.45665343212682,18.98470873151583,99.47013412787123,72.21917070158224,12.749420466727502,20.315799505572496,48.79609746068404,75.53706828144735,74.37366484942031,67.77379600181035,1.6917715869101513,58.28652292625427,73.02041132946594,96.96476399064326,65.50541028065675,9.443398623386944,13.557256372161852,96.8654577696852,55.91404506126671,50.23157390966577,45.557243788400946,76.96963286649631,73.2425257580072,49.553823816397845,71.89685197358128,78.99990692240155,80.07409064102558,57.905178569375735,80.1603916403337,2.709040483235381,77.41415710365952,97.59270473287222,91.44193481870663,44.97787254838359,96.34865997864358,37.63902746546329,55.498963752307226,74.17305739338633,13.807019954008226,64.58352881543381,32.32124030484093,47.11238052167415,52.76096057317077,37.444655421484796,73.86023067037458,26.892706319751515,75.56816007044085,76.57667739134082,74.15260943465627,84.50478183397266,84.08911314730764,90.78833846954983,84.12618793022861,74.5246680710916,47.15557924501065,9.918711771562016,19.371509088289464,67.249849024902,31.998402931387083,18.83630161496216,71.28016671957987,49.9600311960038,42.278705333574564,25.454949788377114,33.97304393584448,21.706787871407474,99.1974500310056,83.61711408000782,97.68554221512707,31.81045061021055,73.00767272604533,65.22049531762062,87.77626359204905,88.28373166435283,89.37686653873146,63.27326452675934,55.59801848834308,35.35030270249149,15.20484917003586,91.74321067249505,80.24652659578936,63.682263151054045,49.75394532759232,25.192570130805937,40.293166706291814,71.02670735228929,89.37225256011926,75.34188263590511,86.71971186022229,78.19374548707182,0.21809812616374602,28.592549045581293,41.477023779858136,32.52120438274575,32.84490002942363,63.53051445189678,87.49858426597193,25.301243666987773,84.2794482994877,20.080773687670884,19.766840369508387,76.7659423117371,72.77280092764008,16.41976327842164,89.80697419847891,12.543003238945161,79.5420936816131,61.79918127820658,32.627147393062,1.5438837491570157,48.75447511497205,36.094029616014325,75.65685767879448,82.88814249139197,37.73994187043489,34.82708004769689,71.19174826842092,8.487294576143945,52.4571859215593,42.90887629013106,89.87025865594968,85.75415933356736,25.478103871674705,26.18791145422279,21.963032249944415,33.437968926173966,58.83591990008832,24.060045137497777,84.39028361005748,60.92459755987342,74.74230294339354,96.88913438228856,80.76377064410762,85.71989195915395,18.447136919027706,0.829455013310676,96.04783007914624,0.49755789480678825,53.19333057301932,47.19140967668072,70.48376826273476,46.762417433053315,10.031902463520959,32.80256058789982,72.45616415629932,64.46494432116124,41.75125475966519,9.941143608856073,16.167236900651826,21.469675311156966,58.368820106820586,54.616445894802546,8.817870625213086,92.79685351713482,69.13234109692617,46.9657002968958,83.29225874534956,83.20879830509298,50.188248831195715,40.110706899856055,40.645833670593134,33.56071305572691,61.6602634530168,10.452679186922653,27.39043193030769,90.35652576822444,25.57034615210997,6.286339162480125,45.80337820840005,64.26046804831691,38.29674694431069,72.60315854700563,49.721424564659756,48.46812589882988,85.98359342822691,41.98577122294807,42.131343190090206,24.349397259683435,77.1980719545614,24.49516317880113,35.81321123752371,79.307536157694,28.6379647071622,81.71302365140053,37.37129060720563,22.31623330805761,29.247609904127593,48.33676379217323,6.9957690033047975,24.64158968888992,83.95455510433429,57.346220843490435,67.93166635301569,94.27543724837516,49.538888246030744,89.45358905703392,88.51731529333766,13.901993336362118,22.419112164390963,59.254774622405684,90.22878747765287,25.124178654609707,99.49103602228449,35.233132144170675,76.64764168736097,71.13346084255367,18.913846635191224,47.244634662747295,98.80507447584658,93.07230730082493,65.9996822854763,53.35499874485956,29.72918550827436,20.876929600510717,20.521434724676148,56.4404762738844,29.140461423436072,88.44042770762628,10.822659222619691,30.32698913607326,32.87754248338477,27.96292841033299,96.10441446732895,41.76662196928888,2.1587721201590915,1.1032534216957934,71.57967342498375,91.16865676409665,74.46825130075537,59.7171377522336,10.979099229566492,26.411811181154775,11.42489360552057,74.94242386199524,73.9342056015408,11.322759865037524,44.495131550357655,19.385472423246963,75.05532987481071,6.543155565093562,53.19253714376811,58.814165578200154,11.259841850298146,81.077397402825,18.638173161918736,67.05978924697054,20.45069062856726,17.505627912894006,35.62949326248871,81.89852085497051,62.77536253806445,24.36132439326364,4.954014627072434,21.979518109471563,98.30369544949812,55.38021287593432,99.46432223268344,64.87773650843872,49.51822404660493,58.36652367794023,26.01963377742955,34.49157543128971,92.26647918900551,23.5548275822009,24.91176074464049,50.44036553010116,30.12505602056169,34.96017285957972,77.26308697404379,85.8241548506261,15.343478027347757,37.60636579127035,1.350956215741217,16.854059582362147,48.078260643170864,20.55063437253406,76.30869269461459,90.69236661227805,91.11921176365819,93.64548622489163,18.33810596995513,37.54910819131362,53.577085873064924,66.24566674352882,38.422393762692245,33.83835296837484,58.74384010343333,93.99004813073978,62.443996452750824,26.91709585791291,24.946489510398706,67.90607299242778,72.8618758395995,14.066297676096706,3.514116390518718,63.164237224369735,20.673624953858628,18.92475516604253,6.908960691662013,20.40894603919118,30.541218965173258,28.240166224597253,61.75787890923665,27.675543418876046,83.56459863029446,13.93615750924393,96.63037306166923,9.346913761629938,49.524450880901895,8.064036985502753,28.412685146707204,4.4085122452137355,4.661036785441119,3.7155089875103964,87.18698746695569,18.18989344628019,12.51754305950138,14.635748713452113,76.81013716877078,8.918122916852301,81.7435374270718,14.547610672854194,95.74393626268848,43.66633589993369,81.00106784126372,69.41565711262217,39.68650662595782,6.791449202437915,22.82640233561155,39.26855499843369,95.25851063208417,4.6693995752357775,7.498595053656542,47.81360417596608,58.288847361522066,23.951296474978346,43.989992189076254,3.097733166720229,75.30214633318384,73.99059464234146,39.56112162072966,87.55093060410434,90.59437830993477,16.900841478068273,83.64016893448543,22.171857371476346,83.68175178408272,95.01439708779526,74.21570471957716,40.52662801154019,91.97780028726746,11.029216791988706,38.305658800077445,82.61122623969885,78.91496436010557,54.24957486278748,7.295362701281427,67.61117642400922,61.559627131811446,29.22395113887706,14.837604663119786,54.90164577945672,6.755363905347645,63.52840941636499,60.199628223883394,5.1010018312590555,49.99884855239998,47.76575824463969,60.94527109505593,29.04439031273607,62.429561556739756,3.660257685775581,68.45969753222322,94.60616574883576,26.76410900154623,27.516951987366213,44.94456657524207,47.73671403865667,71.42016438784886,13.305819342081715,31.48684070942923,63.1683449370029,10.563033570578684,22.133196366106144,5.475725762716266,82.16022516780323,84.9538710306873,64.19480225536172,8.07484946462167,29.895629143454492,1.1984532086755761,71.94508516659141,76.12408205896841,18.96180907624342,29.305209696524916,3.3685220006668737,79.88794799527385,45.85534479555188,16.014751871598985,71.4879642252441,74.63351456451917,20.9342015174683,37.96170522866933,58.576548291049235,71.12609807650682,35.63235308740295,6.6090844251933785,85.38047667314264,90.15309418318795,75.62196070617897,56.7839143492359,13.48764427945831,63.821440810723495,28.76709774059809,95.53345030892977,36.845850757878615,40.600784520886066,23.987247391340972,72.65546776459628,47.82643886571813,19.054964640625684,10.967861710270899,18.366938159037705,46.35259342739298,74.48906478562813,43.08054668670969,94.97215899914613,24.648971897657578,17.70373319077214,58.967421425195276,60.91721197088024,37.172489823128686,36.253694122564625,9.997167814801012,5.140530075726446,99.4484836684959,41.00747441528644,67.71212063705961,19.446243853995327,80.4512254955282,4.957389484088493,4.5585183021675135,99.9625392819118,62.509980126296114,35.03551991650325,13.011739017985246,65.76563007369586,31.010672248780892,4.10062367557944,89.27062773971596,21.739705904272512,4.303692703667328,65.59772569215082,73.86507588264546,52.41651504087256,25.42635154223678,84.11788489252558,99.41412461076439,26.781710087826703,77.6888668660953,9.476155301722578,29.681114185810763,23.096602119452125,56.058989698581684,36.81457680145102,90.2771213174752,30.862256645281285,20.85696374809789,33.32174696745152,6.1671448687026675,99.9536853710751,25.361719956426466,86.31903484623628,48.705226443630636,24.754717408136774,33.94359462366457,62.00589341593681,69.39176248946846,17.260454758432843,21.03496360889584,67.68274848510589,84.32784915235834,19.975881368259273,62.998305477881885,62.19505420522725,42.90517569391565,81.32624620748757,74.56991841324057,84.65531253001262,71.73072573704673,37.85040217717821,11.354259014444523,3.5911769503433555,18.109715727037912,97.72333008205102,12.808390877238306,1.5281230584863303,18.70940604089023,18.786469469545175,0.45754040527978823,81.45639872258896,13.221609654216026,12.427292765903319,15.126083869143548,29.929220088269272,86.1351752479887,62.82873008308321,43.55538956755613,75.54082981816508,18.788532484049924,12.178841759207437,19.909039298671406,87.67551040156513,49.258072005503394,68.92850102835034,73.0392317975098,71.12129515461312,15.755643674112218,84.82258148902825,12.705004085731986,94.71103729444759,64.48768378327462,22.0666890423186,73.2690352616879,14.711245774042592,95.52735476271748,61.58286992453782,78.97136293089939,42.92942023019781,40.53493172211062,73.59130344528602,3.9320235731616027,73.23759426959593,51.03371252078356,51.66729832800417,74.63402548998424,6.8539056366682445,3.4932814641854715,74.49053103836569,83.90125725021747,15.856325816760474,23.578392309126606,18.595066340307387,62.871159962753566,0.4932170689597726,40.082667137960634,67.10530856389258,55.1229359248143,50.64339607672992,47.869672583684896,58.23571019046402,10.039794595450246,35.13945570427482,9.351115680218925,1.0193558219121823,90.10129072560734,14.071865216202895,11.424426635042318,84.31614525799847,89.8003975362901,36.4755936485721,82.08250641087685,90.92077333727624,85.91140757755267,44.035784703408574,78.75493573968009,80.91971191586487,42.31278459181386,98.23017104011183,39.234662943664375,81.68108541662359,39.65072201670551,41.31779382233888,8.547965825913906,20.964402551591576,47.233019963054055,22.68430751684982,41.48082067161282,5.5757805474619175,73.74506383953162,60.95143036602199,98.85934693861869,89.7621810241148,64.56155163691571,18.01048380478818,67.78984923382625,32.35645856761094,92.81428878747722,17.593711132651457,19.910186333558833,80.66269931630741,59.43164012284197,24.20881180849549,13.137711825457,51.457283628856985,55.34130808600561,40.33143342055159,55.22785394016017,72.813379676867,80.93788097069249,25.879268627862807,46.30417824322856,51.16349913231806,49.96980334436637,86.08166896970056,39.081449444962225,0.7951431111916984,18.874300498440643,66.94272090203485,99.48971626680812,87.60485777905079,75.33128929405945,82.99528166885233,53.28923761738624,95.5145952938741,61.27086039784647,48.79331439036784,5.145459000586294,42.71149954082903,98.60673627214267,21.132104144833708,7.138649132420216,1.0669192167067743,33.210389022382316,49.02898221910156,27.238621155079258,4.065435333638767,12.05670955005157,58.0616513454839,39.34345189451841,5.526242833862083,61.42279710009543,81.58452043624223,25.31695573042194,22.800046463977928,21.46375024027194,54.61540089502961,48.666688233597924,38.138417307465275,88.06642304400584,32.62855385376701,74.7604110019585,64.18202205184873,83.35359885320098,20.487892992081,60.998152086815395,21.106296944588788,47.859675563383384,54.67927117822617,40.50582654333221,22.00367730371702,95.32173311324668,44.90662581728252,1.9719830169464325,95.24498933743061,43.422332324026705,75.65504657517644,88.76569915018142,14.614645138444205,87.12796149549031,14.30652739866659,33.01050473776087,92.8811901391657,60.08456736826916,96.21912299210106,18.955684893375945,24.598461252580282,71.02642749532106,1.6517572186539153,69.13433946399252,58.80478869784645,98.98024292748238,24.699564904930394,15.287752060218839,14.752825394468383,76.43268661358084,1.1196637017612088,14.678921032808622,61.49486980842636,24.965068191660777,42.83395971788666,37.13737256293115,70.46681774779526,6.656718451714704,83.26066088518432,74.78020980283327,19.43976498532183,71.66954230191203,80.86254720867096,68.58732870880772,63.0654486532326,31.67130200610161,74.97102366739878,21.905495915081417,14.819967127914191,80.8781589251876,91.52941531718405,17.755607367790248,40.11253033877294,62.993487350472364,12.270241398966508,26.206920631182907,24.170935114893556,24.442020919046325,53.77256508127252,40.479998524140626,28.194389389213935,38.09284238334815,70.63230957474015,66.85357481809008,19.552165874763816,56.24743385352249,48.53374428701843,23.586169396399224,19.571069264449925,67.92446111287383,19.2516573332017,76.61256629779626,80.68813769845057,76.42664797231724,47.15483290937343,35.796042959476324,62.21528813061442,33.778201353465164,97.33485636728268,39.80970066196898,14.969087256394742,3.9158586772315984,14.963730903118677,96.24340780571092,29.396015340625258,9.420404509643898,67.57920574592481,10.680252958810089,12.368434472353195,12.859727047525404,70.63350110211958,79.76513060008291,35.17162918129705,82.08939580637934,35.82739042551387,18.477329367451535,44.675273437803064,64.75912279238842,37.856640589690315,48.50371170430541,57.587993255291934,64.6182965567209,22.517258423670828,30.15378577318215,50.53594806654759,9.05480603096408,38.106313104216504,11.062048715482398,0.6963456669321744,25.582361051229352,90.53543471568054,2.7833195814834677,26.830742533375794,52.81032871018135,18.911414594242494,31.692054807376714,33.09340002488579,26.015946103282506,27.569969619422242,99.55387713153041,81.95362076550879,71.57224865744925,11.391267841101637,47.66643448193152,63.85522856186926,63.76534238392571,18.38889361566489,21.287450558708887,80.17556819741739,55.847584846421704,21.735391442130393,7.772194146719347,21.433879420903633,24.55930880155506,89.28652389623592,97.86057203566236,10.260103510955776,10.750202749703853,68.39364458491154,92.74491606012153,88.19934335755288,74.61265919062956,44.802309469743626,51.30939883054183,24.86214603697724,36.210548587537815,57.60178912892536,63.43844371212851,5.6668293792823015,35.03175501962801,8.946642250341807,12.406351361778057,55.664674898392754,85.32933558189929,8.242805190588133,37.50383213911525,23.57325882475607,40.43582091519311,67.37650540534041,86.53383887132188,69.62141909512246,42.39730134304509,14.090388476436988,77.75229906569307,49.90852205060482,53.20178872076615,6.144164100329363,21.13448518455794,71.74880776682946,85.29122278421552,27.55512461272911,84.53199984407209,66.11299456235446,64.63154375922667,15.986696089816588,21.91558914544336,50.77807017427415,18.24497178624419,31.88023290192993,6.657104315706519,26.61568837487006,92.03374739138587,26.65546115953029,81.85975161151059,85.20445543571843,19.177186685991053,76.94734317589328,91.27177373789377,60.85652101654363,95.17832564049681,74.27664194156263,30.34578735689537,29.892101452938146,10.019516624937818,42.46230616525764,55.941915013625106,8.074654439251994,40.64105030989883,54.16096811666598,46.17206352576542,84.0033373286744,39.68055071367067,33.515031976456456,6.199212166204104,47.167984455891855,14.16403747753997,57.028942114925194,82.84360177735167,22.15599314116793,31.5967162239856,96.24323721201144,34.95146775034647,21.697865275013218,43.06309137743646,68.37055396893089,90.48888802071897,48.300052797611706,98.38475912059099,4.674877035784286,18.636604607538978,33.52680744676897,56.06828641210316,19.208532342059147,30.56842346842632,14.637226732445852,15.11759741088663,89.49803251426087,33.73448390724491,36.06157929856367,64.21796636738803,81.56446034276823,54.117420725205974,53.49375144691758,6.085405563195778,29.40950625840516,97.54957609475308,29.36075082126125,8.114827605281205,27.533520116006006,55.72182757032266,14.947743852894247,55.0155678373884,80.75694452160253,22.911174009869285,98.46499886858656,98.65705259536236,43.39287335276707,70.10208256451517,73.4298972583257,79.06686502056476,31.030275176988365,44.36241849301767,32.18630281666234,65.18643010416507,39.96679684620539,44.02711646297163,80.44180006469739,30.404794910904076,29.284498527229484,16.605285154801553,89.12788180566204,18.645813291950574,73.04033314220766,3.7853886314508256,95.59512925166877,29.32719571509219,9.268338016809153,19.81315297478392,31.705521591952103,40.81958422476599,24.122688686724768,20.972386675981415,40.00751148626714,47.242062711972025,2.0355675555612462,6.924884399643627,65.19942220674761,24.44238509540535,95.60653387955725,90.42495191059236,18.533754683530834,47.042921764454185,72.2080717777994,61.455790503709096,57.73065302195551,66.34743227531301,26.730072785219306,25.42309157095197,13.238621692463026,20.209690641857637,11.838797353176966,49.60445936776651,76.02535869918074,23.33994925532801,54.386062186393744,54.02514025360219,70.29853700375274,16.99007953341973,29.02497483844415,11.257223644289837,42.725481653511025,28.361230595364304,71.48915264109407,48.680367296220695,94.23738315839773,68.73159648917775,13.663434263278173,86.69691301118583,79.01070995111044,11.122883185930855,42.98476339110636,36.77588705549866,46.070421057443035,90.25260693008885,70.56712226275972,30.720307301028637,29.56208752321632,78.2218275336783,63.71991571475662,13.107602140789865,67.14606898354316,71.79978258658798,66.39450486625346,84.17759378741486,79.45315929039558,18.214689756767623,26.38486588012967,35.22570946573489,67.27444087008608,20.02849531999682,48.76408002934143,55.471451212093235,23.144523433183274,58.11405595632808,12.637588403692156,19.84162265380054,7.015956316474547,36.28177537911985,47.05434177010407,7.879757505615426,2.6089671276448456,51.9194537872481,16.139240902186604,48.12522651182639,92.6266302726187,9.173657849605254,37.447624517449064,23.36744992412679,39.67975321799395,90.25417057698319,64.50472744595676,80.27716236687445,95.74915494691224,51.5946204131354,56.260514999256,52.57362637933704,46.11884805583662,39.80143082200181,79.16450309924328,48.39144917728889,89.47989706891876,56.525033141090084,48.60260106403517,61.68844177294709,56.036505312495336,30.0086731389976,61.87028515079637,35.523966910695506,61.903815823338974,99.71349148155205,3.561631758086148,0.7109669888561543,61.25830755179569,1.0099164397161298,44.5558350107628,47.39662844697355,67.3676506940543,32.69447737246195,56.99824491032326,41.161648887485505,99.30089991543278,94.84352247956072,81.26094041402904,77.07033721193133,28.169157463325522,30.66990098077168,54.789931104590416,8.004848572243272,53.15139777928957,11.758554784048393,70.90766666685234,13.01191984827177,68.058413374295,48.264550772354006,85.83344191272927,33.33385581145003,85.02476182346737,19.27294898690557,85.51494211508643,48.43835851368713,33.849639568066856,27.365282512756504,57.714827406952686,76.71820997461202,23.25704782079655,9.659734521678697,14.671706033670507,63.1566859444422,96.79564363090535,91.33239828657703,7.969468016851899,51.96109929578917,15.002173315454847,77.74514519194923,74.85348283160224,58.39873735059429,13.59105820586568,21.722250563994294,42.63329829294536,85.08599641949004,0.7046981404757569,18.198213076673397,83.82081210053519,78.12762796270742,1.6111158708459028,67.13926926680315,70.61993534573274,40.12879628922049,30.078609652681866,86.32819138602052,99.09516632709783,45.054521499928946,70.81093355058657,84.58848808235862,15.33748229377193,7.582231254050398,29.67216995976676,67.32894182951316,37.54991757856872,82.06921063599397,92.79947084466485,88.62260801789225,0.8284950229217158,31.219599864423586,49.04126676268381,89.8665088490581,82.43668033433015,39.94719096580671,33.346259317715486,75.49348173290808,0.49607219552210147,49.052006024609064,20.204535634483456,25.66088836875685,98.72696054983291,41.65295735940673,94.57694055744335,72.85190908753565,7.896850900733932,36.98583284585496,35.02854231567741,48.35400473249197,67.28674135737353,68.78896565237555,87.97349991272327,76.6403818133995,27.833549917076184,17.97267351335191,91.87715095663857,14.845452676436944,61.02550838138545,47.678082663071834,2.4972205445585316,94.88653363285728,16.19553460091321,55.13140985515821,95.0048536903928,17.277591335020247,67.66662609593745,41.55125071048039,90.06467514796904,44.28437440181517,91.03585325665952,34.86089003234021,73.64347834059419,53.454295576667754,80.20706506596026,40.49888595244694,83.62340437597389,42.0898610845945,5.1294716947822945,10.72681897621891,51.743455476698195,29.18941410614446,98.52965720413953,2.0557764340922158,3.585885606796968,10.000873248964947,62.5537669469382,17.64090218239077,72.61858122534781,97.50353368114897,56.65329098570781,49.294819516304585,78.99642401145152,87.26569350116893,75.05545632103163,31.05492357799133,12.875957779897007,68.88680007127051,77.1669957424421,87.8989083998128,25.23086940397873,42.71118104171957,17.39092469570551,18.568470820775772,63.71886859765882,94.6406579373424,96.51057404963439,78.10056428402436,42.55691805332654,73.75587558799295,33.156952200808746,49.448391715326814,25.061128527012855,46.42558423120939,66.75537773408018,16.07100348942425,82.78400655145917,43.06325792557367,57.619904337629244,3.471395991761561,44.17069012993413,31.362816655922032,26.908975490555274,23.096583466481036,70.89332580613915,87.59256883278238,11.084551143523502,71.05279723813483,68.80693570296154,90.97371303162072,97.42793549771699,36.67740648072416,47.33138384862059,48.612326961750405,80.0791993847351,58.77025864672895,73.30773967800364,84.05926555046082,52.52239691776155,71.14295329560578,49.79096183822159,3.281844757322072,96.84046027099701,46.740129864772115,45.16247871839194,85.86801619111569,15.306455446698997,33.877612479024485,58.72191578588114,96.83932443318447,61.0099194570792,1.5975831959812337,78.7422492930938,69.02997051655001,75.90438111806293,67.75167814172634,31.13866917660929,48.34636152451905,96.28792959858984,6.048171023872795,73.83486835821354,30.926693390546134,37.67051997008226,77.45210647509117,62.99661472865451,9.792600532323426,83.99737229094757,37.97904522895982,26.269813672092333,61.9528049666654,1.9128159800592903,32.218530441222114,48.79428915853886,25.601802305361964,95.27819044550348,74.7446622212405,7.908392258882535,87.4595428521246,84.66913790709462,6.973208878245685,53.590044998736886,94.09196373451175,2.1152219333149147,17.307227872808497,90.10050632501724,82.61490518225959,71.1255215623138,8.98863336009601,99.22339845855159,27.784984473310793,66.54694858338553,98.71218223796063,65.93867725054771,40.18853618211779,81.63762135533658,34.292244651494386,28.41537339309128,5.592006014818929,21.92082197277212,69.48142788811738,59.992427545462846,43.135752399383065,47.445720905946345,66.21323423620824,32.549723723351356,18.49617400761835,41.02600533773254,89.34479029096636,71.48384717403437,51.169836271301584,30.47040622763314,72.64713033034869,2.492746611461516,33.10171406081673,74.97805999607998,28.537635621953783,22.861175230098585,39.217030257805376,57.47163857651508,51.52507549251808,22.765538572763766,71.14912929917415,2.973542229488879,60.17275259848154,35.075362638021744,13.027042715267223,90.24011242381481,25.968433535344857,88.73872191585595,45.533118205017765,35.06760943969485,3.7601144065545045,67.16689700793587,67.4507826873179,16.700179621548074,41.058483018820446,9.269857518856039,66.24694413133582,15.047702528029273,79.57441209926833,10.754764226354553,83.61178445339121,51.029614343274986,36.08985786624491,73.62648718621323,69.2038236802243,68.51549177335079,85.7447174030681,82.0733822296553,10.833210544296579,78.58589640681679,20.69509288664345,33.007469601918594,45.675979096420235,41.0004355720746,4.996962286995488,97.56346488734134,47.892645232305995,78.36051396910801,36.011756964307885,34.708934269587324,59.53305510387168,62.58771151272544,49.31188284983033,79.50849472691536,64.81384889217381,95.90901290572617,76.048510591336,46.11326234747484,76.6725630706209,15.25743216269866,84.54508884304701,1.3205586432597505,94.79877689520218,43.76946813357531,13.630925664168803,55.76476409498663,31.664540037428324,93.64718229682546,55.787022063544796,44.2098498591422,44.56751064889429,27.61333642551349,29.474820538824552,35.10573982720603,81.73505509062491,97.91172673522837,12.485959776824263,61.71561070070632,46.977068760297904,10.965702082234884,21.843460036547803,64.02278261705536,91.75481640133644,61.431861327609816,80.33468444377395,2.8188048472516436,17.574476882156244,3.5640351111778323,70.35026921449688,19.90718680780914,50.37132563978166,80.17393007463814,46.22241797063008,2.5208496450508044,59.73921967504094,66.81065212108732,91.9888110347111,1.550201893249581,67.59950108996348,45.34006666772823,51.502766475426654,61.202723920829825,23.412136245472126,48.34103079382239,86.14159657634909,76.81951135434758,73.48907576202515,83.5477485513375,15.529154572517035,96.2787631272162,94.61383160341504,16.895247788265277,36.630744339110365,28.56471628321131,84.57338913725374,98.36511359417892,59.38828751293851,1.092939338147203,86.24453309462756,46.1458224986377,28.329005944067553,98.98532902241257,84.3866405536555,65.97561865399238,88.03128800763434,32.90144967695543,60.15828550238766,3.5249567785145985,33.50702486679458,29.054523088707917,26.176194748988323,56.91162035071267,65.84423152424954,52.72370525693836,31.482776366008668,35.13631337459617,70.50256947613344,97.5963760587042,47.75890980694064,79.09721626996141,66.43284225965493,12.619109480346724,69.3593372312319,97.74699559633385,85.7570241736715,79.01219273267135,15.168534819799817,77.9508560577503,15.114417041168304,93.45194196065925,15.319922175114176,60.845626594004266,63.95143172542345,83.19710432984228,27.046788953546464,3.8154195010182357,7.800657450237214,69.98509961196751,4.552485250020533,12.612450043684941,17.283131499259007,83.77987132616947,45.841934678804186,37.07305961639784,49.25436384709197,86.02222514831782,88.90851940023846,88.73431009465914,57.69479688564753,82.1134987761604,63.94971322702203,63.59835238180099,91.71181927592212,13.05690275650322,55.355621667928375,29.510970895740474,37.171891626823175,45.376390383226195,64.79756665238034,25.022154300804132,92.50692686831405,93.46011216124178,75.44362810495437,38.27629916543237,71.25912155558913,49.61917178710146,76.13066554015808,62.52422475001937,34.57243488519662,42.98011917216199,10.129628434108495,28.256339339161517,9.878299045000016,53.97018856918545,79.7123125972468,18.37827410098051,15.087986279635246,21.283035816684716,88.83233813547069,78.04430756671627,39.27190744245381,95.99928246312112,48.16079098080527,16.01179194946508,32.97866853725171,79.8959970630021,63.37917358713801,2.1510827909177577,47.34410668359763,75.65093400294025,95.66102774747101,43.49896635381033,12.93481670358686,88.9935874735767,92.38950715215347,69.45786173164912,81.67358559288877,87.28266192522214,64.99792080097907,95.03808461063001,25.277091329452873,29.82381427962907,36.31854709964594,9.58691554587766,97.85123170532282,13.48352946498811,0.700491461632291,95.42970979856084,23.41444176649817,85.15526968785674,18.761790433077806,26.89543802036448,66.02609758942529,66.98523897458864,93.95517502868933,1.756322140755684,34.49275736588747,25.63883228504945,14.088054929322924,6.440871157475514,5.549518396780506,24.75737477594301,89.7639664986927,39.75048189734625,17.400352909653517,32.08260707810419,33.998146819116414,87.48490005959911,32.60772121032638,44.70592589780639,94.50954364869264,44.37420704718773,33.08523759289874,17.159805979649832,64.39993699780025,29.212839310771145,55.233907999230055,5.557615162124407,43.819104534204335,38.578464905041486,94.41290308492547,64.82749490126956,23.4773416408685,54.80805153968669,2.465812871325368,35.39318621013017,53.81706271756488,27.789392010987257,29.80826311762752,78.3369342094898,46.71032751395307,68.2462842293803,63.2909849875691,13.37566108063405,1.2313068601810695,23.583160204376675,46.8201265876036,8.162771794348146,95.14083953834988,45.44128375074674,46.158316357129024,14.333092263401259,98.20538185380046,9.56099221223008,39.9578775587623,83.43535319408255,14.282185138723891,88.57304964396006,94.91090976314293,51.83703757251222,89.8145303571437,60.20761817322787,36.190986837871776,92.48668389004311,57.73899731500759,52.702620504402496,68.4742702070027,16.835712718390294,16.0289997932756,35.78259143844254,81.92627282880804,44.60976952994356,3.693960368970106,9.773014564038363,17.874941741723315,75.41029456664397,77.04904389385116,87.15560836234937,60.294254139435985,79.90641583524203,32.474266087847546,59.43562978924953,11.900211329143751,16.907724304117167,34.53069062787596,89.59609555352687,27.77235480434106,28.116928421952537,34.16859019962494,73.46632100679025,47.40434612486941,92.95814012034982,71.00913804341637,69.20452536963857,17.041352076268335,71.4547454674269,79.15960729206382,61.622573434405616,33.55302170328388,63.0069697197406,0.7328626533602667,90.42848854234944,72.03839836320749,44.8692882118526,8.528462772658429,23.797062277735613,34.73294483742444,39.68506916776434,61.30775941824715,94.4812750185729,20.340384495511323,17.19102874857208,43.131175285352754,15.155216360293334,40.23420394568903,17.09070705368777,60.932041551791706,78.80753461458063,41.597922616413875,63.498831061887806,6.5948722244688724,85.81454713160453,55.07043688318719,76.88108870469446,26.398720914295716,98.62470524709302,49.69362140803888,17.697227893915755,48.50224795386152,82.83203549847515,60.76964393728647,70.45554173079779,19.21678335950827,33.03908155884685,4.3325752402532896,10.511817395506473,17.766367555564,7.100253959785108,38.35188514485299,22.09074435876478,8.609886711497927,44.41446222346015,79.56190618556896,20.63858159710269,72.18019791497375,80.99542997072376,77.32525327767723,58.730497297778406,8.389105006832033,31.55511227298439,97.93002167184981,96.0051091443765,19.61287674205836,11.526206389366433,21.55184019666443,15.407807772289972,20.570201729358363,87.00833914634714,23.308205195787934,84.07213654517537,92.61300197484363,65.18171590086779,96.47350502578432,42.2695162555885,59.658463312870026,39.20874502973655,9.780016667298753,4.4355276830195685,16.340589644979666,78.94959035118102,36.6635664170245,7.1314629307898,58.08342621312952,6.124694230919781,1.1561855417172362,57.570443318445406,80.62346781862327,57.742322240181785,26.17648711013527,67.97951081423258,61.98199945176967,64.65753991284686,25.88736244213452,77.34820391362304,83.04493151161634,26.25491401674732,27.79308732371114,88.58685535600453,79.06454396306025,96.08171734079559,68.21495306093621,57.89993696322866,28.135708694850926,28.17101537814999,57.95331464812199,48.9404449332152,20.017506463381906,68.66299341494553,15.58366559979355,46.86721260451796,46.17957420510791,73.30305104973563,1.2328740228986557,50.59934330382616,74.5811422877495,57.14549854743647,81.70378862122203,41.808305391815814,69.42965410658906,13.847896395414072,39.89545613690697,59.33154044722594,91.58720877216652,37.87289742292004,64.58317025640564,46.13005092709146,88.96606752264695,4.046165204667885,31.18703096368115,62.23378616914772,1.78852238153272,98.55036055378989,86.47609008739452,30.750043889412904,17.747283732148745,75.5656290768544,23.633379741984818,1.315552378167617,91.70390052315125,96.94673077768321,46.65087795842182,13.472106155993735,28.997069789962925,59.13265449457881,12.688060433655401,36.14535883166179,65.9711419696655,96.23814592499458,76.77788047475649,44.57643007959615,45.50990509359689,57.295784884930356,3.640071460666161,59.57451123780593,92.35760169566896,42.35605134983099,52.889045678740686,35.28499875138711,3.8940578467341447,63.730342285362326,51.1869062804783,63.7740491435013,53.54271033095753,41.810525600459044,73.05898980791014,19.345428797123255,94.84116599044178,98.46760043946165,35.59976842586961,89.29349173375958,23.588633223155153,18.391116400415974,22.689280196611385,26.889831110973105,23.021737401788545,41.71511974885579,33.68110914488997,98.99126161549587,81.68057940666037,1.4073822427541405,70.91712472559539,50.280676331268396,93.73639801066308,36.556084755165784,0.5532847633052507,9.0467878006538,74.38776153574614,44.310023645374095,38.84066289311534,84.41820630921168,81.36760272195482,88.8023222752936,0.8076260938413626,4.252903619112159,74.10160688401498,20.95905307487127,7.5209431685025585,58.13596568115798,57.47509845458131,74.09012185433144,65.0910369173342,79.59424327852103,85.29829689773155,31.411735439215104,2.65143920037495,35.29223548191851,67.68798214794455,33.660513907680226,67.0053058454889,75.1781948144281,17.595641697544107,58.529892141887586,29.270838748873807,26.366946209570198,93.58688738330352,56.58539105592322,68.34878710194184,36.48368580769819,57.550376099860934,69.2250406859063,97.31218408576193,44.358021542598976,2.694809321519387,16.705752675680262,43.09984107059558,71.6060333136403,20.813258340203323,43.95067916703778,91.2748895357789,41.040261110277655,36.89774877147084,34.301189863748526,79.05630782780332,6.393183588916507,4.638020866632919,11.186433881183067,73.31436026794688,44.73239359321228,36.11656190960635,15.555077364152414,63.86455515289804,94.00367720181309,94.76014150326547,49.127857583797066,35.51013635971759,71.17672306744467,93.1678947695597,51.72775750792948,40.96734736409115,78.09768052729498,20.63197015155136,6.834058168807422,61.813546290636744,42.17699690819452,74.61653145300808,23.37153858427181,98.59817879431685,73.7756477023925,56.47010893411267,88.65861214350413,23.401910304697836,96.31933687519802,93.50168487626483,52.88309701468283,64.45814058248612,72.90815909831912,70.77670738906886,72.51716776263109,90.69485818854734,2.7308445969001505,68.31510180615207,26.925754998313444,28.37509288544672,93.22845639008254,23.336774162702454,64.79452038690542,39.55485802949684,0.07054025845690814,71.35372577429547,36.67473878639035,95.77576075187933,59.8873449935483,33.97718425500897,15.29313195415336,16.72369293912349,23.041193992509733,51.7247809726163,22.396681199877744,86.27576046283714,85.64865951044133,34.04286540147986,29.612551969833444,53.18673781986961,24.92544281172002,73.25032880442049,74.97981522921476,62.741390537521426,6.012533223081851,70.52930459007455,20.140905458224935,48.55179793831521,98.51290229462299,84.3195167830572,6.993476600849002,27.210538201241373,67.07189933377279,2.6767395106210956,2.3511884771134195,28.292345963291275,82.68932521095564,14.590884061789877,38.86281446047983,81.07320962264944,91.67933463673819,58.082853542360745,56.13331185859393,10.402430390852068,53.263493291698715,77.46623437718762,36.89793456803889,7.460598130573059,27.884795241744087,4.5059837182968465,25.93380595011866,81.8844253172672,42.574919670609546,93.9050717004244,7.2417255114953,63.227195524566135,28.16262267222822,37.16855816441077,51.78714355742223,74.17711255028264,7.122456077445161,93.70967572564766,45.12878647659363,25.05760595962666,96.31012863206776,89.27638043189664,40.251993078359895,9.452933095670058,9.523315500365314,76.37221033736681,23.830782625403035,54.365150750793575,47.64028113780957,76.92557415280803,45.02640253400128,89.73771466502988,92.24838195375605,80.37310943843147,68.83365989838707,38.74663432798688,90.81264508514653,40.36774755041449,14.253906524518356,65.49442112014897,6.259037467654438,45.99781894858354,10.109787221327926,63.86045960541158,59.82088483410751,58.41366936290848,61.2948475992162,20.555063062657176,92.81314476170756,44.43787028050181,9.365982124257044,60.99523479560239,31.991787713886634,96.707579722225,14.403258271313124,48.38208044054593,95.0847381629398,95.0561725994436,50.31140957612722,96.36706697866134,0.6445025217104106,96.62174219730274,26.00018280695674,53.919829168796404,31.314847433165294,62.36267476703876,80.91890769067047,25.07723775297268,87.03074507214356,17.553741103166477,46.8295557791033,6.272587008824848,50.4373794779348,34.98461919689656,76.28876232418794,42.68674849644436,20.08053747527223,39.90772787086429,88.58454214421441,78.28746378372179,81.28104575741108,36.6848188973614,79.59389127392306,70.547964986243,62.38312802065441,94.99223227068786,82.88807113035844,0.3241040352267466,23.61107717395653,92.27868249314058,93.16184871336208,38.075295901796636,40.67505517490074,55.741108089655924,95.49777605542269,90.56670585000805,60.82432769888603,1.8906249342462766,79.78171570152878,16.74215053635081,78.83695417613306,63.57957976721191,10.313795144388383,7.359653075078176,12.496281359099715,58.440959380094014,96.69900267596431,21.155551952299277,34.469496799515696,76.80704236452151,99.28598756363459,11.14959991586575,40.9594053327354,41.455029449014745,51.47597753425367,30.208290093172984,3.8776343020656023,48.275294167784665,82.77232042406007,1.593015033591183,68.31955060619931,98.98812033753019,84.0357508391575,89.62180942852999,75.41508564571382,66.36584535061998,97.95887296025042,53.50587697659086,57.080333310246566,82.05077986813708,92.36518543178119,2.9833947686837337,14.235631494158651,65.7261216620972,67.5396035218912,60.954433295627155,11.196834075776085,42.26220760828716,15.01392174739885,54.28744956865089,27.659770817559938,26.378149852680533,28.19590782094278,50.31606469035257,98.38844608208151,29.432780018269433,67.66652093847061,97.44608204128423,4.166314552447792,62.216975877056804,4.812115244795045,94.9319827297521,68.01343743081219,68.95624408119116,77.48203908231838,69.76295082486644,63.0998449720743,61.7358778258851,86.51714710916826,48.29566287852337,62.733644874308716,69.21872268857804,53.75613052902667,38.567678747841725,41.35660514262407,4.768204328791392,14.557078086137887,76.80209049667546,30.825192268904544,85.6241324270151,32.88407415804807,65.76022866415467,77.12240160581555,49.22443106187484,38.931635509926075,19.682888775459904,28.063199952717877,95.40834437926654,29.50142660737354,57.058276814205186,88.94717093818555,73.01892771267867,45.119301286386325,59.89979512984356,70.09827675121265,81.97851589383879,19.1748406524342,2.9731574708171893,64.78582121261512,0.4085207306189109,65.86599823913765,37.7236119244618,46.6449904354189,94.20707608474534,52.72009684916989,34.99432974313271,49.52186875205462,44.80779779142654,51.17091717329225,48.17034944386352,84.53517638332727,60.57434013256597,53.47258991129428,61.591604725923645,23.031595452711386,30.729675243054434,40.93088448486839,0.6668284518125844,78.610956380645,67.3100835021798,0.8850498495410641,93.94049413755103,61.284986370968916,58.87361546235941,61.19153998436945,24.497369999002316,14.803369946426004,75.34392707087346,63.91900837614908,38.03506072903389,63.00374488884606,37.6716280975632,58.59219709457235,89.75074748948771,4.573676279764105,3.4133449575549535,11.981526302175027,61.43450100869655,68.95249812669515,10.648494644445016,93.94854217336814,94.40247595305618,94.32639775945293,60.29680518571984,78.92488132031328,5.919244759843378,59.48301381939621,94.26816834186795,49.726226247745345,38.02504676662131,68.74995615154849,84.8850613907989,39.00802867937222,12.170077504740851,93.44028719147202,70.73260504415936,34.39713579782472,63.51437948039735,86.42841136162347,91.29927077512956,78.93499643838999,51.939925938037504,74.45893426957986,43.88228398454832,3.2761806727758747,34.70670785064368,60.90415154307871,93.60365581531394,55.79813589653993,59.813310206949744,24.868054256995407,77.93468200737331,89.80332499028599,80.01065482473538,66.29329410335842,51.177642888772766,61.236789938368865,3.0601497384924015,30.96251520505261,98.29979769624,16.590123148313662,64.20429385639241,1.4502373247121447,53.07643544843174,6.349998247759848,11.517368700445818,95.06013061927871,92.69606173166935,66.94959558705943,18.604973293724957,55.143979873440664,1.8799272376440967,98.21715648232416,30.736976783995296,33.50296296991203,98.3674923405586,67.54007605900321,47.611145258027484,80.33739818465129,40.852152084153936,0.3614665584310339,91.5858290999255,61.784691465962936,58.295089393446695,66.85066199321122,79.31590783565035,78.46325229222589,9.463168119398146,6.310967884377483,6.653829351592355,21.04424211818334,45.68031783767701,45.640953064705315,53.50211361609789,56.101467012787666,89.20043785393283,68.86994242888406,77.69412712017827,65.65331558802447,86.959139324542,85.05411709005966,57.88813113311323,9.656076913426602,21.077133865432874,45.89794315123318,84.36880666422613,92.70711063139831,57.45141866640606,25.31708838214194,26.333956191967633,80.30339589109707,81.44698475399338,69.5784156861312,11.3913154869548,67.39175181113914,32.16682494625863,80.91447353554835,29.698068401236878,29.748729071229143,64.85837755618351,59.093781087453,27.47339383196894,51.65906610224664,5.250582589736896,6.9639632787781185,23.794562097771255,72.97678359407726,29.95101582781071,63.27478602359433,90.59164011720372,93.79958449706433,56.68065630313565,67.5535546910469,37.38126864621595,40.61889317392463,37.613229307006925,82.3226068044878,92.37338215957821,71.20081525188046,26.961605471365,6.557392537011597,57.2606146878872,10.823748069973027,75.12607395710556,41.42301784665855,31.966414117132846,19.35733371516498,9.395745798069498,81.79650101952632,97.39057976764481,60.102206664567426,8.825918774646023,23.1136639895986,99.58057563333591,52.995633197801226,3.985862405645646,37.3080350696373,8.484927362961514,96.28606161953945,42.535079463260914,65.01991669713126,35.50195204643997,27.43936725634223,92.51252360527442,57.49522746662164,92.5462798225326,69.7280288441822,58.966843044382536,2.863328413280375,70.25562393282128,75.74737371735932,80.0224953119422,26.017685579541393,54.472240332930234,14.081037903716986,56.74424165952202,56.42483679316119,27.781316627740438,1.7463549566603787,77.5988440131936,23.977798908316707,83.56265652701241,26.713054440902916,8.847279305680011,37.57887600468841,53.4171805938348,15.0621534207122,15.45953713595203,22.982884379081803,5.3122563227238295,54.30498293486289,98.12666102858628,63.00704288225607,44.11121055492219,72.32584808306014,70.12705635961397,44.38754902643557,87.21948098984905,0.5823053322807303,63.88754868709412,67.17373702521293,2.0104660440818933,47.16146223488327,40.002948430349704,81.24764082556688,73.03878055009652,66.99449907739528,64.44410041362337,75.47000692707499,25.802887812016607,6.867117597500327,68.311742136907,86.13098655359344,79.19062819837728,26.185941067828942,97.43933234134609,23.64168631039425,74.62023348646727,30.778849159477772,28.905032319774314,34.05495185095878,57.108624063475446,15.388268035449993,11.921803988120939,47.62600605225876,48.22488961788831,67.12397747759542,27.7732014524388,66.47020009521668,91.72231484302665,54.33854089898571,12.538905787172471,51.75052190200663,19.982334786784882,87.5769260881903,51.06124217341965,72.92950044226471,82.98902102608528,65.03293182745928,69.17678289809905,96.71557954347453,21.06457908805156,65.5101118851259,77.94787493390301,72.90296323556535,43.51687690080913,21.63520274960944,69.26083583419273,51.666105852965735,58.77040022570128,74.03987427032729,16.30453703959869,91.4714988973592,53.22657301786779,34.17918536966894,66.727285064657,97.82112871511865,56.824957069501636,8.715836777437591,25.54611257499634,64.52032250111363,30.053601658075202,57.33546296302625,51.672873545355976,65.92810180946098,27.07423704049785,76.12176072850292,50.23748693794934,32.53141057454074,85.78888045737915,19.640362394537302,85.73069749109858,17.23516838992535,93.1049427697648,92.20706543315694,80.40482889602319,2.3393690309108206,61.78449126966316,22.070532340489677,37.19694990415894,7.438798439994033,56.1471906383814,85.12145173364246,65.8667937529175,4.909627723139842,5.100663148850049,22.575259591252838,35.45761116498484,60.54756485433542,40.56122260737423,73.74908871247715,91.70768325331673,60.87849136281138,76.9510380182261,39.843523133387734,67.62301435124456,15.6989186189199,2.125467052854413,55.03877256866767,76.59108315274452,63.66935893123235,53.54526374304864,4.0715882132074,22.956608055904894,34.03672143903918,38.561994424042545,49.75831935759316,56.76047867380811,87.7003931333267,98.00193121138369,75.26475180854547,80.90906863449652,87.7993508042381,77.30500029584074,29.717761393020748,96.81178286133564,4.9423952546405525,53.885474456098294,16.319846875687837,31.889438598128407,12.789400265724883,31.28651399264476,61.847536976700276,21.65691488145296,96.56702126877892,64.4359783522432,69.11440163910423,58.35336082619189,73.26011868285025,36.69947695560727,22.38561239067384,8.865964226814826,46.49666462150381,13.525188984009862,52.44032307881278],"y":[22.134539359481863,7.258181734894076,34.583316326051005,79.10814576595939,34.29580514564778,94.02157166750538,15.894311231951496,51.33675970697832,18.921164222773612,5.800180322865723,4.120188504703548,14.386323752219365,50.216326830439506,73.059564791912,33.25332662706233,47.23388312464958,52.15560136794345,66.84261163426306,79.84150978853334,64.19604356053652,9.79155063173911,3.0658683125032726,75.86371797772411,14.416976548603799,46.62143490780997,5.378597488364722,89.56233096773775,83.04717403778265,87.60199659284488,99.02647982490933,59.901498796564525,12.47133204870785,65.80700519086633,91.26611398424019,54.298042104468756,7.813732303915655,31.417589344419618,65.20365872759875,36.70126110983176,95.80565476707504,69.29511991598368,25.04675615872818,84.0341959330133,73.74397458133315,24.05381955984469,46.919378927493824,67.6807114370733,40.66770470211096,29.833371952980126,83.28191133416746,97.13465941541864,80.78611028727703,33.678665041101674,25.530809440839754,72.25131578782698,51.26499479871555,28.54314914763535,75.21853868176503,11.604798253253056,72.3412272236001,96.54978537717109,74.70026211151256,32.311494700298084,37.94752197700561,20.145247125823985,52.950837458465,89.47840164096777,82.7316022509565,10.713318578809716,58.10510562276302,14.53577516528325,4.6474639828582465,2.444197790227287,49.85000440575001,5.2937512365590305,55.24980409260808,80.76690157711681,28.548527712074232,94.49077770706864,43.16457406520713,39.61308048357522,4.323874948948547,75.03423342050644,80.36159462927172,71.2568503209839,45.426226857574214,65.24635166907947,27.31967832024973,98.08978417485969,8.656285325887335,62.72470108996062,92.85415948324372,22.84291059975787,55.10234773673851,1.926460623787396,13.264032731047992,59.72603697298917,40.91451738330374,19.16211972252451,65.85321714114204,7.684479128774157,17.521891540800727,68.072216182375,29.40247429258743,18.527628242811257,34.88773492422608,64.54223565791347,53.79862963504327,65.04023147174887,67.12017836990533,81.19502895120567,96.360956767171,55.78211592102665,27.401619881938377,51.69384832679428,96.01624847818772,65.43102230356769,27.34204117571608,39.168703409030655,64.0218556789204,28.245036768842002,52.25156487255427,98.90837496400773,97.76711588517655,74.07859609254038,73.60398672454495,75.02393499775457,40.43526707770013,92.27843953485035,29.785887013991342,88.11556070435834,48.272738218373114,83.61558080386669,80.43395773962632,82.09545389821933,7.220885962711865,64.69446795396215,17.999969401489423,37.648793439183535,39.54489554246504,25.594043271281564,69.80881991827876,80.63481402643207,8.20330412059327,13.412735677330556,66.57698118992168,27.18109739160921,75.27644612178723,23.415644034265025,67.06541508115093,62.88885280502422,34.70089147981661,10.52338428599593,53.64649730393328,64.39396913940053,44.62739448258637,59.10074393599152,33.740346098863874,39.001161409921245,35.70666704399505,80.60090818608462,55.93012022052844,50.3092937020293,5.284979617272601,92.33279159905999,8.762616891246344,28.07749915271669,94.90928018051504,66.79026083795314,50.26481992196291,69.38880215156948,55.069085952586775,20.338886775934096,73.44698261089596,51.51266646003813,86.6103982699448,58.02281913335939,63.87391954900606,14.104989722376027,84.98766777728113,13.123055516488524,61.193233168740015,41.16804270827903,98.06424997641203,57.409550127216114,17.72418469617011,51.303590274154566,94.6978816379699,47.414221418386845,1.3502698794533474,7.87737628374674,60.14106693378225,30.63145867865915,35.585171703660556,26.688813969277525,31.616082967585367,79.04522580848126,88.45508120342475,90.84936397957145,93.38217470084217,41.09889069002601,27.756933681192052,82.91642871717787,25.93396984538948,45.04749187613582,27.205404134563437,16.345678813192123,28.565680513447145,74.49606113638912,66.00302603898832,92.45641824016117,84.66816035459665,22.637701164292736,94.42599460591137,63.296908416306344,34.33754429553102,24.598265298744014,54.69386945335381,16.52867714861942,70.18241120155986,67.77629495343099,83.90915021678758,24.799863909778175,40.97852563024333,87.52792490310314,68.26077951734445,86.96415006308277,10.464788112599733,53.27564874673212,38.25473869677827,3.94460599393357,6.157390926724371,21.578502606650186,61.23677771874198,43.47339423980189,17.29848074509518,22.877968146957027,54.33100630481138,30.608315094143745,85.1154628262226,50.633455356170145,67.97929890396915,95.37360506663084,86.01498161764101,75.33629810693078,79.94221101538776,7.651207540073401,95.03697356235728,4.804696678776366,42.1838168251447,39.60519808700379,45.81738184472551,12.254207174375175,76.9416861050451,13.120605057475398,25.521889942697275,55.338573699955276,3.093009836056071,44.21101036398392,7.458179216697802,26.577031805100148,55.43692788715126,75.33608821085693,78.85120526784584,94.77251855803371,38.531124558638886,72.3833386766372,61.95610733602462,10.669817646918823,6.88158981114425,15.344217828727135,46.982663562979965,73.66726102764122,61.140878823194825,68.2189500160515,60.3178356328752,70.3025674432182,33.60925342930711,80.71992222229373,19.802911200463203,57.76296352563769,27.461772271544604,65.35288990536475,48.37630702135992,21.02709642415742,86.96079287866925,54.22403017750479,28.104350945134946,96.79619116697275,54.76186841549149,7.628544109292424,1.6512187294618674,30.16759608167091,50.88611794470494,5.275693534853076,34.973550003008924,18.748552883960567,23.66646965991973,7.964809206022972,41.602340613620626,6.4962305308895685,20.368302106771353,44.63951132854951,70.69674684481025,19.292908873401558,19.594075790295907,51.81696843498537,26.870277079719052,14.777991120806588,78.31118509427759,47.81308340334283,23.56468876996042,32.228622098606465,15.306044404001717,15.119180928626797,59.97765121004368,19.85515362042729,29.859858859565836,90.41308881336172,10.825869425358404,17.94499866918985,30.706392598068845,7.732737562483205,36.95851936401443,67.50905802189449,49.33418731253608,11.267193978489864,7.553761862970465,58.85657381205396,40.57039939897855,20.720603115133486,45.52303870111878,71.02039290738013,86.24862586593063,43.198941617371446,42.924480958442324,71.90789220509808,83.01416423848038,69.21490451192777,44.07107747793494,14.641275874551507,42.49579100547034,84.22320262808721,86.69617269317979,2.5218029814229492,64.69914637205541,45.77336574526332,44.35437200364027,20.838709493850395,20.504001202529444,4.498442618535026,65.17133156619732,21.13083602614292,1.9594091919539425,48.53799816815375,96.98228801602366,22.193127243393928,61.956457825521106,24.550643231418267,57.29337490211529,48.475082554794504,79.19757923872787,1.8351566018419474,39.3212428161987,82.5989751220566,18.418603786575527,28.930051024211025,25.226190095154756,72.81081250817275,22.19562234148018,27.21991772253437,89.4851829249889,20.81963862611136,70.75083340177798,3.61479117716319,42.11508377362533,67.29101660343298,85.64715239276637,30.14103351014228,19.17312691845523,6.474116672157814,7.30325869526427,58.39355098767588,16.663256766795477,3.4769322133595515,85.5576194889782,43.162339392878344,94.39225610480486,96.97536710525598,81.24478759684037,17.10448825838228,81.29722526624904,43.52086045000332,96.40783532760237,72.48547401292068,17.70987268611376,30.95416031442204,7.248743943088664,82.68230826263697,27.674914513345207,0.45890645570810795,15.626900582478475,75.2797280369318,55.98523472517929,46.7300463059146,50.87827125090219,40.96017839646334,72.84407532705053,55.33658134181246,32.511990343947986,53.11957182983594,46.31628111141745,80.39658408602955,31.79535413552229,89.00488540050404,16.175128604784128,11.034866928561005,88.99142308435428,92.64144945175909,41.227274764675805,43.77651408274068,99.09473428975582,33.29967293221503,65.73574319402191,0.3733038238229236,12.212002272588485,10.342481949946924,83.22450288985445,61.64807923873238,0.6860861151415931,2.3503982065998463,74.23861081283243,41.03958500065845,53.505036998695374,78.80162443587938,50.44374233128788,69.69900691137502,43.3596002019478,49.710765131088955,72.20824685612277,30.222828901606057,52.83141657448852,72.11075571327001,47.69055460649157,81.81747834477005,44.49595842259567,56.67415554913357,54.664806253997035,29.10239966050939,64.02780752557534,91.85352972108005,32.12962949138932,7.423871957035666,15.381997156233973,1.662877535619789,4.759055927296496,83.56115381527293,46.976255646381745,89.30185641958987,92.25804176101737,32.70218212255186,43.02755482414907,30.60974831754546,85.4965615241403,61.50311376329043,48.192379985731726,97.91042086269796,60.76194563591898,46.79916436269963,59.0045240052086,70.03158379013203,96.97756806547577,3.5032410752565357,24.564484669517295,17.242468757769846,14.916989950121085,55.274565620742,94.99377899174839,0.29554027546234707,28.328212772331916,75.83363718864253,24.750541492548106,16.062728639987412,10.924280851951352,67.2903016098135,75.45779939252158,75.43830914520485,81.39036908345359,94.98102150437208,51.805427006437654,68.46052063852272,31.8526308398698,21.392249282043142,9.106421688514699,37.93680501568897,87.11187713652302,3.111237161282465,27.30621128920697,47.90580524458701,31.576199739705558,15.462573378080702,83.10423913784729,97.85412364486218,77.60939924203426,35.55383829269634,26.669260922888014,25.674864103814908,86.2500971977702,86.06780510799246,42.76883822380615,60.85388442817412,58.83276603454332,37.0317020547072,10.218879495541799,96.4031562530535,37.56737669872317,55.928897670194324,21.036910032575527,16.377920261986034,79.99850501732577,18.063135255090067,94.92524436092255,64.01820103072914,24.00111058059987,69.07154382603176,75.25298665996083,80.80988950490318,30.71856113658701,44.26442377682829,14.744619101172418,80.83826903352914,17.56666405291697,17.57855976900371,4.028250254026789,47.86415112044081,29.518613293864405,35.876257024897406,6.222874064960138,2.0002589564292017,62.731169995871575,20.01699418720748,94.91094266766845,40.84155157962196,98.807831727694,8.631083224309288,47.824559866342156,27.296613494839107,38.007358897480636,4.353692408949062,85.27852709791411,45.76412074520745,83.75121023498396,65.48560562276636,98.08954918895783,54.65204270544888,70.04280365351686,57.75754956600896,67.03098033241638,58.63521239701331,87.34045550448974,8.109677436131113,20.29125392051889,75.36373317181996,99.05747085350775,59.085333104798956,20.212709315613765,85.96233617348256,37.083960000632565,19.32489165868615,23.24682680193132,81.18582544239409,62.4841439434766,86.11579820437147,47.50435574856644,32.41295004254239,14.926725186381852,98.45344138420093,32.188140048285064,15.285666263407737,70.1257026189071,84.05668113597923,44.42395421143437,27.50212892562668,29.21981778727537,77.58613817062148,20.474619727137412,24.34683187077813,50.65336236313963,92.24506101988688,54.83795099318991,30.11987013770241,62.396438931819034,40.612125043821045,3.758116290470215,80.01695170690913,39.04545396403537,81.436767041893,22.521205529159083,34.1217947347116,99.31541201241426,59.89467681522348,5.094650527007194,80.75572401550872,25.439942845987517,2.480024034625683,56.631516265902505,35.62395024299458,58.965037211851865,82.29612505929497,71.62891647357323,90.8824978042643,90.35544435422253,12.13899819475911,28.860409663749365,29.156821883522476,4.368804248174452,92.5991017650577,87.96910850874686,57.92597091158601,52.63058684337154,41.42451215527881,12.276944124119781,66.00132884033346,85.75583418877169,79.42333009226172,63.49846362757686,83.68282780233494,48.03800471446511,57.77394450845696,31.551620385800618,24.733762902505095,2.717607827304047,57.024871680778546,85.23259580134385,79.40756359399715,55.63558914856487,53.09248021909917,90.68543289230912,23.773283122400013,50.40412814519279,81.20479627037297,31.05534320747998,90.30200594474525,8.513932721910688,68.83875107230101,7.895267798302541,72.20197206752414,48.82030009795535,20.45477148248812,48.713676217101295,3.4276205890545475,37.66444274117238,81.40222091758632,68.81061270783462,82.09313238654752,41.0798179361199,88.26076644553517,51.62583984569158,16.213795966443367,7.104560644569924,2.535810431298846,72.2092954378864,61.03789691230291,45.83822653681282,40.675466165575024,18.558271323912322,19.86142027338338,1.745839580452102,38.59592400164,35.81312811212965,51.89429484248824,88.6688587580498,9.841106574130997,36.11412623790721,53.44592640086461,94.3798984339484,27.942686248290016,0.10409486312220606,5.600233697411461,12.85945385030185,20.425746487227602,26.572931087982386,92.26753871007519,62.220188933453,72.60706689985055,43.36935880824214,66.40089017905547,24.166745290530812,58.92759894672761,59.681526346691584,57.08999023437807,92.27633692714588,38.786235206215046,61.750151980738345,55.15026451170667,82.67141761146307,12.465662588138404,71.06809884804555,47.56570363945897,22.650807853401457,39.79142118522974,95.46695096781545,46.85510259690092,63.8851762759156,94.58456617323469,78.04538334839137,67.2556525039005,20.146198120986913,93.32249077976704,39.92750740863371,79.58206945676702,68.4074445607734,43.533745607658744,57.23121925760798,69.4336891530153,38.27498746248792,24.81343911193562,59.3176224120042,65.30948949591468,80.31225717957064,61.53546815684457,82.68912545155784,82.43340512913184,48.704839049933746,2.4745099892962585,61.31334073994369,18.65737212336047,11.129095668331024,47.76088406556539,49.64878392176971,67.66359566572746,30.743359983194896,1.2010217561449488,79.59076148266392,30.80467440246616,27.15044707968347,49.11845331854787,32.410578931458076,3.8392405808296393,53.882251652138926,62.58660623916433,50.52826710319248,3.677714589110226,80.28055147152847,93.3737935997691,57.69003593976238,72.10500260083388,61.779612417782324,84.83496274695442,10.671847146851087,48.8925497839563,38.39326342238615,13.49933644852872,63.70859166079885,28.50974438107293,91.91374247962807,79.95185349019881,55.89743067717355,71.10869581838747,54.391445981322185,90.30461363971583,29.17663471808707,28.72279685516782,99.0096457817281,72.99334905515266,49.43826804324514,81.58950083901586,87.23517029324093,79.2896083298795,58.478570181760205,77.6561448600083,70.47673678519494,27.264342203289672,54.119619787083906,60.53777036907282,85.0229401653581,68.14540635807879,60.01597424271272,85.70401075038214,59.454199997562995,58.93772265145583,25.55139837051247,9.407056281267733,59.59258842490714,64.55604008556449,4.748501136680217,53.6611275139858,21.869072920994135,27.517924126527625,67.42602770540381,66.76122190141513,11.830381122711419,15.074097245543639,60.60406515857337,74.12410186911629,65.54210450948466,28.749152812783997,69.64566860260966,36.178672305183326,56.56726680808444,48.64295938120837,33.257783129661775,73.30575011822306,83.89921088875619,67.75641558724084,69.1337913475797,82.84659388368205,41.69870476597816,73.52476318590834,50.302882867838875,66.18930920637548,43.3031171445607,52.10785662143223,50.10862870177695,31.181129053314617,39.966093186356844,13.122428470173341,79.03985857027173,56.131522812544155,67.68665710518573,65.41818255653851,26.989779895234456,99.54765634827403,24.499437347798303,71.17218552374108,87.74015953653026,68.99852385076078,3.617716399844817,7.457853998579433,27.479895169309533,11.894857033579164,10.154533618936789,31.699857849536183,20.600965110657242,28.060841830530926,20.109322003098296,7.525354073219537,14.950549400275936,68.67800715231624,84.78528745263851,82.20944761065466,26.827559138787404,61.124685136496524,84.50486276638514,79.01507267762497,33.44117811485635,46.28943236560556,52.122994982100444,1.6724621828373532,69.6450961423696,92.876293572789,73.56208798050687,17.887259326361217,68.88349977527534,19.308040964977693,46.32644634567393,14.277087090716423,93.02380516487537,81.65056674776123,73.13479809010663,91.28464002821065,27.31994819337714,18.03426517251836,92.03972585900596,44.54015575361234,92.23926355260585,48.04357934995871,29.54292426998151,13.375232012081417,88.20510577446454,96.32922471867029,50.6707805021278,32.53747464089676,19.123107048108924,51.01785735825931,65.51164840909519,0.2967974041677479,65.43778984389995,44.59956799270156,86.46798401738417,13.829153906331282,51.19675750935274,50.77031758019375,58.34646976147814,50.39911170366943,36.09853420692561,64.53112910045725,39.273156404881014,54.21697564884529,8.155296296696847,19.073400472164927,72.18528986101279,50.85658149885271,94.93320281959102,17.135729288799485,36.15431008583491,96.48185625825802,60.83490779220572,3.6835549506673004,77.17438152295324,12.66720213283643,37.39555166284191,44.89624646414892,92.08003174174168,57.346490670567384,25.080580617649705,60.6007454582256,97.02151928634053,91.28647672044343,17.99856244572151,31.104115944421075,39.29393148805293,27.635046849457133,48.22860142811582,48.75678723375406,81.39034458616177,83.18151684888461,29.67316208351829,43.38768772448823,25.476394742516828,38.273092247990725,5.574456944722728,67.20076575310634,84.97327341823787,98.60246898257907,85.93358256312874,44.56307746462682,15.234522355499402,29.30951166591702,20.649825289492185,6.412666251057075,56.43429901922726,5.061927041843017,76.52172004906467,96.01927759846498,0.43438077557774735,76.4796322895912,50.568085835346324,15.771187409622511,43.60710206483582,12.001110015779847,32.93674792686539,35.990312117733524,91.68901568414017,25.823947208810637,98.8419504866153,21.95129977716247,33.75660149098396,26.055359164230506,79.28779504798032,79.99047087404007,38.36739563709567,25.777434110631013,44.55454081878932,97.3656712925715,23.77165481534721,45.46988623874696,80.77315820133151,0.04315028421275624,35.67045836895561,63.809002699231286,94.2248552533726,64.64572225053878,81.47040717264507,42.26541519655056,56.85544395175716,19.4376550192493,98.93939753892131,31.745564979894258,89.5561591776628,79.78425502817271,15.395707762662159,13.610454957558737,92.31297712910053,95.46396131821189,41.974773258838596,81.36881813813717,59.5522240688261,29.891441019651865,25.128008940550828,78.6627187553195,95.64882627224863,34.02116142231451,97.84132476981388,74.68534770312215,62.23407533266324,87.37114894770774,58.019292372753114,50.63012967545598,16.321814450960247,23.12978082509676,63.26741362175655,3.893728215560033,91.4696487190288,70.74035704638666,2.6775462062556987,58.514511404295014,94.53166312338543,37.26035466657699,92.4021558854305,93.37116982113058,23.52052173401219,51.76994405905101,85.87105972592983,82.45284015796034,56.82415986511599,34.83009505001019,52.797021387577715,9.039492576813634,19.806955550345695,4.816923373209081,95.94014223341041,29.10549688708738,8.386352150125154,39.4308291009764,93.38789326452934,3.8658187272613165,89.33021340124574,71.15639624476906,43.5687794776042,48.60567477735237,82.84076866206465,29.431715873695797,62.60988811416269,94.07649720636338,70.02972088550791,65.34826299532071,75.5551234836764,62.1914673100173,54.72125003151326,64.87730520323551,80.01649597903213,73.5051006603952,28.071886989079086,37.112820787348696,84.5539733603263,32.374731593198355,12.21947308887037,52.72706902598109,69.26170933756244,97.9547699722055,43.839481803031354,33.55833048028833,37.14896698320208,9.972777934276467,9.006349258687385,36.26058140643057,45.45166331103222,95.40012501979706,53.399460260938035,17.526510754123425,22.760758064844723,59.20605183988166,40.0992102522286,49.75583845957999,87.81510508201967,71.88720741138354,7.133317841309306,18.642210625842125,1.9503128383405843,54.23769062880961,46.155497019209015,39.06794156084145,49.84737313554932,64.16349459839707,28.86551885416261,35.00024349019147,53.380845930362106,64.59145469384625,49.640989742238474,25.655212091291258,43.60357465604857,41.93664977037851,56.06547568461796,24.401714945158393,65.00610405335887,83.7180259275134,59.03179560743872,96.05866085156968,79.41557600635235,14.18383388648855,7.938120734427678,57.96320491962162,36.22247706547051,39.320472541508046,96.35178272447551,32.14294741380416,0.1500002095098818,1.8224987522576064,70.70866487963472,7.738686328873512,75.82309997681132,53.92455549584739,73.97744636665496,38.9757146044454,33.34196739570052,30.002986428134403,40.965158559403235,26.045772883646066,4.281085621292602,6.195911046234848,89.4290340130697,43.92103023253354,42.66358855768534,78.77536585335322,99.04612110142695,46.24304835412127,0.284755448333851,93.38341374081605,34.32195380081401,52.187797302694115,91.80740231786206,89.43050430501464,68.20925113532135,1.284600398043978,56.51025551949404,54.67478918917673,7.628944341025933,10.45921595581274,88.86211694163775,58.20679372518107,47.62150390135349,32.313739318453294,81.98995975914956,45.66531871253338,84.7058002123415,33.130929029087056,58.20818886354898,37.69596964809744,64.12671415738565,94.01505188702349,40.105362140568616,94.20015407782863,81.06847981710047,50.92221361453091,17.373646876965932,56.048083503273425,63.14496817857624,25.2592870538356,20.496820290322493,7.857035208570007,85.36390464244464,59.935180082626815,63.244482036985275,6.0109194178991965,25.68054175502287,29.13694303827794,98.95239188263564,25.61071604718861,54.303012214911206,1.0731848308941139,78.31313152343762,1.36274194844338,3.2723671097949047,30.34291801549719,15.403494413134478,9.922321488469821,17.67590891943831,36.98181409262345,42.8685320534774,95.95966048192025,43.293665815436825,76.4805837795547,12.280064829361914,22.44042151439136,90.47715260798228,60.69147918443313,43.75162641898305,53.15095316485584,78.10428919990659,34.87370221224254,82.65323167562502,25.47682155972556,94.2284727373887,35.96904880535503,43.19196223737727,54.98411565274155,98.06018818680535,5.593048306150528,18.993920206292437,39.05800372906597,34.580509338285616,3.6127167076609457,78.49460133377755,63.207436371370896,65.87863243984438,97.8585355119821,91.6054685619055,93.10461989623413,28.86851920448499,61.03590338057676,34.264650422823784,9.827650241001962,2.2679804917213553,33.233132850235336,15.593235076694167,96.71681385263004,88.59815508064824,99.18449042568939,24.55504290625906,18.70110984466331,35.472262575296256,64.04425177290932,41.72775314468434,20.889596829318823,51.74732814349616,85.22391628806332,50.56686757693799,43.81388081738776,44.82982815270983,66.53839630000651,67.10811238682449,52.153504505841234,96.94495909651333,20.26555016149739,83.90278415235508,86.29526441659429,86.95542756902567,22.700460740776684,78.3114951658338,39.075394663275496,51.5582470368978,41.139306830505454,36.078764475674355,76.48916509174649,98.85041968784978,48.78921565733416,57.939855839474774,76.86321104794435,60.147966998798694,25.703508184929312,26.21807163774985,50.310502956192174,92.18527388543194,31.86404770608908,21.397858696182205,76.55967232066865,31.641396357280826,26.352172239733306,98.38765172158219,48.33886047426801,57.743150460566795,75.53763083457713,8.695837918938699,7.035403627949033,19.510043955602853,66.230377065085,27.128367523685814,14.276121715929301,3.709556430082117,33.15194543508228,39.34728632893001,54.91296733540126,49.04080076592203,83.0152486232394,40.95277385691346,14.851273010580513,24.863781565451358,83.79366772038946,82.74039945793713,87.64831945852976,28.9844953341028,47.40084776524445,12.864409466268024,11.887292731129072,16.48423880493557,77.1548278551004,96.38889201555956,36.43296652646434,41.21570132111809,41.418211595930565,1.6659124551724802,17.251382053624752,44.94190557323235,76.17859219901712,77.82833526218343,12.159783834519422,89.45876538242975,40.50101824934643,19.252427487873526,91.68912658289246,71.80933708567791,1.967935887200134,37.832783104264834,17.196517536678215,99.21045120493842,96.33814414120188,64.05740208589911,50.75688242862717,54.51461260605031,70.37483985266917,4.607425728095372,61.7297807184124,81.83804770859804,48.12294528621772,22.624614315121782,82.93296977741326,31.59736391903666,26.6695322884699,45.62328279122343,72.27901821262519,87.30256098329278,35.961079400656814,27.066875037471338,27.728030037569084,34.44348140559418,61.5309895941883,64.34406093039078,20.08766362425002,95.01500067610108,24.04668059873325,48.034571356559205,68.20665508928568,82.29616269798952,40.6903074757184,55.32340624795693,98.7583518900405,41.484750763503065,12.981347202276927,36.292739925643104,27.603809767689835,90.16435528760137,59.34867981018559,40.339998442062694,37.782606907962744,4.3093184276380425,93.97952788155118,38.900973305999685,78.76146617551866,37.85207845675899,81.81592293536993,75.34649568969193,43.69676419882006,96.50092017763534,96.34989590297162,4.491689024367473,97.65705241605419,18.809760064695336,80.46389681042744,67.37726663366061,16.733377400101034,21.08375169186938,20.221542898625977,97.16624697884042,16.683181860717312,92.19410308859335,51.19157963124508,43.90892771449381,46.17338177371572,74.6015413255481,86.08178466400003,96.3266516711058,5.9688584118580135,8.059587559820681,75.55679877274073,93.4044887481987,94.3468421182923,19.98346762933202,99.15395079795273,51.11520478904047,20.555585423140087,63.75956337524964,58.89705139289032,56.578895526488104,90.54967621595966,81.2618941474454,32.93554329250432,47.64510894998498,91.665636567544,29.486865251267325,52.10314391175837,54.30405253427688,59.58625390169957,15.638187392158287,42.397421762640064,69.92791303126533,17.700404508812827,85.4220001975437,67.92177266615529,1.8472074856337395,30.338528731993197,2.6900240105292905,87.23352338298515,59.555468039504625,6.828804289575407,78.92477179009883,77.57281614412157,47.66465734732505,23.995700475529127,85.63433460758952,71.27150574261466,20.558256497066008,56.39219234666014,6.0823021846940435,29.46195823314467,51.37050580868171,83.09868874580594,57.70259591573779,25.61192175192174,15.717109744688395,99.23748766964941,29.092185411080575,88.69224151330447,15.081858704609818,19.61252276651888,55.70609670090649,88.81532597791903,8.798407767830696,39.531059279801326,56.69456124626374,2.0860422632320907,87.65173552203278,27.246884100750357,66.77352587134887,56.81307115284942,24.378343219767416,56.02375621781251,84.5616337276897,4.049446548122127,94.80679039851232,2.389845177700556,88.91305880036265,51.088608580081285,88.98340396699767,15.904825941786328,60.33243125847411,8.596348314841883,91.50867979866017,87.60875601987492,88.12029071912548,86.67624667164644,82.49376388130942,95.25245270752187,48.0859120972739,78.6583356084036,45.97066270806229,69.53278695466241,2.05506513689937,52.452342969599385,93.8468541433464,2.087902429970223,71.49982211502756,83.61980271034938,22.694418019737473,37.24200638169307,77.4275794603183,60.36737338898072,63.659395572524325,7.181659246810835,8.573087587799666,90.53690008173105,88.79176253841848,20.407399006040272,5.674459330509651,64.00611474595189,1.5201820721883919,46.31525144330338,77.80203702033715,65.49419803583633,60.98493339621519,1.831823532549437,55.907312853939814,76.52899730693568,82.16639434207096,42.62679487022909,80.58954093874452,69.54469051234695,26.285173145684894,80.4218561103126,30.913039991768045,97.79527186034592,26.518879898875724,44.740535904776216,60.54519011512854,35.35066305374103,71.82006812266656,96.72495926702271,77.79837765713043,92.1649970397963,17.546099522847058,28.79782110754203,16.40595851908656,44.61083518963132,89.2034004295083,17.431851853026902,53.2897103699835,43.9622799665726,12.174130007823813,93.7942975401117,68.61999766842229,42.11929660615971,81.60763151913501,76.59932490106746,69.76961597061066,79.37700630046616,86.63707456240364,77.94694582233485,18.993833519269586,87.22274512633852,76.70750057093893,47.28878003464067,35.50828062816673,39.74578253175635,52.503077670691724,74.14576753837825,18.486192950300396,43.82164726907959,2.9478652859130205,65.32709249024332,42.87750974750655,51.23199232345223,1.8540798985923646,73.52208924346458,84.22515290080118,29.17877165262829,88.64800012045066,1.6708982787071336,45.10977046499378,6.675720991032696,82.98293398828133,75.1104190791511,17.951326412008562,49.17196443895332,2.3879375680755155,49.065835882424565,92.74196365599494,22.418732776143102,81.97963180248907,78.80774555668613,31.01114665392608,46.090863281763525,43.55378826691306,38.15740586272863,7.0175367580250665,9.137007395522744,25.113718995061006,78.0308449993972,56.403732753616666,21.308148037389007,44.58037179676555,51.026070873304164,39.02305960549014,77.52379281016118,89.59422641769477,96.0644049116171,55.216161000392546,2.7226514778884714,68.46971834159854,95.88624146351253,66.38015941275654,35.267135269513936,35.2664252209159,70.33433552887452,27.04503707624465,1.4908970910075259,75.71185371245407,35.487194929009426,73.5693190871433,27.79276439930738,20.461251432785378,83.21535796569275,9.576421057173823,75.37703508020532,80.32435065023925,56.5091296617527,22.683810198142794,54.71014945079424,67.02603836826225,77.7002072666342,44.70240452312454,93.94672463220594,96.58689814661717,10.306481140241264,84.08893344246512,95.69364719560053,39.29129610570844,4.70111025610821,7.064528128349668,24.55782325379463,10.43096927565237,69.84604683167937,9.09044172670156,92.89917469886649,41.8609522977613,48.83816389554917,56.34309185945943,2.0903997487370263,40.35194922502298,6.571526554459439,40.60370557279851,47.299632597675675,18.04618144560901,13.271718846927572,60.11599584520289,62.026517860641086,81.3512712721899,20.21349715349582,32.21730401265246,61.56086212558084,56.02928835732308,81.2950332108367,40.63592196798573,52.551721710057365,42.31596141694899,21.243768266823338,87.37093638502346,22.2616141196177,7.719851346975215,69.54025966818749,44.4925036338482,44.544992331592915,78.2812081725244,94.94062991328046,20.190372012367973,91.53763501142825,74.23261806777562,92.10112516236359,0.20142873295896369,50.35112345062658,89.48425221228341,44.41955299497705,22.17191340267235,22.12738975231795,93.10452718018176,36.1786328810925,99.36991037388032,59.99714254351966,54.65519118590447,99.34788540131036,83.35128569951013,35.21348846761263,27.17793899359706,81.92392541123013,21.420692098735806,13.18021012267142,98.0156812491108,29.230371419733416,35.03931099332828,11.593941785693683,23.81585796510681,35.60984722932139,37.57165807297571,46.74073102799816,86.55165956822695,48.47772416719545,8.702167273139027,53.35547972363241,26.81630634940042,27.904169141722925,64.79387430654354,69.34785515254413,41.06416896677773,43.005026793662296,57.55564648083962,22.37540699208257,65.1718858231361,1.5028961598690382,71.52162121202487,85.00454472608521,50.130347150643715,61.257389355480164,79.62279506713148,90.55934001431596,65.5227047664322,39.93093735325148,21.82913128661559,41.33224218471058,35.110815539589964,76.52144682242789,60.56243582149406,49.82274758048008,75.1931668924119,44.370152885535916,65.96574515870668,29.537413639326626,41.19771254756957,58.40541810220016,77.00179433728317,67.99039118315346,60.674731818044535,48.31533423331413,0.07017551385791743,42.62322790000969,18.976832542749744,92.6404042918265,90.838594224243,82.36948541392692,18.211521984813007,85.67503061701986,96.35687728836197,9.361774812106027,67.83099393634558,23.131542097308,7.678805684547263,42.88723870663254,64.35660071054612,26.309075535558136,33.83566830912119,14.788370338759528,31.60197678908342,13.534595335375121,87.0355483473098,52.48681343776431,42.22180646714396,72.97777871837047,52.44161334404897,84.62801438359354,59.676018699346834,18.929442542399332,61.78147684828491,33.13665762320509,74.5792919801526,8.462031277753024,93.00539753315961,80.5757384395699,99.32242683640408,30.756794537724797,27.127190212717856,67.27725833614225,96.38076554829486,71.54894700241182,87.90177679704169,83.04568147037853,73.66713677327868,51.420561564586755,34.18613478500492,9.343152197464576,18.527808479912167,80.41597428604564,48.82582355709656,76.81697297965366,49.82185022022158,1.131116792633713,46.65192969380889,52.14219058091372,40.600542670864336,17.372610057095116,95.23774435289208,51.53815516180737,71.64116881883571,98.05629796382797,1.2214625660787903,59.70554708876919,59.133076559871235,2.3981188970451317,47.37260339900741,89.4212232089127,38.26315841407587,35.66929492034727,56.10751775091632,45.39014520341209,81.29409212170765,26.6280825226213,12.43238566799758,79.32950081803749,38.01315264133018,46.21770072950908,32.98575976545797,5.8258844048988845,99.83652064030959,37.148652422482506,7.146426037698861,25.080446952251744,21.359883687683567,30.01124522791162,79.27612847201324,2.5238415568956785,22.06121962386337,15.847860720045958,67.67614396135069,19.68242754409857,88.93095412649096,62.041666550333694,93.1769550618333,46.898539903206185,53.76219062815295,82.4478473876455,30.62228435754507,80.6085901390461,85.34770626318571,98.95302252346373,44.38143276733081,22.204834358605062,0.5793120228378856,46.607785828481816,7.9191190222861145,88.83156650210034,65.22206727696252,49.248623568195725,1.164308652798851,76.43213810059288,20.96848622170844,98.76281458567412,72.16834546958091,75.59780849644523,88.09592276628061,51.51436140275602,81.70139157601064,91.8651198885691,90.82619592265206,3.4730067487170557,36.18834323822334,60.33856213610645,24.790393255377808,4.8084219861964765,99.26213551673993,99.4433500115706,58.918220572059724,28.623639311234783,46.87843279030434,53.59598796248708,12.37806641943302,2.7750970195690505,56.111288196303846,92.46712717838133,90.46421635363149,96.55819071380941,18.350859423468847,54.45789540500565,27.211122941553644,15.05090600745913,10.10307113048099,5.627044204753229,7.627793253777703,56.10626113428311,84.63254204332905,26.0479064382112,29.426109973973347,98.79814501541505,44.35605223682636,49.39096337246164,54.65248124313954,84.05626491089762,60.22653483633628,18.825433484277088,7.054189427933122,92.1562445284957,62.54647062087801,86.54283685474928,64.60659941018193,44.696313444547165,68.84215323623637,70.78948870593031,66.38279622893107,71.10277489597149,81.38053792475152,52.81033769458986,25.52133502298425,52.84735068545029,51.957534265618996,40.06286935294465,82.42893761157679,46.574426906168085,37.93946678894542,2.5389898550299606,23.183993126356295,87.41514640029307,53.053647348027,61.94762993395126,45.97445006508162,36.134251999007226,60.41323852756264,75.25033808838567,73.05162230306888,70.81069993168393,20.354677671845455,61.906741330327044,68.56431470876879,57.61502155728846,33.72327295347317,82.9170365404311,72.57967959346396,25.20877582927542,61.061284040223526,37.2112089832854,22.1442462840021,19.307542611013673,59.08958274682955,71.13383216223926,68.23509800126236,35.33587871746718,33.970937976943446,46.128169570645184,44.16043214686379,75.22081167759805,18.555628547412006,35.053577408091684,63.33993574116995,43.364603713859914,42.396633523699236,46.543587424975556,7.366708339584738,80.23123545211412,36.56624092080768,21.809039853769786,18.134463457498175,38.9381628612349,58.22857987717103,86.58634668524373,39.58419201143607,80.49299469626253,37.96476604221567,52.92687830079588,36.09836531482481,65.53011321725297,9.52588043729341,62.35888429392811,48.92552810551491,36.29587127290348,70.55356916360545,92.51739683902494,79.25045330632439,47.22203287978709,58.90138976941558,31.35870633198935,5.1579762776325815,28.646502406415653,30.314492658352556,50.15138959364306,32.05270121679406,7.426908873033966,43.421314153467215,92.24129113398781,79.81629420435814,32.467849956911884,24.582929031547373,67.47079176261701,18.771592407028304,21.332691124047,50.040705896112584,54.754112713156566,43.879675588867826,4.710482393500537,70.46366752754419,78.04853760918968,48.63125023818683,56.56928918019726,33.899340753474085,48.73598393480759,99.56491891730921,37.47244027524717,5.107745793668917,75.52577284501038,12.15147719541102,42.61340339750333,51.18244173720727,21.193282098510814,75.5184621471053,42.76229142984349,35.25185517374852,51.83893894565309,45.91835040279246,96.08676652518604,26.28524814152996,3.0176185264052635,13.912756894225907,45.74754790660375,75.51801670217,81.07433452528706,58.62435936811351,49.52321018980125,69.16589893507317,66.46017662899294,14.043463235497011,65.07342497624045,74.15630436785106,50.48160693096586,74.6091979172284,83.57479521811977,0.8398060007583918,98.00641878546935,84.43275452054534,23.61940752488093,45.67722275140649,72.44512581054151,25.994256126838778,13.225700533185393,46.85378815999427,21.72963571104065,51.448845526969514,0.8269836646643824,81.07580969319037,59.67332343140711,58.37146916336041,6.706796908267676,39.04451450629687,17.75399930835293,51.78486003111124,83.56435219830416,6.63121990634049,17.01283163382803,63.64917881862754,60.48978653003433,3.325741642285218,59.59745831961891,82.68187053925456,28.412058974193886,20.260606607855625,38.36077637367489,88.07674108657626,81.20910035169831,69.97504719360276,88.4711378369664,81.47875353941639,18.458151906421747,74.19881200696248,81.9545051130753,65.43364595173607,63.26593036266009,92.1650825868736,29.229543464026275,43.69434627972314,23.914473783438737,59.7316028839447,63.237345321389235,94.55169730637408,72.5158207718198,43.30519210285338,12.93978621070535,54.916476443488385,61.387392838336694,45.217460809780185,61.18738442651668,51.119812331931705,61.016710882072054,80.20361216630839,68.44874891673685,2.297724281831126,63.212497325927885,82.98797272227615,41.826542780119915,96.3925929232914,18.441570226269388,48.814903150777276,80.55782343611713,84.16521963548529,47.305700084038214,22.7978966052098,23.249384076596733,57.65326755105251,91.41442878566022,22.55568932446501,56.641856664611176,63.41622442851816,18.673946650653093,10.86259398207352,66.52319923157866,94.26976442383499,22.113995253876983,50.668327417752366,88.01432050168134,87.19615917809391,12.3933158279951,28.752564698749538,10.295431127090248,1.8289039199361756,10.903324557944726,39.74704808805739,88.69074598368127,20.439339205459827,26.941711559976056,96.71259523421784,64.93030343850164,58.830656112491056,9.240869172144873,2.2821319534221507,23.64717951292897,99.59213247831347,31.58451690622356,27.53010853938418,88.99777992964553,60.03615846482244,57.908772371593706,56.56590017474604,69.15687935788351,3.5812216695192967,77.31252143397506,34.4903751825096,15.584641336145555,84.6984565784758,83.5593518166038,8.705421809674919,17.993292947843198,1.8385688601584627,67.64170148529554,19.43520266411023,0.8785224962134963,80.74758579991426,91.1330335616141,36.24539687481926,70.5373638766437,2.4939610409420054,33.33319892112233,64.38251685074619,84.11115757000837,7.346547926446323,38.41685444887638,81.25170221968044,11.806995327846536,41.27913441190715,23.52946126897013,13.047703367535245,70.64377425287725,17.801061864196875,90.17680414926558,86.85344987179725,22.363201978903792,85.56293588379035,46.03437367746549,32.6290388898198,94.44623813883183,52.55533136366542,41.052520948455104,72.85430483697625,88.52753698875382,32.207030013819136,56.79507763573619,98.52989992321078,98.55257530808487,14.345088022609398,20.306011532887847,93.0902514446273,81.53449798963833,56.88354746189579,80.63099338015226,19.050551748021782,72.61735514061071,66.09487033814108,56.691242240409615,18.540147253749595,77.48908142000884,44.52822986838688,18.442771080817522,19.60509745719993,95.23535301513675,86.56185263636546,11.095277611188624,44.93275207667169,49.588647904371705,63.162010702237126,79.55214635302656,84.23937614297695,93.00766286040236,37.52183534885546,82.94624842905606,62.328161564997146,28.299997598289462,43.42001581463498,30.500141075620967,14.22410873669392,49.35380967997246,19.2313985419309,92.24985450836957,2.5760725300614795,46.1305926091894,80.93467584946771,54.36275230669631,44.819346793729665,6.9112594375444925,80.18413684841474,53.793174002348245,55.189923213332236,24.074513782653927,96.86683295277868,41.080592141859725,42.047426199668955,56.51482150015427,96.54373709257851,38.630594469247804,3.188521785463583,21.13275248292711,79.78657278825817,90.64654600588564,74.54945011803662,5.430898103802595,88.16266819106225,61.401394084966554,11.247047193436178,64.80994367787441,7.85514479286814,16.506991272975302,45.60187753890865,78.31568277408002,43.97054366494366,13.262654738216217,40.16387464709135,3.0219801347836417,82.49518746867767,42.750776256971065,45.43842160691241,61.45728450280844,52.28987957508815,66.80237823455427,58.46677872763465,25.56883477002475,89.43531665847036,68.8643345044325,38.198081987819755,79.62989573743934,8.4488994966039,87.33294383812749,76.70128045433276,12.094576975708183,97.16714469480743,13.803003432094762,30.297685597982195,89.08558513503156,63.30526866721639,84.0805848094903,75.2703078654785,62.16522634965437,55.60272417215849,96.449827559686,78.81116364156937,55.21134831923199,39.73570801916531,87.12893270327194,43.31497534262566,69.85535316635614,32.691087659113506,23.79708300901555,49.98067821244223,20.020758952970485,39.18196506049226,95.23017801948669,78.8200040182708,13.04602652641499,2.1192090696465993,89.47158587959179,51.33270054483637,23.34149469072254,77.65306576482162,36.190732296706884,40.16271637603365,44.68060427597944,63.53988534574398,31.528913058688758,63.258575046574705,79.55579277689903,2.3194969430301415,95.00370583863416,66.69497710675017,51.01072314824159,23.758631644689178,21.031662911076054,76.3070404761202,41.03702632286507,51.21957504312973,17.049624182130696,52.9566632379964,55.92814608346185,66.81833072230951,56.30093226967002,81.94189871273008,4.289275152406857,55.67897735308506,88.38483333936568,49.87378608468263,64.29462509958971,23.954497605893387,80.65986026512513,74.30938832473338,1.9538951449483255,70.5695317313749,69.61720070759579,39.69831789054752,4.172187273205208,76.14520676428263,2.932372669317418,97.68415412028313,8.426312304172278,48.794781557723276,22.589718281107316,9.087231768500514,40.14241560358085,80.33133926857185,15.56232109526039,91.11019343783384,82.99301009980911,38.67207837102329,30.42374195284627,69.14517534491371,59.71216841272763,44.13021743504345,32.97136541132403,78.62610782198787,87.90997825127013,10.767157971609965,22.061216767730595,61.557661151931796,69.6152459428654,28.364633431271336,40.07988527279224,52.94184110044886,4.376143378779441,61.794019946056224,29.68197496268702,23.597479820377586,2.4324929525039063,91.72011998904554,42.22948523436288,42.10707681637265,81.68669537279588,20.838335447866385,9.929897545335177,8.48452397521664,28.872871738039585,47.52909279212435,15.561853642339528,86.61854945591837,63.245161806457574,86.88246310363152,45.554490888829356,58.5217923034953,93.70897955365062,37.90106612302275,35.99476894744716,73.32899689443109,71.03832804868716,32.45750107424355,37.47044514517446,82.10285187868126,7.774105645391627,19.7804127241887,93.54686767566012,0.7925294398109406,1.1878832997376798,45.295950537567784,34.64387794554138,4.360331367612636,51.96951515413046,39.275746335569615,26.42094471834958,31.140073408831093,10.137105371153933,16.418068740186598,4.85615792395484,81.197062040942,48.495479008410356,61.568054096108035,1.7870022970738586,26.348345359032955,81.56448227134256,8.328033238736232,71.8632687487225,69.13237023258398,0.4568951046875269,71.6738771456067,93.57901841232452,59.62211753626663,4.197014740187443,69.22692641989988,36.43590954603503,94.71799079469963,18.893896821155366,47.65299298751336,49.09033196906923,54.154272548693214,93.91100753525548,10.458594499713392,14.264501230369774,65.1538380498308,33.73661801497138,21.96311049800659,95.41597632256891,87.1488593499433,57.31591587595,99.8175464694868,0.8684428103164832,88.55525298269922,6.43086478020961,82.60175653581057,20.940763552087038,87.1630448918545,88.51545868323582,53.29828101763716,95.47144345611787,64.36112812047372,18.002250512190564,3.554111665072446,34.86472316595246,76.63579680094367,72.5657672800747,6.104637540260915,61.148299463329266,75.28317492444296,31.30153729057923,99.74803973445903,13.705725130548775,20.777829915808976,3.554676738503304,9.196479960261673,53.94494093417597,57.1632822145077,88.86394418538033,32.25000283459445,31.743908511735807,88.68437036159698,97.27227483505729,65.60074474238833,74.40232914126209,95.10481386258444,12.773763036324004,17.291309843801518,32.8814565586773,72.87269552304977,95.63205353318031,77.9381524727756,37.081664094313346,40.40673857806999,37.48538290726751,90.96336533767199,86.63885159196822,33.980337636746484,58.561597580071435,41.95849522297982,55.2493306043197,33.267083949574385,17.703950014643212,11.202512681586352,61.25745778544245,62.192947951494816,70.86176221023395,90.91329822672867,37.809696640746324,72.59173728741692,87.82403481078906,43.148341868019976,34.25268899652452,57.20395925748824,10.771824748983272,70.64880317909503,81.55787413735541,75.7860123936632,59.64656333162611,77.82923930525325,29.54189079952343,75.69521576380495,38.174112938260876,19.31288652560711,30.98350244043162,32.59096503991049,86.68063339529105,64.55637390649753,28.672316119134344,39.499883529419,8.179599845028019,83.43427709677775,17.862919802690246,9.23944329147066,89.41018103248133,50.42540129248899,78.5514348957241,19.168758390279738,50.41274034123359,9.517601778021245,93.29205378423978,7.1332039196760455,22.488051420881348,89.03154152447516,46.84422807151821,73.56019868510062,54.51294650386884,72.02033749366325,2.702487823300681,94.4364035618423,58.07094303746499,45.23340939627985,94.63856934621082,67.3573084490694,30.75008337830155,24.51331053070206,87.72502088121247,53.46341089186647,1.39546112358927,78.83568099310044,60.18857372310824,94.12371719310514,22.68908928469485,24.547371665006313,74.09918190522974,54.324027226776764,71.34197609560887,3.0367737937274653,59.72233648941382,35.11168525025254,12.308956070462285,17.041326024367855,96.0384774674394,42.80513523101869,75.87841581946664,84.10749357276987,20.13070523532693,53.77126032417697,48.97927764281897,12.338144633480042,14.707786747189466,56.20467534742698,14.657110699648301,2.8800782422334192,35.87125274518458,98.93588127241306,9.752857830974271,81.63631658779804,60.102292217497435,68.70035309474336,99.47624021501623,62.31092157828068,87.02524189151111,66.29305596121463,96.28952947266419,27.471203876226223,48.03933710264072,81.93256878720075,70.3630112585519,33.51788030994409,65.43337404567168,95.95903225050172,65.5167905975222,56.35385473855222,28.73571897672752,86.21996199266346,9.671077514255611,30.163285047544363,36.848800101478496,98.43992786188778,90.97437390035789,89.93802367531993,54.80357391688948,85.99443143446686,4.582540852731343,64.39700986910451,52.44290414021475,0.45878279959605806,30.093547957877142,39.473439834864166,48.915201580662384,75.60245339071594,77.6172858688301,77.1405461704663,42.4023451725573,19.328138124654835,18.699401264541592,22.51296443350148,81.4762420265556,92.31138482037686,97.7068280198631,68.51137530218074,14.877984898057651,8.44250605854382,82.1607641060773,24.77910656921287,0.19740686554464704,47.39814935581015,78.64905094745936,96.4002401419823,15.205446331509043,86.5621405779566,32.359139589972955,10.822532588468626,65.05867273847666,70.50615891542854,27.552907834391995,68.55712597573772,40.18706433776026,5.423526603954665,8.611238123560472,85.47478722158193,91.27375544297414,25.189848319141007,98.83012480629212,13.149777518796768,0.7668363228429786,18.29933078421839,74.16744563935225,2.499444860492106,13.268334619702538,68.3061136973016,38.29963476106422,88.10746076632286,39.77139035959707,72.67470757432213,59.133425962379164,66.59701404610414,8.02170182055506,88.51322250131192,29.47252139128319,10.030860341740489,3.680898911461472,35.647282714714244,26.891041422684225,34.51464474405089,17.41382430389413,56.80445033123398,39.67351925560927,13.870453613598322,83.61641740053415,6.79650922510453,55.58097756738217,92.40985556830758,5.8560640348190525,6.854822626853707,49.94864766234568,48.72167001249908,16.06175478449926,50.16393127598685,51.97260552756402,0.46639605412063245,15.001123861421151,62.513200714309455,37.22610895824248,44.62190384604627,95.3554264898847,6.290630746890635,50.38741942551886,36.524683262956124,10.467954876404118,92.26769457804103,60.332418795680745,11.620935791812137,76.57884591610457,30.744382270487836,64.39982274349897,65.29206595368895,26.840467670082536,85.64033738609442,83.14882588002446,82.02915622253288,71.05495037786828,40.330596674134256,40.23992862643572,29.120642060259495,86.99038894692013,96.88838491316184,13.616627392767555,61.80664567114138,96.522098733871,55.98070570724253,24.090771253016886,81.31905251423198,16.049246108471372,37.62262006743433,71.14157193841262,49.99189514636848,90.2136037405962,86.01110685762838,31.486677503614903,83.90254156362278,26.33964812083972,5.584162535887294,43.89911520151237,71.75892736032876,79.90800795006261,12.303868162092401,72.82217586598091,92.73735432487902,52.05681929932089,79.73290051031371,54.07070835138905,88.47280881942359,37.31277593482268,93.09016953654732,77.38969805521178,21.9631937711667,31.055011466543426,77.97369836774922,82.2285683983267,60.70734460706363,11.36470754371256,66.98834399744315,47.18769753651977,41.1389581644427,83.19884291391193,4.376996148336831,43.07363280547519,29.389894665989402,19.005550891868218,54.96266956451804,89.14789404396161,31.19536201658225,33.060837003914834,7.949838564542189,31.154508446434814,20.528276177873373,49.61464533852331,58.346352553500715,9.098844033370856,53.466233226779046,52.589434425701896,98.37579777946371,39.09407411084038,38.23896874132486,69.50076740543942,19.86406049102527,12.343141281032455,77.79694034660523,11.81789107474922,21.92409170463859,88.46296435711135,1.8503991277657894,55.85425448475203,15.749178071938585,60.67110968550223,93.40207548292904,16.47582579510358,58.78517557730704,87.5683522474928,15.638222824209091,36.59465296505262,91.78123924639878,36.35566865208786,11.263889073079847,63.0128261137584,28.751800931377215,16.756686388383113,5.180200293824555,26.163028649208297,33.83111920180873,32.461927587988015,19.178264771068775,64.44098558345223,12.983265170648107,86.67286964663965,81.12184319359939,31.595312256438866,80.56946310890322,27.659474400288996,69.32975150763154,28.91218506511595,54.83417970050992,46.46097220169999,94.23282623583785,67.9097615843664,93.35426569577106,78.57620854346295,84.6039063691542,81.63891251711878,7.258810667904935,47.323622309093494,60.64173550473081,34.28392139906728,71.63022815375228,26.593024969186462,88.80707123648163,98.45790409416422,42.590662010924916,25.060524841692057,46.70320209529255,40.26466502500652,17.520344399157928,75.41697547036168,50.147027704877104,42.850397685676455,0.8610506082904035,6.8854382131943614,71.00937761156348,11.45850962617998,82.02289343023243,77.4352100214507,20.47360238749507,77.87056637512386,97.60233034676071,88.80508723283444,26.47553007154172,61.669670059322165,40.86575665811238,83.9451536127641,15.263197441747012,60.26321587282346,37.099694751793464,28.704658741184165,10.461576379805171,74.12112303085573,58.69676681897554,82.93001738814762,30.102616432977257,80.97894252324177,60.442658293247945,77.38815445680949,6.788342564276362,10.124784874965599,30.161354240430505,98.38028472774765,20.76707325999928,94.24529551162834,34.300101561017485,40.78295554926113,81.07594095911908,29.08495954366398,23.286796891091388,30.983862588892595,50.27762106610747,55.86517091755577,78.68137557802983,3.0808265993792605,26.955828984509612,61.02558487984409,68.46021237374377,86.72819076591772,59.59302999820554,88.10612466932113,57.47009440546309,29.958565141931047,55.35572428241744,44.28139259701241,25.40852010719693,41.954828626513496,2.848026995736086,68.77320709767282,34.515541447559336,46.739124937698115,31.159352842008104,8.559975661088915,46.09705591788629,40.35941693630034,43.10607360167453,80.43329934555389,23.984470534449397,8.045361260875428,26.508235049517694,9.914630620095243,84.9744636423247,86.60593030367428,40.67048390667228,23.414707837428573,72.75510961642352,72.19147185162652,80.28187389816405,44.88070838900019,35.02541441883338,18.830952979258896,7.721520199021459,22.457233709783786,68.49019170823075,83.19015155736255,36.183474214386756,43.09642149633067,53.67236378780837,44.00921251952259,49.33849459146358,34.32822140829843,41.924797002404645,28.77902928978169,53.88189772933113,43.0403841040517,87.26014985267537,6.380009026058097,89.4515182733037,85.58327273862355,70.89878866896171,32.00118267777938,72.293880874572,97.82716830724324,61.564120753933736,61.67231365233962,88.38638798919554,37.79575384380161,38.269905826080965,52.80250138655408,91.87569732526569,46.11128018000059,95.30572069591398,85.92415521663979,59.45896508512023,60.827801145997675,3.4853600761647563,65.27833702999028,3.71136351314314,3.527650251760439,10.194679328857081,73.85840434304467,14.31499158536459,74.44742591132736,46.21623217272622,92.92122236907161,28.59451883575439,5.195219595922884,92.41222254680773,84.25599330754433,10.797256834377988,11.827792323976439,29.17874297330253,33.54568780098799,65.89835279464471,20.75184477255051,0.22017779151078942,40.145338626795926,36.17754576643782,43.73931955204685,30.6833376296746,93.76799971712364,53.62048572961767,44.251502512347365,38.67832354078482,69.44454552009267,81.58962235328015,41.33319479874579,30.271636843028695,18.247529767251734,56.74755596868919,72.77186702515641,57.169071613540886,87.78612618964266,30.019844652972104,51.80150297925146,76.408801817906,5.682581510986084,78.75936377023285,67.57920478410668,45.960317071750254,52.99890963557462,34.79300605342335,53.724019376682506,81.44415874537857,45.41092441769794,57.79326803232192,83.7069451323495,17.296779869873692,52.45801660031887,49.99465901379092,81.75207134007441,84.1915459563569,29.07461303317376,63.136133984095956,14.017328347950153,13.182436981707657,16.545877989056212,95.80699527976644,90.44041968717224,56.93815811462777,24.08010580185984,46.79908146923367,3.6621161075544584,74.23485489052865,13.315896549245176,63.450899186749474,92.76145253019644,85.6630697483214,42.87921499831552,57.105488121858095,67.62893344197235,51.957669831940635,59.59170588519721,59.921176954277435,7.788767477196135,57.169160901565164,67.8505274870627,52.95238553766747,57.22473340282325,59.25474093454382,31.508929178759647,21.05106895842247,5.813989818527943,75.69844406391309,45.60844976707864,66.94609833397956,91.75619305307032,41.70596486820849,30.948200899962796,47.20123683011243,97.75185262268545,84.79327248153898,8.6107632160471,36.62151338880911,88.41856880733978,37.403942023876,6.643521377977423,99.66570952136219,62.105156189780466,0.6722025925383956,21.84281081160371,74.89889643928683,2.2240489248153805,46.840734256896646,89.23415955016037,94.75329406155612,20.923218588172155,10.251046965770305,58.87281260716317,21.661808103329005,97.51145121946894,72.28425686528206,56.51341704255065,31.277438010448734,76.46990828054899,89.69510631337829,92.63509506515607,46.84608419972286,0.0564318510172801,59.98340297686501,50.096730324909586,87.05877546909707,22.918598291868975,84.056470034764,56.43711981300581,30.891162010202798,58.07772014312602,57.26818552612897,14.253146768319647,22.260095906598398,42.40349354065951,33.27714957856064,73.09180683945019,2.466346306953049,54.71478730058011,73.81053555927703,29.180478573369008,64.38219295291306,33.69827009452494,67.22707264096324,15.737683929530434,39.0586239524888,7.4555540343430255,24.275398279452297,57.31260315116455,70.04263756474145,26.46984064304647,24.082810158374723,10.84372674374553,22.123527510898278,52.41455417800217,85.15923988257344,13.911932488710866,16.707993489783423,25.558240280340694,51.13404898272431,31.54581889886844,42.72396352582716,67.51432534813851,50.574581233601364,99.59117353867936,0.516712680563558,23.894982303590428,86.63616700847864,28.567666832142336,55.65684373835662,86.6587030164996,67.3740118755069,54.62617777441135,56.418191482020866,4.27904530019646,95.46892808285395,14.504043316059256,18.664643096732004,99.95942154598515,47.1041946681782,89.06780508275037,29.957692786783962,31.886691601704197,62.37392152093123,47.24003891391197,56.94735351558504,98.4029103669838,85.50935720459785,69.50305201012632,61.49991713347757,41.31588813394287,78.059825264264,12.906504113677986,19.15954261352778,58.35806664947074,35.67645440059034,88.53591773243399,24.545614468734158,37.26640642015495,37.00316879696419,25.752796573608084,40.595097296388595,52.68066716432309,52.906910960633354,17.62374804052469,74.60774778949812,59.77990599981062,75.5388662626466,91.21744638439932,54.809620033281284,22.515996573114748,44.20979657659093,34.5050553606857,9.639520875960116,74.14748762498854,47.39533694956645,52.2355246415232,90.26806949313428,50.49078200541343,99.9878047696518,59.30659614486784,32.53733084171898,84.32944156821874,59.985355907026914,86.63688821288268,16.268741156247668,43.63090306634439,23.49881630473626,44.54665557360262,47.069753799848804,16.920100011031415,82.8806698575291,77.63967912828085,40.30753765383559,57.960997327696774,1.6763294274247276,22.474142778480633,5.220198700978518,37.13383064848905,9.03326326041447,25.768834719109513,51.841641206159615,87.24102977574557,57.817170551344454,0.6760572022647016,99.85234367075527,79.14162288664279,69.10235883247313,4.874693051638735,17.208735388733555,67.93618439454161,2.3703195589277914,22.728170643683534,46.99141129904781,1.1439310461540453,34.98266334996747,44.2851084270238,23.080058768902756,78.83081394608253,96.9209875984301,81.61557610076461,28.117761500920412,69.74500418116902,25.342956638190863,50.45836870140631,80.82628612800454,1.5747317520522497,87.29374125836611,56.079974139211544,79.42183207428707,9.039760242887452,2.188106424910241,83.50160450210998,40.71066209689658,40.252143678205734,85.0210737492599,72.18315145133154,81.30784698962296,30.2906860158644,26.711323015506004,35.486611862794526,86.55321549300774,40.0757695377502,53.15368560129941,67.38294393326184,24.750712057533363,89.68127089900997,25.00345378785279,97.46248020485899,7.24679397226573,44.74254786343296,2.7136782824032424,24.72494680425652,79.1395614961904,11.008511219749684,62.163233588638256,86.4586402399166,4.738074621123056,49.21410883853831,1.1808880281412804,24.347482879539008,39.24629954983369,86.88910000654195,67.47819364012024,28.044755889387186,13.532178170815056,19.17901959679533,47.59946592964399,47.430089674911756,92.54499658532673,7.866576192259245,47.208703409187336,68.51930518799041,20.464709138363546,50.511854617301154,8.26840202624497,36.96725775289944,89.42259925394146,60.9339845015459,38.00531939880904,60.561901613502314,99.81159046804791,51.87499297932443,81.85061953977082,18.568720645519544,74.11603268586653,94.13983372537731,40.419998756947514,14.123514267652993,9.055580626271475,77.84098106771549,62.20896664280815,48.28274509794526,28.661224209805436,62.0143682082704,66.78121837743151,4.236901495309231,46.73703663019213,66.46511904591105,14.104670675512509,96.44494286387592,85.99441365731082,57.523966232165826,45.1852310924376,48.93500080902017,9.247955927247652,62.72071254508226,46.50936766193268,5.413262924640627,49.47379372139734,64.34509653338607,2.3064315147898418,53.66748733351867,94.12027158915316,70.5782093854109,73.05007386895657,78.86292548744969,42.703408082062985,21.98481631532254,41.781456657023696,13.866634332124905,18.50185141043834,28.860609195743447,47.78157808873074,80.73552514667503,47.624280330434,28.235618397563467,41.63482944454328,38.77208949878521,35.66694043134777,28.415224396795924,74.07762674792909,4.116500425433534,31.17524066513776,73.7750692330188,95.01717172914194,21.21084501731838,55.06210328030424,14.829026662504885,42.61338572317236,68.09279953651763,14.61921544293413,2.526653304162252,97.0751996252871,88.52249739665272,99.1428556321083,17.000671176619075,90.28025196978334,63.82081616681924,87.18597894933541,17.868947800245127,9.924847220268573,78.58031832206075,13.395638830745238,90.01468482051824,43.245841111383555,3.99623364042051,59.57292323217648,50.67934157871071,46.66361850110948,77.57191748200822,74.43616634019011,52.05919407857361,64.55102622091881,40.74373269023555,97.46683835337218,94.09967096512385,18.458890441361962,12.726487474108005,39.06919532440219,88.41555885049851,0.5383388303321746,83.7167130740403,22.421454516787463,51.31394791666231,74.5860848586841,32.51048400212868,98.7052479944912,16.45095361971578,23.85508393572241,40.64651022104145,41.53769391788437,42.809702229310034,59.716684652145844,59.806871366198976,61.057583776342305,47.2739667416552,56.20129782538588,39.684305555480506,37.582677695298194,39.434981351855924,79.89536718967958,17.509078863475125,87.84715386816646,13.98556614208869,74.69096499167715,3.5403813345202484,10.951528205284355,53.35792796319186,35.542290636484495,49.65452715059211,1.8034806289915384,66.77938677778965,97.08340867521703,25.717265159361002,2.841745593028966,84.88186811484799,27.836435660526405,71.38026068615841,60.158392410494834,2.374605525118867,11.871967787273574,19.970540685566185,63.87815964652671,30.02504716818536,10.558747758633036,72.80232861890498,21.533570158996675,53.29189805797283,70.02332578470202,44.22994643816646,81.12330456230868,31.26959356389597,44.53167788690347,80.44209874912342,99.97801020921429,25.921219714817045,54.299018012993415,56.636182602062576,87.532158202999,10.053654897524755,76.7308802084821,12.293556085467017,58.30171127340633,98.67987143700252,93.54251145559164,60.376641586544224,97.68555310644518,11.403817012665062,75.96267181376012,93.17227289184513,9.28749513839302,79.88830715921323,91.2630704148944,17.937925168267064,89.24288363114059,66.72657691044863,27.633708923417178,56.99253127214359,52.869066061572376,76.5935847788386,36.265398487461574,55.87854026862067,79.77232542496438,74.8314842457652,54.20228433173493,43.64294722943964,74.25833841183777,56.516982769785365,46.957393918637294,36.23473447362051,76.16234523038023,63.98033656928758,22.13972559229176,79.02753422910328,88.33555088748241,99.66883983611453,14.368216934023803,49.79534598042801,0.7870704719651123,27.598130095540075,45.35773928024255,97.37187599383314,18.38071370626467,64.23112467128124,13.46682117038177,71.17514559538475,10.54673552247527,80.55454127105907,8.545230078457134,47.43843309155973,22.46153775372296,23.678356866360982,95.86886362775651,28.605817236487418,65.25275825759637,87.34083871972427,11.890661170469397,89.05801969777673,55.791780901286224,72.58786961282006,56.101734375213915,45.411633053999054,69.80563792876058,86.90807710651067,18.89384789257025,36.25115595436248,63.15657192069973,83.12109135535617,89.16457781379287,55.91013272554881,80.27845557024148,54.00053825973683,54.0023959291912,5.451810399887458,68.00726837399492,28.9123268963301,84.11055499955621,29.90649586669879,68.14747492262944,48.03244217292312,86.34683025185312,79.0452202087168,44.22910894224893,74.50911899987346,21.45002441635252,1.8558814456456019,13.328398917355322,24.073950860063686,5.792836192976736,46.19943650276047,35.34673570525124,81.65148718330883,64.59105986278486,35.28266954644423,10.68137512497065,56.68572963764704,21.022357105795344,2.761235652765359,96.26025292740891,24.416401130230504,70.90428112824269,62.07198046237223,43.42567730654697,61.99808344339883,1.3393752158044725,75.31746457666685,69.96553571565207,64.89541487223963,74.91580602683658,58.520168634814695,40.824192347025615,39.03543446928206,81.84144091973651,12.344990330896554,74.73765034993359,36.61498521124105,43.919311068778576,11.956888465763981,29.433275777276357,88.35508626591994,99.95822868058119,40.790678701091835,28.155185380092384,3.9350907427782134,59.304703547433554,3.216898899088083,50.75235640246427,53.5558955929628,99.31641367339512,44.566910529256276,31.537512427123925,51.40586808335762,98.18318910783252,17.002885312863402,86.88671315550029,32.170900965504146,62.50274235048982,56.11274243518341,7.964094615323636,67.99208763656108,82.60760176069911,64.32782119318834,95.51089858508558,86.5100646795127,46.1510266165155,76.88980196979388,78.05425012751942,6.048495728969128,61.49056861428199,55.16297390672993,90.3259886239057,95.84988403518857,18.46621606088281,26.694138164375747,80.92287158368877,30.568545371482735,33.36237444547788,89.02539582136075,76.64065011222627,64.29011323541148,70.86726827316613,48.80308649434069,66.83659955830565,32.429005438418415,23.453402459994365,91.79247252454434,43.18111116746034,81.65451756059747,7.168982567952287,57.383166692208064,54.57758048194062,43.4029852163628,27.010672220833953,25.241496781813012,41.22328587632993,20.412496514703616,11.35937129147706,2.5967929488771357,44.95045821425081,8.095976132171923,98.69669657200876,46.76854264314309,15.845689651380434,69.52703180038198,2.158625556711369,92.84441024896374,43.289545202573265,98.68416419774468,55.33747086364366,32.727128409876386,31.51312696260392,67.8618947458812,93.94814380063468,39.68896482767216,94.57109484774854,91.77005899680269,54.18003060675641,22.47176942061425,14.267769322880975,40.06448934079223,2.405087864696509,24.98831667964183,93.31961378196077,73.1955951039249,89.1875659595984,87.24245301054869,36.39096459674879,95.84677161920389,3.521311861928067,92.74232690839648,51.79652769416071,52.88730814140514,52.243955640013326,85.90559740716024,80.83526296322037,89.99254860125856,81.36353047095062,74.50893910549281,68.76355558343845,42.35221179549002,55.41607742029731,67.44011198926802,70.0719420730548,36.33970760925362,93.43569177988931,83.42581640310314,34.67449827247863,74.53979599605893,23.62321853540772,23.288746836243533,91.45216316929202,18.357728371474824,50.23658969983901,23.56511794369317,0.5594895903737296,8.192542781096424,20.88037500546419,48.842535260883466,65.83575599943718,99.66164562483877,28.301951912087496,63.6392510976014,53.32717553757956,8.453445051503728,93.1438159554922,49.207463799506044,91.67617979084952,4.816407964990887,65.97978945151982,84.04735291044044,54.5974706151387,49.17140186629256,27.45513574006866,1.5079491537574263,8.016756664560177,17.5739585539058,15.583769368937228,18.339715217013108,2.26697853619352,24.549622564065054,79.09184836190512,15.312374220326596,96.45611307298392,71.40599858287663,95.08841820653439,77.76143644870488,14.495079692111423,2.890001283691679,36.48820769912411,63.619922820917864,61.25844017094742,20.921245054811344,62.39020019749408,28.968638564644735,72.65179681978253,59.46636427495231,90.79739246479627,83.09402024862106,92.74842103179,0.6899103683550845,53.08047348546686,95.06900241562487,50.78356169303261,41.536292150132795,57.82267707739833,74.7694458743286,91.99350310283982,7.588344925182833,18.879945140326438,10.227020645496122,49.40534557156583,47.21375365755331,98.70042193466844,96.07755958421184,41.240750464266505,63.99694470499053,16.15566636081325,35.544135907008155,49.83023141959628,47.37346992903662,77.44883892874769,20.404145131644626,18.71631443789462,15.34115963846656,22.671863856647402,27.487009001496986,43.90119588492964,20.35770412485496,57.889239061909606,0.4983850767113829,63.74205333828517,75.53832523337232,51.28250773630461,70.53174617656403,38.73117297952028,73.56702398097006,68.1850208184884,75.69467204925083,71.71890167650275,96.98187440946931,84.81426707942981,63.48964554333513,22.86461358877968,48.87487483005819,1.788224423814544,35.96710632272767,34.82982711331481,50.56526717604313,20.949682008902183,56.396612742621,27.324554885798978,29.55363743102446,46.68944443165234,30.731029760211538,82.67866134923025,44.94997186110815,15.217404044146699,77.3772967406876,77.28715519095087,56.24710345845103,93.87468416137892,67.16901220728258,29.788604530292883,33.612018164352065,91.22068033652087,89.83803285467533,47.02563712040391,50.87416240539557,86.36673483703514,92.30411082832954,49.79749254634026,17.929145688141325,2.221542525555309,92.73042083991336,6.804550334647574,47.907468168149514,37.43314603774982,77.00687399394972,90.37748945429995,91.67532555864022,23.077522360743163,15.367740799461894,65.58943102374353,66.07212979507727,95.64832476390818,46.39601416761619,58.10978249166019,2.6489658561177687,79.18308383196792,12.274863540326198,52.5132895321335,28.188371274486435,85.35885350701787,72.26924601289154,21.262324510041374,74.66540999798653,6.251071786924022,44.04462651269638,1.352163764233949,36.9400371153593,71.90548305933996,7.980028883485868,18.09628565071132,83.07740005341,18.496606924063997,73.81182745832791,86.8721004089088,42.421496350351106,11.065542659572792,80.22270576883204,7.192571819896287,85.75647160830636,0.10198093983605494,84.88724794381707,70.46221083045779,25.229377466137016,51.42732790830926,81.57871870720298,53.50188155595248,62.88665124705608,95.34646195375693,68.81535653195026,65.08264468207173,64.56032391616097,85.37023659156411,32.334431935211896,15.827766855510584,21.576687280226913,18.18853399399253,70.3100534852963,55.130824428437194,53.136560795904884,14.624034070667536,75.74097894130979,40.96382730207178,72.23370798156719,6.144781722954351,33.471283379927165,75.7968388409593,63.723345799995535,97.23184424905563,55.19061236625533,42.40041782474058,67.5140452362568,23.695291666490416,22.708672181904767,34.70463626418147,4.047694359302079,16.37800214871097,64.39376673529114,4.116060190061122,35.02068177868999,91.20303490884072,27.1439055780198,25.986550750385373,56.442619443917664,90.0990488469279,94.69909325043483,22.875480004716486,39.24741267082664,86.64970872098381,92.84704109838383,89.5909505813516,67.99465186722236,92.25892118254494,50.98581016691573,59.37336874553094,54.48095511263142,1.0553319158958185,81.93556770956215,71.33904708077355,21.21475141719239,43.80315196726641,12.14726630323203,30.60598413073672,85.75845653355988,51.85913950223136,8.915607537996262,14.922270713731978,22.742241371447392,92.78935153233567,31.56962011105462,2.0817839828526585,2.2557242572266323,17.074245071901117,71.69798702397753,12.81884654529093,56.652311159682526,87.00354240542792,76.76433533645647,31.849481588570395,91.08654158386182,55.39982916490855,21.225645515563606,7.5848709246767125,83.67954512539572,94.51957939145305,89.16750777783714,45.53183111696924,28.103049265879477,82.87732523757559,27.93073146417938,49.65209553148945,27.89752622471263,87.64358102551611,82.18199503748603,89.16566708212478,7.651446751434432,99.03536315470748,32.93990748800611,82.51778974706863,94.56841888676084,75.00179894237957,43.70560800308482,20.124591219830712,5.888483580745962,21.29838590565146,38.736827756377224,81.02182984608243,66.0672793332729,60.65215604200851,89.8294098604683,19.032452591856575,27.657536283700367,6.34028794267143,93.06219424119033,89.73466687485573,82.11383255545218,76.52588524031579,15.73676576762615,38.471332652815846,36.3403091794277,6.2297213657922175,33.01836705721385,7.98302975434787,75.59294860373066,37.9337729754812,98.7974919252352,17.121962883635046,90.09848373591207,78.20894542779786,30.114193078318905,23.298634121609663,51.2035651337432,17.016723879097118,27.852065907377455,83.49701133737433,54.0093099065345,41.28602064870409,34.12757702346186,84.57303285813276,29.33920654824478,86.94323931221398,49.33842600001156,95.21408130280416,59.807758640927275,18.07369409188967,50.77658034940031,83.97400751449553,53.46685383349897,30.384295155155282,43.11503201237984,84.82149185455722,43.11989873265735,70.71956905064573,23.281806793253356,46.25610006618363,47.32348349063689,17.668152721541897,36.24906605198672,86.70960935620637,54.18252024241054,57.385211186742914,1.8575516700311878,47.28908919016084,32.84314864856468,69.71200920181445,27.93438289770307,36.74625509071091,93.4129453402986,66.92135688340332,93.03451360956062,27.993392385831783,86.83503735548445,42.83089120775815,0.11112344334798241,8.498635924704868,14.330271627157288,4.485891130500486,87.13635395224281,71.67216659264164,65.85213895834019,54.96719081656144,29.821604436764847,66.79346038395497,51.96447790877679,54.31010621781728,13.487528198447595,16.549361699580768,94.73320003262775,12.898764890624225,12.262305892968383,66.3559858830612,3.6594096463722248,59.01731485621953,75.11059951068083,29.397987479572407,9.787177139848469,96.77598933379981,34.22974708173698,37.315070660037804,82.6983604940009,79.78527911111576,24.25728536841416,8.832807890159089,62.170063517665916,85.22006984495323,18.59317233940666,71.13823725732003,2.813796327842255,52.445906025923875,70.22173813816221,91.36081399836947,99.83951893403048,18.23154991380832,24.355630586212506,80.21162305395897,50.63559744832621,20.971904245699978,11.189436138108356,90.94935142123074,29.065275216901476,18.661225687117,81.10788563530731,52.41358963631328,45.455919579358415,79.3772943427737,28.63130882253414,92.7905692282035,83.66075511086403,18.796660250391696,25.430902549172384,69.26630160635209,19.832649623440833,58.2356071417513,0.004489985646383143,49.20569584488882,69.77739598263068,19.493324156120305,7.098200843115343,19.357825295423893,14.303867682748328,44.0790909978743,79.84915521035425,7.500902174465551,24.325210195929525,37.13679373702937,60.33677544548163,90.04090052026058,81.63102078799143,79.9270378935058,94.25071971841523,30.736834521149483,53.000019214988235,95.9151282116116,39.036507547340406,91.80047249271956,44.18278060324633,19.055393078791795,20.952852640006604,94.72987696466657,37.76796473997371,45.00686007612275,75.59368286619161,98.88917732241379,29.520753322977267,42.43229396427485,20.52827438565713,85.00233832705322,23.299629693859202,54.12982726862048,19.881265280947936,1.6913606994172214]}},"id":"7fa53037-bac5-496a-af71-c1e6cd894e2d","type":"ColumnDataSource"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"}},"id":"5d0bb551-a7d5-4369-920c-c9a6804ef172","type":"Grid"},{"attributes":{"dimension":1,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"}},"id":"2cb755c0-32ae-4af1-8038-5acaf48b8322","type":"Grid"},{"attributes":{"active_drag":"auto","active_scroll":"auto","active_tap":"auto","tools":[{"id":"9004d723-65b0-49ad-a8be-8a3d029fe8b1","type":"HoverTool"},{"id":"ddf589ea-beb2-413d-942e-67d169a555b8","type":"CrosshairTool"},{"id":"cd9dbbc4-377e-4d33-9891-9e2d8d415fd3","type":"PanTool"},{"id":"6a2fa843-e0f0-4297-b693-a1b3bf015112","type":"WheelZoomTool"},{"id":"9a21dc34-11ce-4dba-9c88-652c166dd66d","type":"BoxZoomTool"},{"id":"2c97989f-545f-4a98-bfde-7321cdcc9b6e","type":"ResetTool"},{"id":"ed92348a-eb48-4310-a92f-eda788e37773","type":"TapTool"},{"id":"56c8ae54-ae88-4977-afbe-e1741302711d","type":"SaveTool"},{"id":"4e6a54a1-0f6a-4fd6-b648-5a7616a2261d","type":"BoxSelectTool"},{"id":"a9eaf293-91ae-4d0a-b5fb-59d549fa7a8b","type":"PolySelectTool"},{"id":"f24e96e0-b8e0-442e-a66f-ed60c7b980d7","type":"LassoSelectTool"}]},"id":"fd8e3f33-c745-43d9-8d2c-e820c1600c2c","type":"Toolbar"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"56c8ae54-ae88-4977-afbe-e1741302711d","type":"SaveTool"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"ddf589ea-beb2-413d-942e-67d169a555b8","type":"CrosshairTool"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"xs_units":"screen","ys_units":"screen"},"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},{"attributes":{"formatter":{"id":"bd606451-b6cd-48cd-959a-66202e025a24","type":"BasicTickFormatter"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"}},"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"},{"attributes":{"overlay":{"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"a9eaf293-91ae-4d0a-b5fb-59d549fa7a8b","type":"PolySelectTool"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"xs_units":"screen","ys_units":"screen"},"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},{"attributes":{"callback":null},"id":"801a4cbe-dc36-4846-9f46-197c6ab2cb29","type":"DataRange1d"},{"attributes":{"data_source":{"id":"7fa53037-bac5-496a-af71-c1e6cd894e2d","type":"ColumnDataSource"},"glyph":{"id":"222e0e43-a03f-4e43-96f5-ce0b39a9fab0","type":"Circle"},"hover_glyph":null,"nonselection_glyph":{"id":"6947d7ee-b182-48e3-82b5-d62587267dac","type":"Circle"},"selection_glyph":null},"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"},{"attributes":{"callback":null},"id":"c0977ced-816d-43a3-9d91-146ce0fa8b71","type":"DataRange1d"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"2c97989f-545f-4a98-bfde-7321cdcc9b6e","type":"ResetTool"},{"attributes":{"plot":null,"text":null},"id":"286c6214-008f-410c-9280-5b3ef7cca970","type":"Title"},{"attributes":{},"id":"bd606451-b6cd-48cd-959a-66202e025a24","type":"BasicTickFormatter"},{"attributes":{"callback":null,"overlay":{"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"f24e96e0-b8e0-442e-a66f-ed60c7b980d7","type":"LassoSelectTool"}],"root_ids":["bd222891-e6b1-4c40-a0b3-75ad439a625d"]},"title":"Bokeh Application","version":"0.12.2"}}; | |
var render_items = [{"docid":"abac24f5-a8ff-4814-853f-6b0d1ca1da97","elementid":"e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c","modelid":"bd222891-e6b1-4c40-a0b3-75ad439a625d"}]; | |
Bokeh.embed.embed_items(docs_json, render_items); | |
}); | |
}, | |
function(Bokeh) { | |
} | |
]; | |
function run_inline_js() { | |
if ((window.Bokeh !== undefined) || (force === "1")) { | |
for (var i = 0; i < inline_js.length; i++) { | |
inline_js[i](window.Bokeh); | |
}if (force === "1") { | |
display_loaded(); | |
}} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(run_inline_js, 100); | |
} else if (!window._bokeh_failed_load) { | |
console.log("Bokeh: BokehJS failed to load within specified timeout."); | |
window._bokeh_failed_load = true; | |
} else if (!force) { | |
var cell = $("#e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c").parents('.cell').data().cell; | |
cell.output_area.append_execute_result(NB_LOAD_WARNING) | |
} | |
} | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: BokehJS loaded, going straight to plotting"); | |
run_inline_js(); | |
} else { | |
load_libs(js_urls, function() { | |
console.log("Bokeh: BokehJS plotting callback run at", now()); | |
run_inline_js(); | |
}); | |
} | |
}(this)); | |
</script></div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [ ]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span> | |
</pre></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="sphinxsidebar" role="navigation" aria-label="main navigation"> | |
<div class="sphinxsidebarwrapper"><div class="relations"> | |
<h3>Related Topics</h3> | |
<ul> | |
<li><a href="index.html">Documentation overview</a><ul> | |
<li>Previous: <a href="index.html" title="previous chapter">Welcome to test’s documentation!</a></li> | |
</ul></li> | |
</ul> | |
</div> | |
<div role="note" aria-label="source link"> | |
<h3>This Page</h3> | |
<ul class="this-page-menu"> | |
<li><a href="_sources/color_scatterplot.txt" | |
rel="nofollow">Show Source</a></li> | |
</ul> | |
</div> | |
<div id="searchbox" style="display: none" role="search"> | |
<h3>Quick search</h3> | |
<form class="search" action="search.html" method="get"> | |
<div><input type="text" name="q" /></div> | |
<div><input type="submit" value="Go" /></div> | |
<input type="hidden" name="check_keywords" value="yes" /> | |
<input type="hidden" name="area" value="default" /> | |
</form> | |
</div> | |
<script type="text/javascript">$('#searchbox').show(0);</script> | |
</div> | |
</div> | |
<div class="clearer"></div> | |
</div> | |
<div class="footer"> | |
©2016, FDR. | |
| | |
Powered by <a href="http://sphinx-doc.org/">Sphinx 1.4.6</a> | |
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.9</a> | |
| | |
<a href="_sources/color_scatterplot.txt" | |
rel="nofollow">Page source</a> | |
</div> | |
</body> | |
</html> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title><no title> — test 0.1 documentation</title> | |
<link rel="stylesheet" href="_static/alabaster.css" type="text/css" /> | |
<link rel="stylesheet" href="_static/pygments.css" type="text/css" /> | |
<script type="text/javascript"> | |
var DOCUMENTATION_OPTIONS = { | |
URL_ROOT: './', | |
VERSION: '0.1', | |
COLLAPSE_INDEX: false, | |
FILE_SUFFIX: '.html', | |
HAS_SOURCE: true | |
}; | |
</script> | |
<script type="text/javascript" src="_static/jquery.js"></script> | |
<script type="text/javascript" src="_static/underscore.js"></script> | |
<script type="text/javascript" src="_static/doctools.js"></script> | |
<link rel="top" title="test 0.1 documentation" href="index.html" /> | |
<link rel="prev" title="Welcome to test’s documentation!" href="index.html" /> | |
<link rel="stylesheet" href="_static/custom.css" type="text/css" /> | |
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" /> | |
</head> | |
<body role="document"> | |
<div class="document"> | |
<div class="documentwrapper"> | |
<div class="bodywrapper"> | |
<div class="body" role="main"> | |
<style> | |
/* CSS for nbsphinx extension */ | |
/* remove conflicting styling from Sphinx themes */ | |
div.nbinput, | |
div.nbinput > div, | |
div.nbinput div[class^=highlight], | |
div.nbinput div[class^=highlight] pre, | |
div.nboutput, | |
div.nboutput > div, | |
div.nboutput div[class^=highlight], | |
div.nboutput div[class^=highlight] pre { | |
background: none; | |
border: none; | |
padding: 0 0; | |
margin: 0; | |
box-shadow: none; | |
} | |
/* avoid gaps between output lines */ | |
div.nboutput div[class^=highlight] pre { | |
line-height: normal; | |
} | |
/* input/output containers */ | |
div.nbinput, | |
div.nboutput { | |
display: -webkit-flex; | |
display: flex; | |
align-items: flex-start; | |
margin: 0; | |
} | |
/* input container */ | |
div.nbinput { | |
padding-top: 5px; | |
} | |
/* last container */ | |
div.nblast { | |
padding-bottom: 5px; | |
} | |
/* input prompt */ | |
div.nbinput > :first-child pre { | |
color: #303F9F; | |
} | |
/* output prompt */ | |
div.nboutput > :first-child pre { | |
color: #D84315; | |
} | |
/* all prompts */ | |
div.nbinput > :first-child[class^=highlight], | |
div.nboutput > :first-child[class^=highlight], | |
div.nboutput > :first-child { | |
min-width: 9ex; | |
padding-top: 0.4em; | |
padding-right: 0.4em; | |
text-align: right; | |
flex: 0; | |
} | |
/* input/output area */ | |
div.nbinput > :nth-child(2)[class^=highlight], | |
div.nboutput > :nth-child(2), | |
div.nboutput > :nth-child(2)[class^=highlight] { | |
padding: 0.4em; | |
-webkit-flex: 1; | |
flex: 1; | |
overflow: auto; | |
} | |
/* input area */ | |
div.nbinput > :nth-child(2)[class^=highlight] { | |
border: 1px solid #cfcfcf; | |
border-radius: 2px; | |
background: #f7f7f7; | |
} | |
/* override MathJax center alignment in output cells */ | |
div.nboutput div[class*=MathJax] { | |
text-align: left !important; | |
} | |
/* override sphinx.ext.pngmath center alignment in output cells */ | |
div.nboutput div.math p { | |
text-align: left; | |
} | |
/* standard error */ | |
div.nboutput > :nth-child(2).stderr { | |
background: #fdd; | |
} | |
/* ANSI colors */ | |
.ansi-black-fg { color: #3E424D; } | |
.ansi-black-bg { background-color: #3E424D; } | |
.ansi-black-intense-fg { color: #282C36; } | |
.ansi-black-intense-bg { background-color: #282C36; } | |
.ansi-red-fg { color: #E75C58; } | |
.ansi-red-bg { background-color: #E75C58; } | |
.ansi-red-intense-fg { color: #B22B31; } | |
.ansi-red-intense-bg { background-color: #B22B31; } | |
.ansi-green-fg { color: #00A250; } | |
.ansi-green-bg { background-color: #00A250; } | |
.ansi-green-intense-fg { color: #007427; } | |
.ansi-green-intense-bg { background-color: #007427; } | |
.ansi-yellow-fg { color: #DDB62B; } | |
.ansi-yellow-bg { background-color: #DDB62B; } | |
.ansi-yellow-intense-fg { color: #B27D12; } | |
.ansi-yellow-intense-bg { background-color: #B27D12; } | |
.ansi-blue-fg { color: #208FFB; } | |
.ansi-blue-bg { background-color: #208FFB; } | |
.ansi-blue-intense-fg { color: #0065CA; } | |
.ansi-blue-intense-bg { background-color: #0065CA; } | |
.ansi-magenta-fg { color: #D160C4; } | |
.ansi-magenta-bg { background-color: #D160C4; } | |
.ansi-magenta-intense-fg { color: #A03196; } | |
.ansi-magenta-intense-bg { background-color: #A03196; } | |
.ansi-cyan-fg { color: #60C6C8; } | |
.ansi-cyan-bg { background-color: #60C6C8; } | |
.ansi-cyan-intense-fg { color: #258F8F; } | |
.ansi-cyan-intense-bg { background-color: #258F8F; } | |
.ansi-white-fg { color: #C5C1B4; } | |
.ansi-white-bg { background-color: #C5C1B4; } | |
.ansi-white-intense-fg { color: #A1A6B2; } | |
.ansi-white-intense-bg { background-color: #A1A6B2; } | |
.ansi-bold { font-weight: bold; } | |
</style> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [1]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>import numpy as np | |
from six.moves import zip | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [2]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>from bokeh.plotting import figure, show, output_notebook | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [3]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>N = 4000 | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput nblast container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [4]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>x = np.random.random(size=N) * 100 | |
y = np.random.random(size=N) * 100 | |
radii = np.random.random(size=N) * 1.5 | |
colors = ["#%02x%02x%02x" % (int(r), int(g), 150) for r, g in zip(50+2*x, 30+2*y)] | |
</pre></div> | |
</div> | |
</div> | |
<div class="nbinput container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [5]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>output_notebook() | |
</pre></div> | |
</div> | |
</div> | |
<div class="nboutput container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="bk-root"> | |
<a href="http://bokeh.pydata.org" target="_blank" class="bk-logo bk-logo-small bk-logo-notebook"></a> | |
<span id="bd13d019-0fc2-4236-9b0e-8e7d2ad5ec55">Loading BokehJS ...</span> | |
</div></div> | |
</div> | |
<div class="nboutput nblast container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="admonition warning"> | |
Data type cannot be displayed: application/javascript</div> | |
</div> | |
</div> | |
<div class="nbinput container"> | |
<div class="highlight-none"><div class="highlight"><pre> | |
<span></span>In [6]: | |
</pre></div> | |
</div> | |
<div class="highlight-ipython2"><div class="highlight"><pre> | |
<span></span>TOOLS="hover,crosshair,pan,wheel_zoom,box_zoom,reset,tap,save,box_select,poly_select,lasso_select" | |
p = figure(tools=TOOLS) | |
p.scatter(x,y, radius=radii, fill_color=colors, fill_alpha=0.6, line_color=None) | |
show(p) | |
</pre></div> | |
</div> | |
</div> | |
<div class="nboutput nblast container"> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
<div class="bk-root"> | |
<div class="plotdiv" id="e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"></div> | |
</div> | |
<script type="text/javascript"> | |
(function(global) { | |
function now() { | |
return new Date(); | |
} | |
var force = ""; | |
if (typeof (window._bokeh_onload_callbacks) === "undefined" || force !== "") { | |
window._bokeh_onload_callbacks = []; | |
window._bokeh_is_loading = undefined; | |
} | |
if (typeof (window._bokeh_timeout) === "undefined" || force !== "") { | |
window._bokeh_timeout = Date.now() + 0; | |
window._bokeh_failed_load = false; | |
} | |
var NB_LOAD_WARNING = {'data': {'text/html': | |
"<div style='background-color: #fdd'>\n"+ | |
"<p>\n"+ | |
"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \n"+ | |
"may be due to a slow or bad network connection. Possible fixes:\n"+ | |
"</p>\n"+ | |
"<ul>\n"+ | |
"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\n"+ | |
"<li>use INLINE resources instead, as so:</li>\n"+ | |
"</ul>\n"+ | |
"<code>\n"+ | |
"from bokeh.resources import INLINE\n"+ | |
"output_notebook(resources=INLINE)\n"+ | |
"</code>\n"+ | |
"</div>"}}; | |
function display_loaded() { | |
if (window.Bokeh !== undefined) { | |
Bokeh.$("#e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c").text("BokehJS successfully loaded."); | |
} else if (Date.now() < window._bokeh_timeout) { | |
setTimeout(display_loaded, 100) | |
} | |
} | |
function run_callbacks() { | |
window._bokeh_onload_callbacks.forEach(function(callback) { callback() }); | |
delete window._bokeh_onload_callbacks | |
console.info("Bokeh: all callbacks have finished"); | |
} | |
function load_libs(js_urls, callback) { | |
window._bokeh_onload_callbacks.push(callback); | |
if (window._bokeh_is_loading > 0) { | |
console.log("Bokeh: BokehJS is being loaded, scheduling callback at", now()); | |
return null; | |
} | |
if (js_urls == null || js_urls.length === 0) { | |
run_callbacks(); | |
return null; | |
} | |
console.log("Bokeh: BokehJS not loaded, scheduling load and callback at", now()); | |
window._bokeh_is_loading = js_urls.length; | |
for (var i = 0; i < js_urls.length; i++) { | |
var url = js_urls[i]; | |
var s = document.createElement('script'); | |
s.src = url; | |
s.async = false; | |
s.onreadystatechange = s.onload = function() { | |
window._bokeh_is_loading--; | |
if (window._bokeh_is_loading === 0) { | |
console.log("Bokeh: all BokehJS libraries loaded"); | |
run_callbacks() | |
} | |
}; | |
s.onerror = function() { | |
console.warn("failed to load library " + url); | |
}; | |
console.log("Bokeh: injecting script tag for BokehJS library: ", url); | |
document.getElementsByTagName("head")[0].appendChild(s); | |
} | |
};var element = document.getElementById("e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c"); | |
if (element == null) { | |
console.log("Bokeh: ERROR: autoload.js configured with elementid 'e4ba3c03-dbe2-4eae-a3a0-2ebd9477cc9c' but no matching script tag was found. ") | |
return false; | |
} | |
var js_urls = []; | |
var inline_js = [ | |
function(Bokeh) { | |
Bokeh.$(function() { | |
var docs_json = {"abac24f5-a8ff-4814-853f-6b0d1ca1da97":{"roots":{"references":[{"attributes":{},"id":"cb10f75c-54eb-404d-9148-ee2a22624f3f","type":"BasicTicker"},{"attributes":{},"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9004d723-65b0-49ad-a8be-8a3d029fe8b1","type":"HoverTool"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"6a2fa843-e0f0-4297-b693-a1b3bf015112","type":"WheelZoomTool"},{"attributes":{"formatter":{"id":"18a60d25-0360-4f7f-9125-0fab33da2c70","type":"BasicTickFormatter"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"ticker":{"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"}},"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"attributes":{"callback":null,"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"ed92348a-eb48-4310-a92f-eda788e37773","type":"TapTool"},{"attributes":{"fill_alpha":{"value":0.6},"fill_color":{"field":"fill_color"},"line_color":{"value":null},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"222e0e43-a03f-4e43-96f5-ce0b39a9fab0","type":"Circle"},{"attributes":{"callback":null,"overlay":{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},"renderers":[{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}]},"id":"4e6a54a1-0f6a-4fd6-b648-5a7616a2261d","type":"BoxSelectTool"},{"attributes":{"below":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"}],"left":[{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"}],"renderers":[{"id":"dfe4d590-7597-4398-bd59-1edb6690f44d","type":"LinearAxis"},{"id":"5d0bb551-a7d5-4369-920c-c9a6804ef172","type":"Grid"},{"id":"e2bf0915-9f1c-4cc5-898f-feb0041de0ad","type":"LinearAxis"},{"id":"2cb755c0-32ae-4af1-8038-5acaf48b8322","type":"Grid"},{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"id":"12f95003-67f1-4729-a2c4-6e0e2f7679bd","type":"PolyAnnotation"},{"id":"3f151663-243e-4f0c-a852-b11e7a3b9bc0","type":"PolyAnnotation"},{"id":"c5f1cd93-d9bb-4b23-bf48-b5333e348a2c","type":"GlyphRenderer"}],"title":{"id":"286c6214-008f-410c-9280-5b3ef7cca970","type":"Title"},"tool_events":{"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},"toolbar":{"id":"fd8e3f33-c745-43d9-8d2c-e820c1600c2c","type":"Toolbar"},"x_range":{"id":"c0977ced-816d-43a3-9d91-146ce0fa8b71","type":"DataRange1d"},"y_range":{"id":"801a4cbe-dc36-4846-9f46-197c6ab2cb29","type":"DataRange1d"}},"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"},{"attributes":{},"id":"6672cc53-4946-4ab9-932e-83fe56dfdc18","type":"BasicTicker"},{"attributes":{"fill_alpha":{"value":0.1},"fill_color":{"value":"#1f77b4"},"line_alpha":{"value":0.1},"line_color":{"value":"#1f77b4"},"radius":{"field":"radius","units":"data"},"x":{"field":"x"},"y":{"field":"y"}},"id":"6947d7ee-b182-48e3-82b5-d62587267dac","type":"Circle"},{"attributes":{},"id":"2453f14e-c5cd-4c34-8f51-4456ce1d6b16","type":"ToolEvents"},{"attributes":{"overlay":{"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"9a21dc34-11ce-4dba-9c88-652c166dd66d","type":"BoxZoomTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"dbfaa79b-da38-488e-9fa3-309a576ffa6d","type":"BoxAnnotation"},{"attributes":{"plot":{"id":"bd222891-e6b1-4c40-a0b3-75ad439a625d","subtype":"Figure","type":"Plot"}},"id":"cd9dbbc4-377e-4d33-9891-9e2d8d415fd3","type":"PanTool"},{"attributes":{"bottom_units":"screen","fill_alpha":{"value":0.5},"fill_color":{"value":"lightgrey"},"left_units":"screen","level":"overlay","line_alpha":{"value":1.0},"line_color":{"value":"black"},"line_dash":[4,4],"line_width":{"value":2},"plot":null,"render_mode":"css","right_units":"screen","top_units":"screen"},"id":"a2de5320-c55e-4fcf-9c53-fc39077cacc2","type":"BoxAnnotation"},{"attributes":{"callback":null,"column_names":["radius","y","x","fill_color"],"data":{"fill_color":["#994a96","#912c96","#d16396","#6ebc96","#766296","#63da96","#7d3d96","#b58496","#a84396","#af2996","#f32696","#433a96","#6c8296","#eeb096","#756096","#ca7c96","#b58696","#7aa396","#b9bd96","#ad9e96","#b53196","#5d2496","#bbb596","#343a96","#837b96","#872896","#f9d196","#33c496","#c3cd96","#a2e496","#a39596","#3c3696","#c9a196","#aed496","#688a96","#a02d96","#3b5c96","#97a096","#756796","#f3dd96","#7aa896","#e85096","#89c696","#bcb196","#5a4e96","#457b96","#72a596","#3b6f96","#755996","#35c496","#cce096","#e0bf96","#a56196","#c45196","#69ae96","#a58496","#6a5796","#e7b496","#7c3596","#47ae96","#aadf96","#e0b396","#9d5e96","#336996","#d74696","#4f8796","#9cd096","#d3c396","#413396","#869296","#4b3b96","#332796","#932296","#6e8196","#852896","#788c96","#8abf96","#f85796","#acda96","#777496","#956d96","#3a2696","#cbb496","#f3be96","#deac96","#737896","#99a096","#7e5496","#72e296","#392f96","#da9b96","#92d796","#a04b96","#748c96","#752196","#853896","#af9596","#cc6f96","#c54496","#35a196","#dc2d96","#7d4196","#89a696","#355896","#924396","#ec6396","#989f96","#4e8996","#e7a096","#c3a496","#bbc096","#4bde96","#6a8d96","#f95496","#6c8596","#5fde96","#eba096","#855496","#836c96","#579e96","#425696","#dc8696","#32e396","#8ee196","#f7b296","#73b196","#c4b496","#ee6e96","#8dd696","#a35996","#73ce96","#d77e96","#92c596","#aebe96","#7ec296","#cd2c96","#7b9f96","#bc4196","#e86996","#696d96","#435196","#b1a996","#a4bf96","#9a2e96","#883896","#d7a396","#b55496","#63b496","#5e4c96","#65a496","#bd9b96","#8e6396","#b23396","#a08996","#6f9e96","#707796","#e99496","#856196","#ab6c96","#586596","#cabf96","#378d96","#ee8296","#942896","#34d696","#be2f96","#c35696","#ccdb96","#51a396","#c08296","#a8a896","#828c96","#e14696","#d7b096","#5c8596","#56cb96","#4a9296","#5d9d96","#3c3a96","#3cc796","#e53896","#429896","#6c7096","#b5e296","#589096","#c34196","#538496","#bfdb96","#ad7c96","#ae2096","#ae2d96","#5f9696","#8a5b96","#a56596","#3f5396","#615d96","#84bc96","#4dce96","#9ad396","#cbd896","#d47096","#5a5596","#32c396","#e35196","#8d7896","#f45496","#913e96","#f95796","#b2b296","#b2a296","#75d696","#c0c796","#974b96","#4bda96","#469c96","#656296","#4a4f96","#7f8b96","#a03f96","#6caa96","#49a596","#68c596","#d74f96","#bf6f96","#66cd96","#81a696","#86cb96","#883296","#a38896","#e96a96","#712596","#ef2a96","#cc4996","#c49896","#487496","#b74096","#4d4b96","#498a96","#3f5b96","#44c896","#3c8396","#3da596","#66dc96","#49ca96","#cdb496","#9ebd96","#512d96","#a0dc96","#c12796","#5e7296","#916d96","#7d7996","#543696","#c9b796","#4d3896","#575196","#538c96","#522496","#917696","#942c96","#cf5396","#518c96","#a6b496","#f6bb96","#58db96","#556b96","#a4ae96","#499996","#a63396","#c82b96","#c53c96","#877b96","#65b196","#639896","#37a696","#819696","#b2aa96","#7a6196","#81bf96","#4e4596","#dd9196","#995496","#6ba096","#807e96","#c54896","#d6cb96","#768a96","#355696","#b2df96","#328b96","#932d96","#472196","#655a96","#4d8396","#6a2896","#336396","#5c4396","#9e4d96","#c12d96","#917196","#322a96","#544696","#527796","#98ab96","#5b4496","#a64596","#6b8596","#a25396","#863b96","#5fba96","#da7d96","#e34d96","#455e96","#e83c96","#8a3c96","#3a9596","#a94596","#765996","#3fd296","#403396","#a24196","#865b96","#cf2d96","#7f6796","#cca596","#948096","#cb3496","#922d96","#e69396","#e56f96","#a04796","#747996","#f9ac96","#bbca96","#ea7496","#9f7396","#78ad96","#d5c496","#52a896","#997696","#e63b96","#517296","#afc696","#7dcb96","#402396","#559f96","#bd7996","#f67696","#714796","#d04796","#d82696","#90a096","#9e4896","#f22196","#587f96","#f1df96","#674a96","#339996","#784f96","#5b9096","#617e96","#f0bc96","#b32196","#676c96","#abc396","#e94296","#755796","#5e5096","#5caf96","#b44a96","#855496","#a4d096","#a44796","#7cab96","#612596","#3b7296","#e2a496","#8dc996","#de5a96","#4a4496","#712a96","#782c96","#859296","#e93f96","#6f2496","#b8c996","#b27496","#edda96","#97df96","#33c096","#554096","#afc096","#ad7596","#b2de96","#7dae96","#684196","#595b96","#632c96","#b1c396","#8a5596","#ca1e96","#6e3d96","#32b496","#b08d96","#377b96","#578396","#c56f96","#90af96","#a38c96","#5c5f96","#468896","#b07a96","#7bbe96","#f35d96","#66d096","#403e96","#f03496","#75cf96","#75d796","#eb7096","#c57596","#c4e496","#e26096","#e0a196","#381e96","#6e3696","#433296","#66c496","#e69996","#b31f96","#512296","#46b296","#537096","#ae8996","#c4bb96","#6a8296","#f0a996","#b57496","#f48196","#39ae96","#be5a96","#5c8796","#d8ae96","#ac7d96","#93c196","#d97696","#cb8f96","#e98b96","#465896","#bb9e96","#c9d596","#f35e96","#912c96","#f53c96","#c42196","#c52796","#b7c596","#837b96","#6bd096","#c1d696","#8b5f96","#837496","#915b96","#3bc896","#a49996","#427e96","#d4e196","#389796","#817b96","#c99496","#ceaa96","#f3df96","#d12596","#784f96","#a24096","#903b96","#338c96","#a4db96","#481e96","#5f5696","#34b596","#c94f96","#773e96","#db3396","#63a496","#f5b496","#b8b496","#8ec096","#d8db96","#cb8596","#35a696","#b75d96","#694896","#ca3096","#906996","#47cc96","#ab2496","#e85496","#6a7d96","#6c5d96","#c63c96","#d2c496","#89e196","#74b996","#4a6596","#f05396","#a45196","#57ca96","#72ca96","#ad7396","#839796","#419396","#3e6896","#6a3296","#78de96","#4e6996","#f18d96","#cd4896","#803e96","#abbd96","#f14296","#dadb96","#909e96","#904e96","#6da896","#b1b496","#7abf96","#6f5b96","#597696","#373b96","#5dbf96","#e04196","#5f4196","#562696","#467d96","#a45996","#7d6596","#cd2a96","#6c2296","#af9b96","#544696","#5fdb96","#c66f96","#afe396","#8d2f96","#6f7d96","#8a5496","#3e6a96","#a92696","#63c896","#cb7996","#e1c596","#5fa096","#98e296","#7b8b96","#36aa96","#4d9196","#78a496","#be9396","#92cc96","#aa2e96","#a94696","#c9b496","#d4e496","#479496","#444696","#56c996","#c46896","#5e4496","#a44c96","#40c096","#bc9a96","#eeca96","#827d96","#935e96","#3f3b96","#51e296","#8d5e96","#433c96","#adaa96","#b2c696","#737696","#d55596","#dc5896","#e5b996","#8f4696","#f34e96","#5a8396","#9ed696","#f58b96","#385a96","#a89a96","#bd6f96","#8a2596","#7ebe96","#5d6c96","#9ac096","#9c4b96","#dc6296","#efe496","#889596","#4a2896","#f1bf96","#9e5096","#3e2296","#d48f96","#ba6596","#8f9396","#5fc296","#aaad96","#92d396","#b7d296","#563696","#a55796","#bb5896","#632696","#33d796","#49cd96","#549196","#d88796","#c77096","#3f3696","#41a296","#ddc996","#7cbc96","#5d9c96","#83c596","#797e96","#b59196","#3c5d96","#a14f96","#692396","#b69096","#8fc896","#e1bc96","#f58d96","#c88896","#f3d396","#494d96","#928296","#64c096","#4f5c96","#b1d296","#872f96","#35a796","#c52d96","#71ae96","#e97f96","#7c4696","#ca7f96","#cf2496","#8b6996","#f2c096","#3da796","#ebc296","#897096","#d1ce96","#618596","#733e96","#812c96","#892396","#5aae96","#d29896","#e97996","#8a6f96","#7d4396","#4a4596","#b42196","#926b96","#966596","#c58596","#6fcf96","#6b3196","#7f6696","#468896","#43da96","#865596","#e61e96","#622996","#3f3796","#634696","#a15396","#66d696","#e69a96","#ccaf96","#9f7496","#6aa296","#e14e96","#ef9396","#859596","#8b9096","#72d696","#566b96","#d09996","#7d8c96","#7dc396","#e43696","#55ac96","#8c7d96","#8f4b96","#b16d96","#acdc96","#f17b96","#b39d96","#eedb96","#65ba96","#61a496","#ce4696","#8bd896","#916d96","#dabd96","#66a696","#6c7596","#7c9096","#85a896","#b26a96","#e74f96","#759496","#65a096","#3fbe96","#a79996","#cec396","#a6c296","#aa7f96","#802296","#d59896","#924396","#793496","#6d7d96","#a98196","#cea596","#ef5b96","#432096","#32bd96","#545b96","#b55496","#db8096","#bc5e96","#dd2596","#498996","#df9b96","#ec8396","#322596","#4abe96","#65d896","#9e9196","#46ae96","#609996","#b6c796","#f13396","#a97f96","#da6a96","#7b3896","#609d96","#d75796","#d4d596","#79bd96","#e78d96","#50ac96","#508a96","#bbd296","#f75896","#695796","#96e496","#f6af96","#e88096","#5fc196","#e4cc96","#eebc96","#e49296","#d7b996","#91aa96","#b65496","#c38a96","#d39796","#4bc896","#3fa696","#679696","#bcc996","#9f9496","#859396","#7a5196","#563096","#599596","#679f96","#632796","#a98996","#f64996","#bd5596","#34a496","#dea396","#3d3596","#6f3c96","#789796","#f0b296","#f1a196","#475796","#59a996","#6f6696","#dc8f96","#767f96","#a76096","#a0b096","#8bc596","#a0a596","#86a896","#7cc396","#ec7196","#98b196","#ec8296","#96a296","#677496","#dd8696","#bb8296","#645c96","#4a6d96","#3d3896","#44bc96","#b78e96","#90a596","#61a096","#595396","#b9e596","#4c4e96","#38ac96","#50cd96","#35a796","#ea2596","#c62c96","#c75496","#3b3596","#bc3296","#cf5d96","#6f4796","#915696","#8b4696","#652d96","#c13b96","#41a796","#bbc796","#44c296","#bf5396","#889896","#99c796","#93bc96","#896096","#597a96","#578696","#dc2196","#80a996","#d7d796","#72b196","#794196","#40a796","#694496","#b97a96","#e33a96","#45d896","#71c196","#dfb096","#c9d496","#8e5496","#504296","#50d696","#657796","#ebd696","#467e96","#9a5996","#5a3896","#efce96","#39de96","#718396","#605f96","#a44496","#c78496","#5fa196","#ca1e96","#83a096","#857796","#d0ca96","#a93996","#f28496","#6b8396","#969296","#3c8296","#d56696","#519f96","#9e6c96","#b58a96","#512e96","#644496","#72ae96","#c48396","#60db96","#ba4096","#4d6696","#99de96","#cb9796","#a92596","#f5b896","#663796","#d96896","#997796","#40d696","#759096","#ad5096","#a69796","#aae096","#6fd496","#b14196","#ac5c96","#bd6c96","#365596","#ce7e96","#e87f96","#55c096","#8ec496","#a95996","#9e7496","#765096","#3e6a96","#5a2996","#37a496","#5bc796","#69e396","#65c996","#9d7796","#533c96","#7e5896","#4c4796","#f62a96","#a88e96","#542896","#f2b796","#7ede96","#8d1e96","#cfb696","#e18396","#8d3d96","#d87596","#5e3696","#ca5f96","#856596","#63d596","#6c5196","#76e396","#4e4996","#c16196","#cd5296","#33bc96","#88bd96","#ab6a96","#515196","#6d7796","#d5e096","#614d96","#387896","#8cbf96","#8f1e96","#cf6596","#589d96","#c8da96","#3d9f96","#d4c096","#857296","#cf8f96","#d74496","#b9e396","#e95d96","#8ed196","#f1bd96","#543c96","#613996","#bcd696","#f4dc96","#f47196","#ecc096","#ba9596","#a15996","#7f5096","#3dbb96","#dfdd96","#9d6296","#92e196","#86b396","#349a96","#95cc96","#999296","#908396","#d03e96","#bd4c96","#d39c96","#902596","#66d496","#9bab96","#382396","#b79396","#85db96","#af6896","#d4d696","#5dd896","#864d96","#e88596","#52c996","#5bc296","#3b8f96","#f76396","#b28796","#c93096","#cb4596","#542796","#6ddd96","#5e5896","#a72e96","#5c6c96","#8ad896","#582596","#4ad096","#deac96","#487596","#7a7f96","#e6c396","#f05896","#f59b96","#c9da96","#ccaa96","#95a096","#7eb596","#949a96","#878b96","#479f96","#5ebe96","#54b196","#565696","#f36896","#f6c796","#835e96","#5b3696","#888796","#aaa896","#32e196","#6b7596","#c06196","#ea6896","#3b3196","#be3096","#396696","#3d7896","#addc96","#488896","#d34196","#474b96","#8e9496","#536e96","#408196","#58cd96","#a0ad96","#c92c96","#c54396","#462196","#7a8a96","#e17a96","#b36c96","#e98196","#619e96","#435796","#f16496","#e38896","#739f96","#e18196","#cf5196","#cf7596","#517196","#ac8e96","#b84e96","#d5a096","#d3c596","#6f9496","#a4de96","#67bc96","#4a3a96","#db2d96","#e39196","#7f6696","#e56c96","#9fde96","#695e96","#c01e96","#e12196","#5aab96","#842d96","#bbb596","#f68996","#99b196","#956b96","#c06096","#b15a96","#9c6f96","#d25296","#ca2696","#ef2a96","#b0d096","#7a7596","#5e7396","#95bb96","#d8e496","#8b7a96","#3e1e96","#a6d896","#696296","#948696","#5bd596","#35d096","#eda696","#4f2096","#948f96","#6c8b96","#7a2d96","#6b3296","#c0cf96","#599296","#697d96","#8f5e96","#4bc196","#d07996","#c6c796","#ee6096","#8e9296","#996996","#999e96","#dbda96","#4a6e96","#b1da96","#c1c096","#f48396","#5b4096","#a88e96","#7f9c96","#ce5096","#334696","#7c2d96","#8fc896","#969596","#399c96","#562a96","#c75196","#e65896","#e8e396","#775196","#868a96","#4d2096","#5cba96","#3c2096","#432496","#a75a96","#cb3c96","#e23196","#f14196","#6f6796","#847396","#aadd96","#f87496","#f8b696","#bd3696","#7d4a96","#c4d296","#819796","#487596","#4f8896","#6fba96","#f46396","#ddc396","#a25096","#d6da96","#976596","#bc7496","#f48b96","#4ee296","#b62996","#584396","#656c96","#c16396","#512596","#f9ba96","#8f9c96","#66a196","#4de196","#5fd596","#4ed896","#c65796","#d19896","#516296","#5a3196","#f82296","#d36096","#843d96","#36df96","#cccf96","#a7e496","#d24f96","#6f4396","#7f6496","#c29e96","#627196","#664796","#c38596","#b4c896","#cd8396","#337596","#957796","#6da396","#d9a496","#588696","#33df96","#814696","#a4c596","#a8ca96","#f3cb96","#9a4b96","#a2ba96","#9f6c96","#838596","#a27096","#cc6696","#f0b696","#d2e396","#807f96","#609196","#51b796","#5a9696","#795196","#425296","#878296","#f3d696","#835d96","#434896","#c5b796","#4c5d96","#765296","#4de296","#7a7e96","#549196","#5bb596","#832f96","#712c96","#3c4596","#3ca296","#775496","#c13a96","#5d2596","#9e6096","#846c96","#898b96","#c18096","#c4c496","#b66f96","#6f3b96","#d84f96","#3dc596","#38c396","#f7cd96","#ce5796","#a07c96","#4f3796","#5d3596","#4c3e96","#c1b896","#61de96","#536696","#c27096","#cf7096","#c72196","#544096","#767796","#ecb696","#deb996","#993696","#49d096","#506f96","#3e4496","#8ad596","#acad96","#9a2196","#486996","#634096","#bbe496","#eade96","#f39e96","#548396","#368b96","#ccaa96","#d22796","#609996","#7cc196","#d87e96","#f64b96","#f3c396","#485d96","#8d5396","#ce7996","#41ae96","#36cc96","#f06596","#a35496","#875596","#ad6296","#989996","#d69e96","#7f4696","#40dc96","#e24e96","#477e96","#a7a696","#6ac296","#db6f96","#ed8c96","#71e396","#3e7096","#533796","#e66696","#aa5596","#9cd296","#b89496","#476e96","#9d6996","#bc2696","#52d996","#e46b96","#c9bb96","#936996","#5fc196","#65b496","#427596","#61df96","#e4de96","#f72696","#54e196","#4b4396","#e7be96","#f7a496","#913f96","#684896","#944696","#e9e096","#ac3f96","#35d696","#8f8496","#6d7596","#e17a96","#82b396","#7eca96","#79de96","#c52996","#602e96","#8cb596","#b7d896","#69da96","#444596","#ace496","#698496","#844796","#399d96","#8d9396","#c98f96","#6dd396","#d8c096","#935f96","#c27d96","#d3d596","#715896","#348696","#d48a96","#599596","#583d96","#ee7296","#dfa996","#634196","#f1c896","#5fa596","#b12196","#e45a96","#6f2396","#7bcc96","#609596","#7f2b96","#75bb96","#57b996","#597d96","#ef4d96","#52c996","#dcac96","#4f4796","#898e96","#542a96","#925896","#c28496","#6bc496","#ca9196","#865196","#a83d96","#77e496","#cf5896","#a2cf96","#bd3c96","#ba4596","#398d96","#75cf96","#ee2f96","#ba6d96","#808f96","#552296","#e2cd96","#b55496","#dca396","#eb8f96","#d94e96","#608e96","#f8c796","#a02696","#cedb96","#b72296","#9dcf96","#678496","#5bcf96","#e23d96","#619696","#c12f96","#e4d596","#edcd96","#cfce96","#60cb96","#46c296","#95dc96","#8a7e96","#39bb96","#a67996","#54a996","#492296","#f78696","#66d996","#ce2296","#6cac96","#edc596","#d34b96","#5a6896","#53b896","#949696","#f69d96","#f22c96","#3f2f96","#52d396","#9dcf96","#d04696","#322996","#3d9e96","#7c2196","#677a96","#48b996","#a0a096","#579796","#6e2196","#e68d96","#6fb796","#44c296","#5f7396","#babf96","#82a996","#4a5296","#46be96","#4f5b96","#f8e196","#8c5396","#457796","#749796","#f76496","#d2ad96","#a9df96","#35b996","#c2d696","#484196","#e55796","#f33e96","#cf7796","#c6d096","#8d4096","#818896","#347596","#b43696","#8ed996","#43a796","#bc7296","#6cc196","#6bb796","#9aa996","#cdbc96","#55cb96","#72b996","#944396","#aecc96","#eeb796","#827c96","#e46596","#906d96","#688796","#e6b296","#804296","#ce7596","#ef2396","#c5a096","#417396","#478496","#812196","#bdb196","#f8c696","#6e5896","#7fcf96","#a12196","#b37896","#812b96","#d2c396","#cab496","#a14196","#e68096","#4b2296","#e38096","#bad796","#c64a96","#a8c196","#6bbb96","#be5c96","#d47a96","#bb7596","#4e6a96","#392c96","#eb3096","#c15096","#efba96","#df8e96","#964896","#537796","#b18496","#6a6c96","#72b996","#96d196","#e4de96","#508c96","#582396","#b3a696","#e2dd96","#b0a296","#576496","#f86496","#c2aa96","#4b5496","#5a2096","#93b596","#c96496","#c6b196","#b95596","#354696","#a6c496","#c43196","#f3b496","#b5be96","#448f96","#4d4b96","#f38b96","#a1a496","#96b996","#8d7796","#cbd996","#c4df96","#953296","#c1c696","#cfdd96","#d26c96","#a52796","#d22c96","#374f96","#cc3296","#f5a996","#e83096","#8bd796","#f27196","#7d7f96","#a08e96","#c62296","#4d6e96","#b32b96","#726f96","#907c96","#9b4296","#7c3896","#c59696","#679a96","#c9c096","#cb4696","#c65e96","#db9996","#da8e96","#e7c096","#da6f96","#c78796","#907296","#454896","#58cc96","#b84a96","#712d96","#57a996","#c07696","#957796","#86ba96","#64db96","#754696","#5dd596","#f8b296","#d9d696","#f51e96","#718296","#c4d096","#b47696","#e14a96","#e24a96","#e4d896","#b06696","#a1e496","#789596","#508b96","#e9e496","#d2c496","#b16496","#955496","#64c196","#824896","#c03896","#e4e296","#c85896","#df6496","#ce3596","#324d96","#6b6596","#846996","#737b96","#73cb96","#b17e96","#e02f96","#648896","#da5396","#5a5596","#599f96","#cba896","#c37096","#527496","#e59196","#4b4a96","#d1a096","#ad2196","#73ad96","#35c896","#938296","#7a9896","#c9bd96","#d7d396","#7da196","#776d96","#c04996","#427096","#9a6496","#87b796","#e59796","#dd8196","#64b496","#667696","#5da196","#745996","#a77096","#629296","#dab896","#aba596","#c79796","#f37e96","#d31e96","#dd7396","#564396","#33d796","#f2d396","#32c296","#9c4296","#90c996","#bede96","#8f3096","#46a596","#734c96","#c22d96","#b27396","#859e96","#455296","#526196","#5c3b96","#a65d96","#9f3996","#43cc96","#eb8696","#bc7296","#8faf96","#d88696","#d8c796","#969596","#824396","#839996","#756096","#adb396","#462e96","#68d896","#e6bf96","#65e496","#3e5b96","#8d5496","#b2a496","#7ede96","#c3ad96","#95cd96","#92c496","#ddb196","#858496","#866296","#623096","#cc4396","#62be96","#797f96","#d0b796","#6b8196","#d52096","#7c7b96","#5e8696","#6c6f96","#924096","#3fdc96","#638596","#d9ad96","#a4e296","#b92096","#ee9596","#959496","#e42296","#e37c96","#4dd096","#5e6a96","#a86596","#e68e96","#647896","#f8c096","#785396","#cb3696","#c0bc96","#576a96","#907a96","#f75f96","#ec2996","#b5e596","#9c6896","#6d2c96","#5b5096","#5b4896","#a25a96","#6cbc96","#e22396","#474a96","#6e3d96","#73a596","#694596","#f2cf96","#859a96","#36d896","#347b96","#c18996","#e8c296","#c65b96","#a9bf96","#47c896","#66e396","#487696","#c74a96","#c51f96","#487b96","#8a2d96","#58cf96","#c8a096","#3f8096","#9c2096","#a7b696","#484796","#d4e396","#57ae96","#b8b596","#5ace96","#558596","#79c196","#d5d596","#afd396","#622496","#3b6696","#5d9696","#f64f96","#a02796","#f8e496","#b3e496","#959396","#a65796","#667b96","#768996","#ea3696","#612396","#638e96","#96d696","#6ed296","#77df96","#cc4296","#dd8a96","#505496","#7d3c96","#343296","#532996","#922d96","#5b8e96","#cac796","#e75296","#e85896","#ede396","#567696","#7d8096","#9d8b96","#b6c696","#7e9696","#754396","#a72c96","#edd696","#ae9b96","#67cb96","#639f96","#b97796","#c3a796","#4eab96","#39a296","#b0ac96","#5bc096","#578796","#3f5196","#5a8796","#6f8596","#6a6e96","#adc296","#697b96","#d96996","#4d2396","#f34c96","#44cc96","#958896","#429996","#6a7996","#3a6696","#3b9696","#39b496","#e0b096","#56ab96","#4b4696","#4f9996","#cba796","#439196","#d56196","#4fc396","#f1af96","#895096","#d49896","#bc6896","#814a96","#3f4496","#5f9496","#80ac96","#f0a696","#3b6496","#406196","#917a96","#a67696","#61b496","#894396","#386496","#c89c96","#c57496","#817296","#e17b96","#e72c96","#53be96","#d96796","#5e4996","#d94296","#f06b96","#c69296","#83cb96","#e96d96","#48be96","#7e6996","#d78796","#cf6696","#9ea196","#403196","#b99a96","#ad7f96","#6c6696","#4fab96","#9fd796","#3fbc96","#b17c96","#aa9396","#3c5c96","#952896","#915796","#ab5a96","#6c8296","#ae5e96","#392c96","#ba7496","#efd696","#67bd96","#695e96","#8b4f96","#91a496","#c04396","#4c4896","#708296","#b08b96","#477596","#5e2796","#3caa96","#d6ba96","#db7f96","#b28f96","#426196","#6d7f96","#34e596","#c16896","#ca2896","#57b596","#6c3696","#387396","#d18496","#8d4896","#52b596","#c07396","#c76496","#5b8596","#7d7996","#a7de96","#c05296","#792496","#3f3996","#dc7996","#e6b596","#c9c096","#a39396","#4c8196","#b1a896","#6ba296","#f13a96","#7ba096","#83b296","#618296","#c3b396","#91c596","#581f96","#47e296","#56c696","#8e4d96","#c67996","#88ae96","#ef5196","#633896","#557b96","#a74996","#ab8496","#7c1f96","#7ac096","#459596","#3c9296","#f82b96","#846c96","#b94196","#588596","#d2c596","#3b2b96","#3b4096","#f99d96","#af9696","#782496","#4c9596","#b5c396","#705696","#3a4696","#e46a96","#5dce96","#3ac096","#b5a996","#c5ce96","#9ac096","#644296","#dab296","#f8c196","#67a096","#cd9c96","#44d696","#6d5896","#607596","#a24d96","#7b9596","#e69c96","#6fdb96","#5baf96","#747496","#3e3796","#f98b96","#649896","#de7896","#939896","#638496","#759896","#aebe96","#bca696","#542296","#5c9c96","#b9c396","#da7196","#59de96","#af4296","#ae7f96","#87bf96","#d4c696","#c77c96","#db4b96","#c14c96","#7d9196","#48d496","#394b96","#568f96","#f59c96","#4b4396","#353396","#57a396","#57da96","#324a96","#d48396","#4cce96","#4acc96","#503696","#6d5796","#de3296","#af2196","#893396","#c96d96","#57cf96","#4a4696","#595396","#e1df96","#949f96","#bb9396","#c43096","#c02296","#514d96","#dbe596","#4b5d96","#ef5596","#b2cf96","#5e9696","#c49196","#4f8f96","#f1a896","#ad2596","#cfb896","#876296","#833d96","#c5c796","#39c596","#c42f96","#984196","#992196","#c7a596","#3f4496","#381f96","#c6bf96","#d9d496","#516696","#61ab96","#572296","#af6096","#329e96","#82c696","#b82c96","#a06a96","#97c096","#913596","#a67096","#464d96","#783896","#44ab96","#344196","#e6d296","#4ecb96","#484a96","#dac996","#e57a96","#7a5f96","#d6da96","#e78796","#dd7096","#8aaf96","#cfcf96","#d35e96","#868f96","#f6e396","#80e396","#d53a96","#814696","#84d896","#43c196","#5b8f96","#90bf96","#5f4496","#84af96","#3da296","#c58f96","#ab4396","#f7b896","#e57796","#b34296","#564596","#b9dc96","#72cb96","#eb3496","#557796","#598196","#d39c96","#a8bd96","#62c696","#4cd896","#986996","#a0c396","#829a96","#a05696","#c37496","#d35b96","#653a96","#8e8096","#984496","#95d696","#de2396","#807a96","#33bf96","#578a96","#b77796","#f82b96","#e1be96","#c88996","#d78c96","#9c4e96","#f1df96","#ac7096","#937296","#3c8f96","#87df96","#f76b96","#5c2496","#404896","#34bd96","#74d396","#94b396","#682896","#3ace96","#4a9896","#a63496","#809f96","#3d2d96","#ac3f96","#d57996","#64ba96","#5f7596","#5c3896","#9f6e96","#932496","#7ec296","#e27396","#737896","#c79896","#b28696","#d8a396","#5a9296","#ab5196","#5cd096","#91a796","#9f6a96","#83bd96","#5e2e96","#f0cc96","#8bb796","#353696","#f0e096","#883996","#c95a96","#e3d096","#4f9c96","#e0c696","#4eb496","#749a96","#eb8d96","#aade96","#f2bb96","#578c96","#636d96","#c0cc96","#357496","#bca996","#a75f96","#f74d96","#638196","#504696","#4f6c96","#cadc96","#34bb96","#4f3896","#ac2296","#63d096","#878496","#7c4c96","#beb996","#3f6696","#d86e96","#c77796","#589d96","#c15d96","#d39c96","#bbbd96","#b02296","#71dc96","#c7a396","#5d8496","#4f4d96","#d34896","#e9b696","#557096","#828496","#af4096","#4a8796","#668d96","#62a396","#628e96","#9dc196","#822696","#6a8d96","#7ece96","#bf8196","#b79e96","#594d96","#a2bf96","#93b296","#612196","#59ab96","#b9a996","#586d96","#cb2696","#d3b696","#ca2396","#90e196","#792e96","#ae7f96","#754b96","#f43096","#816e96","#4fbe96","#393d96","#4fd496","#f2c396","#6c6b96","#445a96","#b9a896","#479596","#4a7696","#4b5f96","#bfbb96","#d1cd96","#783396","#d64a96","#799996","#56a996","#8b5696","#b36e96","#7d8796","#932696","#a59996","#b35996","#5f4d96","#6e2296","#97d596","#447296","#7e7296","#48c196","#334796","#653196","#e72e96","#375796","#677d96","#9b3d96","#57cb96","#719c96","#74cb96","#667996","#699396","#f9d996","#d56996","#c16596","#48b096","#91ac96","#b15e96","#b16896","#56c296","#5c2d96","#d24596","#a1d996","#5d1f96","#412096","#5c7896","#636396","#e42696","#f58596","#466c96","#475296","#ba5c96","#eb3296","#e23e96","#c72796","#8bc096","#987e96","#639996","#7a2196","#a55296","#b0c196","#3d2e96","#78ad96","#43a896","#4a1e96","#a1ad96","#dcd996","#429596","#7d2696","#61a896","#826696","#b8db96","#df4396","#bd7d96","#868096","#4e8a96","#cdd996","#953296","#9c3a96","#3ea096","#5c6196","#c14996","#dcdc96","#69cc96","#db9096","#b6e596","#b31f96","#51cf96","#5d2a96","#97c396","#564796","#71cc96","#3fcf96","#678896","#eadc96","#679e96","#d54296","#dc2596","#586396","#cbb796","#e8af96","#ab2a96","#f09896","#c6b496","#6e5c96","#6de596","#463996","#864796","#a12596","#423096","#838996","#9e9096","#8ecf96","#da5e96","#815d96","#75cf96","#3ee096","#90a196","#4eb296","#a4dc96","#d73796","#5e4096","#715f96","#f2af96","#77dd96","#5db996","#886896","#ba6e96","#e66896","#92d396","#f6cb96","#3b6196","#579396","#757196","#a28c96","#586096","#6f4196","#4f3496","#509896","#e49a96","#75ab96","#7ad396","#b26996","#d5af96","#9ecd96","#9c7496","#3e6296","#6c9096","#f53396","#6cab96","#42c196","#69b596","#a19596","#4fb996","#a05996","#d3b596","#5f6a96","#f64496","#f75b96","#885f96","#becb96","#c49f96","#d05796","#706c96","#8a2e96","#72c496","#b44196","#813096","#8ad096","#d28296","#6ebb96","#6c4496","#538296","#e43196","#57d896","#c42c96","#394a96","#f1d096","#6c7b96","#44b196","#598b96","#71ae96","#832396","#62da96","#5b9296","#827896","#90db96","#36a496","#3f5b96","#b44f96","#62cd96","#f18896","#e62096","#57bb96","#909696","#c2da96","#ac4b96","#a54f96","#b6b296","#678a96","#64ac96","#4c2496","#5a9596","#496496","#953696","#ca4096","#60de96","#9e7396","#9eb596","#bec696","#534696","#6c8996","#487f96","#873696","#6a3b96","#c08e96","#933b96","#ee2396","#bb6596","#4de396","#df3196","#d0c196","#489696","#87a796","#7be496","#8e9a96","#e6cc96","#bfa296","#6fde96","#6d5496","#ce7e96","#b1c196","#4caa96","#b86196","#c1a096","#b6dd96","#daa196","#d08e96","#565796","#66ca96","#783196","#b85a96","#5a6796","#93e296","#a0d396","#60d196","#a68b96","#4bc996","#592796","#409e96","#7a8696","#901e96","#415a96","#376c96","#997f96","#52b596","#92b996","#ebb896","#447296","#7c4496","#604396","#814b96","#e6c096","#b3d696","#d2e196","#f1a796","#993b96","#a22e96","#9bc296","#8e4f96","#811e96","#d07c96","#92bb96","#e4de96","#a33c96","#93cb96","#ad5e96","#a23396","#6ea096","#adab96","#795596","#ada796","#f96e96","#392896","#332f96","#acc896","#34d496","#8b5096","#90e396","#b83896","#731f96","#a34296","#84b296","#f82296","#ef3896","#d4a696","#cc6a96","#6ace96","#6f6d96","#9faf96","#429496","#9ca396","#492e96","#bfcf96","#4c5896","#ba3296","#922596","#dd6596","#745396","#dc6396","#584096","#dd8f96","#926d96","#753996","#68c596","#a52b96","#cb8d96","#60d696","#452996","#4f2b96","#b08196","#f37f96","#e83e96","#418296","#998596","#501e96","#cd3c96","#c79b96","#a66896","#4d7796","#5ddc96","#872a96","#dc8296","#336796","#563296","#d9d696","#ce9696","#353596","#b8b796","#bf5b96","#829e96","#6ea096","#de5396","#f8c996","#8cc496","#bfc296","#dbac96","#506e96","#416e96","#6d5896","#b8cb96","#7ddf96","#d63996","#eb9996","#e3df96","#338d96","#704e96","#94c096","#e53e96","#d66996","#81ac96","#748196","#c8d296","#32ca96","#945c96","#5ac596","#655296","#f72996","#857596","#efad96","#c3bd96","#413696","#7baf96","#78d796","#928696","#b8bd96","#bb8a96","#e1ce96","#cb6896","#69d896","#55b896","#e94996","#4f5c96","#acb996","#91c296","#369796","#ef3496","#52a396","#a07c96","#f07096","#54c496","#b92696","#857496","#e65896","#8a4496","#e88b96","#77d096","#c55c96","#9c6096","#d22d96","#825c96","#d94796","#868196","#3c9296","#473096","#998896","#6c8796","#f7e296","#366c96","#396a96","#46a996","#af4596","#553696","#c3b996","#f53596","#a34996","#94ce96","#cf2196","#e08d96","#c83d96","#709796","#4bd896","#bb3e96","#cc9396","#e1cd96","#643d96","#876796","#54d596","#576696","#b13496","#ef9c96","#f35796","#ce3f96","#872896","#c55296","#746196","#945e96","#644496","#8e9e96","#b73796","#52cb96","#d7c096","#885d96","#a5bf96","#385596","#8aa896","#705796","#678b96","#607a96","#bfda96","#e1a596","#48d896","#c0bb96","#bbc796","#e7c196","#f42c96","#7b7c96","#909796","#936296","#d2ad96","#a75396","#c4cf96","#dae296","#9b7396","#c05096","#957b96","#386e96","#f34196","#8fb496","#8c8296","#dd7396","#501f96","#752b96","#a7ac96","#f33496","#acc296","#35b896","#cf4696","#bcb996","#c9e196","#b9cf96","#705296","#929996","#f26f96","#3ec596","#c53c96","#6f9696","#7d6896","#cc5796","#af3296","#45b296","#d99396","#7dc396","#665a96","#adbf96","#359696","#72b896","#932b96","#653296","#f05a96","#c7e296","#414796","#e0da96","#db6296","#3f6f96","#9dc096","#ee5896","#364c96","#545b96","#e68296","#d78d96","#c0bb96","#432496","#f85396","#699896","#b7a696","#f7cb96","#b59596","#82ce96","#d59096","#765996","#6a8c96","#3d7696","#5d5096","#bc7196","#a92396","#88a796","#906396","#b67b96","#735c96","#562f96","#847a96","#e46e96","#c07496","#98be96","#6e4d96","#c32e96","#365396","#743196","#c7c796","#6bcb96","#5f6f96","#804c96","#a4af96","#99ae96","#5fbe96","#c07796","#376496","#aa4396","#782d96","#4c4a96","#e6a696","#65c496","#e36696","#8d7496","#788996","#397696","#b88096","#b86296","#537196","#845796","#448996","#b67496","#50cc96","#d12a96","#47d096","#d9c996","#98ab96","#7a5e96","#c5ae96","#bce196","#bb9996","#dd9996","#d6ce96","#476996","#cf6a96","#5b8796","#74d596","#8d7a96","#84dc96","#3bc996","#f59496","#919796","#ce2496","#7aa096","#772596","#a92596","#af3296","#94b196","#d13a96","#b3b296","#f17a96","#cad796","#8e5796","#cb2896","#50d696","#dbc696","#343396","#ef3596","#895896","#4d6196","#a1a196","#714796","#ed1e96","#a16e96","#8a6696","#8b7596","#695b96","#6cd996","#788996","#d57696","#f56b96","#4aa896","#adc196","#8f7096","#475a96","#5d4296","#b28f96","#e9af96","#ac9096","#d2cd96","#375a96","#558596","#39b696","#be2996","#59bb96","#96a596","#d27996","#8e8796","#376396","#a98996","#b7c096","#e97896","#359196","#b9c596","#8c4096","#998696","#ac8196","#60c196","#92c696","#de5896","#cb9c96","#c43a96","#d93896","#513f96","#f2dd96","#efd296","#538f96","#7b4e96","#6b7b96","#db2596","#f6b296","#a83896","#349c96","#ded796","#8ec996","#6a7396","#f79096","#daa596","#b58596","#e29596","#739596","#aa2d96","#399096","#75a596","#6c8796","#669096","#a39496","#b55d96","#9b4896","#702996","#78b596","#bf7996","#f5a396","#91d596","#d07196","#b65b96","#4b7c96","#bce196","#f5c796","#dd2f96","#d06796","#50ce96","#cd6896","#502b96","#ece596","#509a96","#ab1f96","#b14996","#d8b396","#682296","#397b96","#41d096","#bddb96","#3b4796","#4b3296","#549396","#d94996","#8de196","#7cae96","#948f96","#de5c96","#e3b696","#e3d196","#a5d796","#d67b96","#b11e96","#b19596","#e98296","#4ccc96","#a04b96","#6dc696","#7c8e96","#8c5b96","#b39296","#649096","#eb3a96","#ec4a96","#c87296","#7e6096","#c0b096","#952296","#ca8b96","#afb196","#775896","#879e96","#466196","#6aa496","#453d96","#9d6c96","#d12c96","#564e96","#509096","#5caa96","#e35296","#ce4e96","#803396","#f14a96","#928696","#52c896","#733996","#d13f96","#b05196","#368496","#905d96","#c97396","#f1a596","#888396","#4be596","#e31f96","#ea4d96","#bccb96","#d55796","#e08d96","#b3cb96","#f0a496","#648b96","#6d8e96","#7a2696","#45dc96","#f53b96","#4c4396","#33e596","#f07c96","#60d096","#dc5996","#575d96","#679a96","#b67c96","#b78f96","#ede296","#35c996","#76a996","#659896","#4e7096","#3eba96","#3d3796","#634496","#e59296","#816596","#54cf96","#724f96","#756896","#e06896","#735196","#8b6f96","#ef8796","#8a8796","#744196","#54b396","#b29596","#6cb596","#a0d496","#3d8b96","#894b96","#7f7696","#ee6396","#b33196","#60b296","#9f7c96","#368696","#78d296","#9d8296","#69e596","#6d9496","#ce5f96","#8fc696","#ba9596","#b0cb96","#4c3e96","#347596","#614c96","#8f7796","#427c96","#f03f96","#8cc396","#8eb996","#4e6e96","#f69196","#452196","#814a96","#d82896","#4e6896","#e33096","#ef5196","#998596","#e5cc96","#aa9196","#7a1f96","#eae596","#a5bc96","#9ba896","#ba2796","#534096","#52a596","#792296","#d54b96","#8b7b96","#392096","#456396","#557696","#c84c96","#ccbb96","#e0df96","#aac196","#d15696","#72a996","#a85096","#498296","#53bf96","#772196","#e5cc96","#698e96","#6abc96","#763096","#c42296","#90c596","#eb6f96","#c06e96","#bcc896","#54ae96","#c0c096","#d05a96","#ad5396","#756496","#b0cb96","#336e96","#e68896","#c2a496","#8b4f96","#43d196","#615096","#77e096","#812c96","#ac7796","#ee2396","#5a4f96","#54bc96","#883496","#509a96","#82ca96","#542796","#ab8096","#cf2096","#854e96","#b06c96","#3fcb96","#dda496","#a05696","#cb3996","#664496","#f77d96","#957c96","#55d796","#932d96","#d77c96","#aba796","#be4696","#588396","#742e96","#3a6796","#47d096","#559796","#406a96","#7e9796","#5ee596","#438596","#8ac196","#d14396","#5bb296","#c2da96","#d36e96","#cc3a96","#a73096","#42b996","#719a96","#f57e96","#f25796","#599a96","#49a396","#5d2696","#507b96","#5ba296","#e03a96","#60de96","#dac996","#eb9196","#b47896","#f27f96","#863096","#a99b96","#807b96","#452896","#3a8096","#529e96","#cf2296","#7b8996","#40da96","#a6ab96","#3eb096","#34bb96","#a57396","#d34996","#a57196","#663996","#b94396","#ad5796","#b37d96","#65bf96","#cc7d96","#d85696","#667196","#696b96","#e36596","#d05696","#f2b296","#ba2696","#a55c96","#6ab196","#6adc96","#a54896","#938c96","#5a3b96","#bb7396","#51a696","#8f3b96","#8e2396","#c4e096","#34cf96","#97e496","#c74096","#a4d296","#d59d96","#85cc96","#bc4196","#4d3196","#81bb96","#a83896","#e9d296","#7d7496","#b32596","#8e9596","#e38396","#3a7b96","#70b996","#aeb296","#358696","#f79f96","#de6f96","#6fe096","#55da96","#c94296","#613796","#346c96","#e9ce96","#f31f96","#8fc596","#4c4a96","#6b8496","#a8b396","#4b5f96","#7ae396","#b53e96","#f24d96","#cb6f96","#8b7196","#8d7396","#a49596","#399596","#a99896","#ea7c96","#868e96","#9b6d96","#786996","#396c96","#b1bd96","#984196","#b1cd96","#9d3996","#85b396","#c42596","#583396","#ef8896","#f66596","#798196","#e42196","#61a396","#56e096","#5f5196","#672396","#60c796","#855596","#75ac96","#f79696","#d52296","#343596","#bf4596","#969d96","#ed5a96","#7b3396","#33af96","#444996","#c68896","#8aaa96","#7f7696","#dac096","#d45c96","#e37796","#33be96","#3ae596","#c65196","#5b8a96","#418f96","#a6cd96","#a43296","#c6b796","#b43696","#d19296","#dce396","#70d996","#379696","#78e196","#b93496","#75b596","#b8d896","#c83096","#55bd96","#a7d496","#6c4196","#66d096","#eda396","#a35596","#ba8f96","#7a8796","#a5b796","#bc6696","#f48d96","#8abd96","#37b396","#538a96","#887596","#c1b296","#5b8f96","#897b96","#e86696","#84b696","#7b9d96","#764a96","#d0bc96","#3ece96","#3be596","#483a96","#c48196","#8b1f96","#7a5596","#517896","#b1e096","#ee4296","#ef9e96","#943896","#79ac96","#c03396","#ecbf96","#992f96","#837c96","#ce4a96","#5b4d96","#3fdd96","#ad5796","#86a096","#c7cc96","#603596","#f7d096","#c58d96","#a2af96","#e38e96","#607896","#f2a996","#edcb96","#9b4396","#b26696","#c39c96","#bfc496","#c3d096","#e78d96","#37be96","#ba8a96","#678a96","#6a2896","#eca696","#605796","#b3c696","#815996","#32a696","#c07e96","#7bca96","#f1bc96","#a97696","#75b396","#504896","#532196","#603896","#994e96","#5e2996","#de7a96","#dd6496","#76c196","#6d9f96","#9c6496","#633396","#c48f96","#c74896","#af2396","#3ede96","#bf4e96","#5aab96","#939a96","#f77496","#da9996","#3f2096","#68b496","#b8a996","#379f96","#36b396","#6a9396","#d76f96","#4f6c96","#7fc196","#d43696","#e9b396","#a66796","#a27596","#463596","#9c5896","#ccce96","#7be596","#406f96","#695696","#3b2596","#659496","#d52496","#878396","#ed8996","#40e496","#b07796","#6a5d96","#7c8496","#99e296","#c64096","#40cb96","#ed5e96","#8c9b96","#648e96","#f22d96","#e4a596","#82c396","#449e96","#45dd96","#cacb96","#617a96","#9eb796","#91ba96","#cb2a96","#8c9896","#e58c96","#ead296","#d2dd96","#bb4296","#7f5396","#e7bf96","#825b96","#4e6096","#b4d096","#3eb796","#8d9e96","#46ab96","#b17f96","#a9a396","#a65e96","#ac4c96","#5bd596","#eb7496","#8ac196","#442c96","#ab9096","#718b96","#f37496","#4e5496","#925096","#f07096","#f04696","#963496","#f22396","#337796","#f32e96","#66e396","#9d7b96","#703d96","#aea996","#d32296","#64d796","#e07496","#55e396","#8f8c96","#3e5f96","#965d96","#77a596","#cad996","#876d96","#5adb96","#81d596","#e38a96","#ce4a96","#d43a96","#7b6e96","#d12296","#bf4f96","#aed896","#efb096","#d7d096","#32cc96","#616696","#eadd96","#ec2596","#7ed796","#838596","#a18796","#f08696","#e7c996","#abbf96","#35d196","#d1c096","#53b396","#cfa796","#b17296","#468c96","#40a496","#4aaa96","#a66696","#f3d896","#5cc496","#766396","#cbb396","#f84d96","#484c96","#83d496","#844296","#988296","#6e4d96","#391f96","#922e96","#d74796","#357f96","#baa196","#f7e596","#da5696","#e59d96","#c88896","#b62e96","#f5d896","#9d8096","#a4d596","#d62796","#eaa196","#37c696","#4e8b96","#b58096","#b95496","#ab2196","#482e96","#864196","#503d96","#9e4296","#692296","#664f96","#6abc96","#963c96","#f6de96","#6cac96","#b9dc96","#f4b996","#3a3a96","#ae2396","#3b6696","#ef9d96","#ba9896","#bb4796","#cc9a96","#bd5796","#b0af96","#ad9496","#dfd396","#92c496","#afd796","#bc1f96","#9d8896","#7fdc96","#848396","#3b7196","#4f9196","#cbb396","#6fd596","#dd2d96","#734396","#b53296","#cc8096","#947c96","#7fe396","#59de96","#6a7096","#f09d96","#6d3e96","#a46596","#e38196","#c47c96","#8cb896","#a94696","#be4396","#d53c96","#584b96","#375496","#b37596","#324696","#b59196","#7d1e96","#8f9d96","#eeb596","#9b8496","#77ab96","#956b96","#8bb196","#98a696","#92b596","#dbad96","#abdf96","#9cc796","#ad9c96","#604b96","#6f7f96","#832196","#336596","#cf6396","#b88396","#334796","#ed8e96","#ac5496","#a75996","#ac7b96","#625b96","#4fc396","#c87796","#b13c96","#7eb896","#b0b896","#7d8e96","#a7d996","#e5a496","#3b5996","#386196","#49d496","#acd196","#bb7c96","#478396","#edca96","#eed696","#ee8196","#aa4196","#cf2296","#3dd796","#a82b96","#ee7d96","#956896","#7eb896","#bbd296","#dbd596","#804c96","#4a3c96","#eca196","#bfa296","#76dd96","#b17a96","#de9296","#e82396","#cfbc96","#993696","#c68796","#895696","#38c896","#77ae96","#ab4896","#edb396","#a12a96","#a97696","#632096","#cd6796","#e5ad96","#d22d96","#b64296","#98c496","#ac4296","#38b196","#6fcb96","#f67296","#533496","#b2be96","#342c96","#9cc996","#3e1e96","#49c796","#f0aa96","#eb5096","#b78496","#57c196","#a08996","#359b96","#f6dc96","#6fa796","#75a096","#f69f96","#b9c896","#915e96","#d23d96","#834996","#324296","#e9aa96","#ad8c96","#a68896","#b73b96","#d0b596","#ce6f96","#44ae96","#3e2a96","#3f6096","#5cb596","#8d9d96","#8de096","#9d8c96","#a27296","#e4a596","#bb4d96","#cd4b96","#b56396","#df2696","#dc3e96","#a59e96","#452696","#5c6496","#8dd496","#da5496","#eb5196","#a48e96","#64d296","#66db96","#d24b96","#d46c96","#bdcb96","#48d796","#b8d196","#72a596","#d3d696","#6d8396","#6d9496","#b38a96","#a82096","#68c196","#99ac96","#3c4896","#3f7596","#613696","#c35b96","#6dc996","#b08596","#e72f96","#ed3b96","#a34b96","#b9d796","#7c5d96","#832296","#7d2296","#d64096","#eaad96","#c03796","#678f96","#3fcc96","#a4b796","#475d96","#c8d496","#848c96","#714896","#582d96","#44c596","#d5db96","#f4d096","#aa7996","#435696","#60c396","#f95596","#9b8196","#395596","#7ccd96","#42c296","#f2d096","#872d96","#b4e496","#795f96","#68c396","#ebdb96","#a4b496","#eb7596","#bd4696","#a72996","#374896","#be6b96","#c9c096","#d2a296","#669796","#9ed196","#4e4496","#a35596","#a22a96","#69d896","#35d196","#cdc296","#61b796","#d93d96","#676a96","#436696","#7d2a96","#9c6096","#502d96","#50b596","#5f6996","#3ce396","#9e4096","#f6d296","#b0ba96","#8a5a96","#c24c96","#be8496","#8a4096","#e05596","#33c496","#b18a96","#b87096","#366296","#90c796","#825896","#d4cb96","#c48096","#b7dc96","#b29596","#c84296","#658396","#3fc596","#ba8896","#de5a96","#d07496","#66c796","#f47496","#61ab96","#c74c96","#6f7a96","#6b7c96","#764196","#a46696","#50cb96","#498a96","#919096","#922196","#b87c96","#695f96","#b6a996","#e95596","#9e6796","#4bd896","#99a396","#59d896","#e15596","#98cb96","#c37396","#d71e96","#b42e96","#bc3a96","#f32696","#5ccc96","#b5ad96","#cda196","#c38b96","#895996","#5da396","#bc8596","#998a96","#a73896","#c63f96","#52db96","#e83796","#9c3696","#76a296","#b72596","#f59496","#a3b496","#435896","#653196","#b3df96","#6e6296","#a46896","#99c396","#b5bd96","#684e96","#ca2f96","#969a96","#73c896","#dd4396","#59ac96","#dd2396","#548696","#ecaa96","#ead496","#d2e596","#364296","#ad4e96","#5ebe96","#7c8396","#404796","#a23496","#dcd396","#b55896","#3b4396","#3cc096","#5f8696","#787896","#abbc96","#835796","#c5d796","#e9c596","#ab4396","#cb5096","#81a896","#b94596","#519296","#361e96","#a08096","#cba996","#b14496","#9d2c96","#3a4496","#5f3a96","#767696","#7fbd96","#952d96","#a34e96","#e16896","#f69696","#c8d296","#d3c196","#e1bd96","#ccda96","#6d5b96","#f38896","#3bdd96","#9d6c96","#52d596","#717696","#4b4496","#704796","#addb96","#5d6996","#f37896","#b2b596","#bce396","#a65996","#c47296","#7b4796","#5ec896","#434c96","#8e8a96","#4d4596","#9a2196"],"radius":[0.7421629153887686,0.8845557645036722,1.458755061224639,0.8223550892055762,0.5638909317097827,0.9813233065536198,0.051545772320760797,1.3607515312846585,0.017239715734090055,0.1066358007614766,1.2817189807289568,1.147358804778845,1.4276806878068173,1.1403982123547052,1.1688894331035495,0.8696432527778357,0.304131948362526,1.1927202781691735,0.01906070916319097,0.3011986835833976,0.5069933165914238,0.7386543555825835,0.9957943977661071,0.1659411939787898,1.2365892668577938,0.5087423854805839,0.5757550872046939,1.4278369939935784,1.1615191263431628,1.4313797135328779,0.6242462067688934,0.9328312018936173,0.7492281835225396,0.1689444104920817,1.319797306607719,0.03113259822722897,1.2423353800291603,1.3451585875252188,0.1991804458289525,0.7691925806360116,0.644054545165519,0.38527558734401196,0.6549168749836733,0.5278017993668407,0.1032277432938597,0.9714840376649796,1.4243361927687137,0.34736539971901953,0.24184677042265645,0.873684331016721,0.34315246064161614,0.3356723014804552,0.5142670203521542,1.2638964133968051,1.0818506166617166,0.8502656090186019,1.270240879396257,0.7422208527906347,0.49201155795130114,1.332827399287693,1.4362419418233392,1.2822587337262892,1.3724878369037148,0.009447082949028685,0.6708110682089956,1.0441192130363386,1.0142217995361136,0.03410378103684153,0.5248327967341913,0.6088577462017155,0.7974968068535169,0.4662942957654301,1.3557811121634775,0.04097498059588367,1.3754193633669813,1.2341294956892805,0.07775352120952256,0.11679087613957895,0.9385680827690943,1.0255176519014713,1.2320275827505527,1.3064009756961974,0.6624097960818538,0.2945284423668178,0.3845299385395146,1.067392970640762,0.04314189934081597,0.5996917285483023,0.48016828338976675,0.35891457049487824,0.19577262496683812,0.8854377189231782,0.3242501156437057,0.8564390568225146,0.7944852907853666,0.09671531740488881,0.9229425208404056,0.2831659131268197,0.564414622343137,1.2861513787648526,0.6447403836444106,1.4691131238805688,0.05183274115635256,1.4651149589002626,0.9943136450010186,1.3013427414810261,0.9118698372937819,1.4898967618664507,0.6681092688916952,0.6799741616149905,1.4406232157683205,1.2689729855021814,0.9469576979688024,0.33873726394383546,0.8760385244665067,1.3214736925101231,0.019799686183693377,1.2122789701052115,0.47519630460803053,0.6799116587823064,1.1265859518477246,1.2175832047822328,1.1953410881510562,1.3335956883276785,1.2594536338556759,1.075516177601256,0.6469507629065705,0.5173032123665194,1.3931239474723582,0.7677273899524604,1.0393108843385344,0.41935899107925373,1.2010305113317044,0.043461176721364625,1.3472389837847003,0.3413895105869179,0.3572191834500809,0.8216225943678068,0.5989684257290784,0.5796404797782886,1.166069096700231,0.9133956280579253,0.7414731669941115,0.18947196392153798,1.3208553069375266,1.0903167797294393,1.4613483853731364,0.8005873382181368,0.4793888735798476,0.8445325840627083,0.37769721220155045,0.6719316833993019,0.7502960907478762,0.7023515684332732,0.1906953039762851,0.8055483586713708,0.23198136173350692,0.25066113830033426,0.630354163394073,0.3717169154816113,0.4608736945726012,0.5590253339816136,0.6157869069371085,0.8956867541168638,1.1119722291060428,0.21419801975301217,0.5748608053888237,0.3684634487049291,0.5225046488762601,0.18790847268659328,0.5388591507782048,0.9923140176858111,1.4520371909603214,0.5797652886370351,0.10052981668092587,0.05826365704099601,0.9148175818578723,0.8601390035186389,0.010007877389992537,0.9196346315779969,1.204643460491813,0.7693814264125864,1.1869840654112875,1.4167271962438395,0.43281018761509915,0.6713527592811602,0.8096892018845476,1.182893369419095,1.377661053641038,0.49844209350568214,0.9332327825981822,0.6155271760752801,0.24076626103169063,1.0989469514662753,0.9385024381788344,0.7679696017398314,1.3027337047134955,0.7388938701124872,0.001768231243159113,0.7250123878571324,0.2699860758523382,0.9439425834912621,0.9713274810083401,0.5239639645814161,0.7760941433861636,1.4141412090024013,1.2322169316938387,0.2813795389428246,0.8351846970546064,0.8084534926228564,0.6258225723164214,0.6115503962311872,1.4306936004382376,0.1987658895564457,1.0004037404828794,0.9895741066537889,0.33103263558815493,0.6498457419714163,1.0820611517712426,1.084794442842059,0.2440168422318521,0.01313167176401997,0.9061880301376035,1.001864758978338,0.7901861297250374,0.6697624369230872,0.7011432833057798,0.9503463795080269,0.03552263296877889,1.0624473805030028,1.3870843600916987,0.765514373267624,0.5755133855749841,0.8257106894201091,1.2158530208857852,0.32219871554023927,0.9336195200906927,0.03978787483219248,0.018591661438062512,1.0178168792403293,0.29253516731658474,0.019785650615362305,1.217925543554661,0.5574740387150641,0.7415013789943707,0.04147643984694793,0.6379715963699167,0.39793329738188604,1.0181797303139157,0.6377581410115113,1.3633267458144358,1.4854590217887182,1.4968401746443547,0.9903540834110411,0.2936255221687932,1.148506384741942,0.2718350320969725,0.24843720950620068,1.1127987927314171,0.805734144573365,0.9619872146117971,0.9257034720621959,0.31790773807360984,0.4240821608578553,0.7264548320621396,1.3104990665713319,1.2419327646905156,1.2890280738416482,0.9030368091174069,0.5452514963218755,1.1740921566518494,0.3737624314994723,1.4918397567971804,0.9714732896911825,0.8071160403312085,0.1527099884588094,0.76625921072635,0.775919513271353,1.4961871605567836,0.6373424494071322,1.489256782557471,0.4778267407650794,0.6812872595588618,0.49951519645538783,0.9868650861383463,1.1039882396339256,0.9657337991831239,0.5530352027318828,1.0780643444772224,0.34255110366079566,0.7334447764046409,1.3051784353961517,1.1898561090649222,0.10849188411617622,0.6654974715725079,0.08138666919394982,0.6647496885302835,0.8565221360063691,0.2648221196425686,0.6020519368318467,1.2305656265277225,0.35969178498088705,0.6816580024438446,0.5239433124970454,0.11913863298702565,0.9063600639208927,1.1231730453371178,0.3239768960539573,0.5233538370241131,0.4529161404911144,0.23982739504109968,0.8567664556832495,0.8490744568342682,0.9463273030999315,1.0218950798155784,0.10652472377062822,0.8458680543817377,1.1609539178592185,0.023563753545275568,0.7918878402746603,1.0654218784234462,0.45696237260178457,0.3413647596777832,0.27658137594295146,1.4879207719714627,0.18307531420764606,0.5697108434042184,0.7688142100712498,0.035399516315876345,0.5919643685345595,0.094167348617334,0.6201354073044367,0.6516286182742881,0.696690196774467,0.17103528383866995,0.72175678203191,0.36312629790945855,1.035238436647336,0.8680865803116815,0.782826668755151,0.5541639976033301,1.189198182505051,0.5274249735633055,0.8354364176400892,0.7469224579701292,1.1731514312231452,1.246762929815807,1.1476727750169466,0.9355924238117617,0.9586791111716293,0.354609544519886,0.39452774760236115,0.24596235533847205,0.6184351013727161,0.3892728622874185,0.9622835881796774,0.7065788418993406,0.9589610086673646,0.683004021878755,0.497301919836429,0.8441214187374673,1.0115249476936417,0.09982560593573458,0.21882764773075952,1.0401226326272848,0.20624965735392192,0.721654752211598,1.0923751570611258,0.04202567788702788,0.014835556610189538,0.30069981376417093,0.4436598464161597,1.40584241630208,0.5393665284913589,0.6798780999664614,0.8231620078584077,1.0511382857235445,0.4123009424090022,0.5621499669697022,1.1506314990486128,1.2622755723867392,0.4618525708830069,1.1010499202857633,0.8040760087287171,0.5024569521841777,0.40486418809970864,0.4727675540621471,0.37560109139344455,0.7604028909570076,0.7385196103491134,0.31944866556481993,0.3109685318804661,0.37296930965256647,1.221431359494167,1.489076543239156,0.6917843979775075,0.854174807447538,0.5775541594472828,0.5995449025748065,1.3448392106124656,0.20182175564734073,1.156450686760631,0.18540706178894084,1.1535728406284802,1.388739245890347,1.473655149647422,0.46042296793708765,0.030246671338299724,0.9546990681810572,1.2015939379999248,0.5895851985494075,1.4619880383960246,0.4643475619559635,1.4478649554385639,0.7071236189706411,0.38099977925265127,0.184188457567595,1.3364277175122017,0.9741782042079398,0.3482294147202015,1.4791428673184024,0.9413073314886762,1.0668203600095858,0.06295183794943204,0.5066504975897828,1.441355547137024,1.1549390399017896,0.5092823991723365,0.6380758425740116,1.3753726325024302,1.2559745160657916,0.22664904228914756,0.7959061112491379,1.2582129144437881,0.9365702423994589,1.3144230751629822,1.3677244692717543,0.813505678075749,1.1614443805339139,0.20758748888465706,1.3545687955415529,1.3615700520010616,1.1738839058731068,0.26125584743879054,0.9995503316475434,0.2876300098024087,0.9359110590121973,1.374885691209403,1.1259480628096519,1.2886722261694366,0.7686450773304706,0.32163358829293187,0.003805990274980131,0.3983585013968511,1.11252312361172,1.476824816440249,0.10405895373171659,1.3584612702486993,1.4341452563078751,0.9233794849121784,1.0662845884680512,1.3899041936500842,0.5035247931481777,0.4560617052529225,0.1420111007512614,1.428628165968778,0.8736240208720387,0.35055604861649303,0.6108329745841206,0.04013048859887314,0.046143421827872066,0.44772970850259813,1.0419771938393882,1.4656772559632731,0.6313077256271524,0.7276138148582041,0.20551396407410621,1.2984933618853691,0.0714819405222154,1.247025256902119,0.3632988753411677,0.8248040286680989,0.20707774968165754,0.33768311783719424,0.07519282066040706,0.32800590440151506,0.5843360506402517,1.1360922043312283,1.0781423509145274,0.8527131301982951,0.9381672055887484,1.4423697223652974,0.14054282240386506,0.5271372994816516,0.886015060605845,0.7692593791058593,0.7389455049025502,1.4384689257075782,1.312980680904019,0.544025962335428,0.14776290454053836,0.11985737825403603,0.08331606964903876,0.9672700727595331,0.01077267087854994,0.12863683085904692,0.22571624441873028,0.34538323169831076,0.505156354012722,0.11738515379703307,1.0737366616078297,1.3791796792994528,1.0398284313559725,0.581937614947447,0.6332739440915803,1.2367642676752397,0.12222413758841755,0.36054572029537224,1.3068867003256797,1.1903804645704181,0.015349959156791493,0.17262865381640374,0.3951637886194089,1.409693792017648,0.6757248950992587,0.7440819617565388,0.24366129843913392,1.2418877760448461,0.27620977249327766,0.4558810912291986,1.1028396887106533,0.3506898786942738,0.21527501701550295,0.8470365970273382,0.8418803438909532,1.347268243438213,0.8474049443532871,0.19713390057055485,0.8437978729796722,0.05815002543116743,0.29263697087268736,0.5725073749824761,1.044149851942323,0.6403742531595193,0.2648176058045925,0.2205932450175503,0.10922572179528417,1.1851328586647063,0.4242490417928711,0.002153907407897171,1.2787935886715052,1.3027455775536227,0.6074402241435007,0.7847151728082815,1.053197755406432,0.8090220049382308,0.009107106950262622,0.5236699926002739,1.3277801630259374,0.1492154469199069,1.3183792893887953,0.8938847972699446,0.45468784085987596,1.4739224018579167,1.3166326493815577,1.0550812485154075,1.3576903299881942,0.20615710313928903,0.2100213199049803,1.3038537387703215,0.28011191473431396,0.24149504393918847,0.23835229248750722,1.0357256575144143,1.1563884273173377,1.0198982716947214,0.8516447365976325,1.4754004046966318,0.7294894758557102,0.6419827281837434,0.2996291999830831,0.3689254835464059,0.6333322748029,1.220814071382435,0.2952195267533374,0.09574368773415559,0.950010849214978,1.1484933878984869,1.4291525835596857,0.45476581042183994,0.7306589252164768,0.8072826183780729,0.2496542511987795,0.8329256542874639,1.369117307877099,1.1097027906882606,1.318433379749337,1.4540113547926257,0.9075884145666346,0.17450418027676518,0.9725766574317443,1.2412015091091693,0.6688595239328433,0.04199024182793948,0.8360975128315009,1.4521005663541897,0.8136986422248771,0.12811587506813027,0.38133743041126994,1.0768700113630085,0.2366047539922128,0.900922397972106,0.22558895925593397,0.17692141079693308,0.2252047018581237,1.3803919835657228,0.016465744449613406,1.0697434784037834,0.4811668120113662,0.056830701485824864,1.162920571108518,0.44144611358506314,0.7950991780247814,1.4083293818750142,0.7724283274988888,0.9169263419797675,1.4703826811656593,0.7126086318236693,1.1323970868977769,1.2994397288418873,0.9818642033838718,0.43080150426165126,0.6656110772422907,0.5833597436883665,1.0978355145994836,0.3588890755204851,0.4399481926460027,0.5384250388948251,0.46760585640193686,0.16441874161173226,1.3631867463064495,0.08064704939469786,0.5163918150684026,0.4860133358813383,0.49394572662437736,1.1590806045693804,1.2237749712116017,0.3165503824841295,0.3307628394467337,1.1974952381629573,0.6541890384810118,1.0653694592637484,0.683378740936257,1.402403753861845,0.27434840201078514,0.5691370219497907,1.0460111543656585,1.1937545338620255,0.580928046148826,0.8960817296069425,0.044757776950508144,0.31182901367291915,0.15320248037272266,0.7227716757340901,0.8609193873993987,0.5249361814213288,0.47043050279225235,0.7875724593062007,0.4862343276988462,1.012568591268538,0.07209266375946749,0.44615885219662904,0.46176402791984617,0.2876148476771274,1.0745087116078436,0.1006315596500284,1.099397991582684,1.2632024259075194,0.20898163255162605,1.1675002192219373,0.8577852494504663,1.0961302367912202,0.015509087108224184,0.7752705762698981,0.5171083888572156,0.5466985489711427,0.7044075127964873,1.4579428135632788,1.1795154415681648,0.032736548106493124,0.5212478390616719,0.24362884835394366,0.9166409951543492,1.4870845828151569,0.17133391852198354,1.3232109737531086,1.2221991995606976,0.4166551847948377,0.7755678447616896,0.9991361962512111,0.6076959556859653,0.11104753654898908,0.1341905357060585,1.10976682035302,0.7425558054342322,1.4337385461192558,1.042421302370255,0.8567388235448319,0.710908220924603,0.3328545080144126,0.5167566830369859,0.018615477829728,1.272004845950916,1.2786709522616595,1.0017582273880883,1.0482484891164132,0.87404412069692,1.4644504447299393,0.18985991562875182,0.3065313706642915,0.16130143237778144,1.4771549005950635,0.21534643215671795,0.6350909606233006,1.321638299467929,0.7311802031115289,0.5006145839957274,1.4869702919325818,0.42731140145010577,0.7162441758197267,1.3776303546007174,0.701779310546081,0.30415771027232974,0.950446480018881,0.8266153898692934,1.116850305424857,1.2412027712662046,0.8252423327451968,0.9913910460644086,1.442054329683035,1.1431508576408635,0.7699696611523159,1.1546103130536163,0.5965652008340006,0.4906532211392899,0.36551708773519387,0.5136290331416369,0.28529933024297505,1.220105674210879,0.9110966214585792,1.0412035956555166,0.5136665794792326,0.4038223526883136,0.5459781053545669,0.363288545226169,1.4081169857726519,0.1497773881910554,1.4027977336217738,0.6513038934876552,0.26700879279641304,0.8375359962415322,1.446717036306907,1.4260191549680532,0.5988376633827756,0.702547346371812,1.2303608949428757,1.2292655767466167,0.6682673264482637,0.7713766923775482,0.28586768284685626,0.35843445857603723,0.27899906937794766,0.08991686394211151,1.3108965706525453,0.735976267272882,0.1861732395164507,0.6268738852194445,0.7836223883020996,0.3490567756494437,0.5486729383447662,0.16127566739438048,0.40595575062624945,0.8218519986145779,0.5533468612931653,0.6194899834263542,0.42147987275144455,1.2599584461344753,1.3241765876246558,0.5033706891564802,0.28072944628291574,0.9892547150906903,1.4678515096528701,0.41466275697177774,0.9387010881711755,1.0435100241572215,0.5114532001146239,0.39212862203263577,0.22964436888273138,1.102102466177215,1.341718789489796,0.21039773983857946,0.26033631281732156,0.7003594001040679,0.36868124924524664,0.8276610670646274,0.4597124890303582,1.4501534623506622,1.0366571334591717,1.4018621571031082,1.1974109414589607,0.38215978424575714,0.05306946020649722,1.450010713701395,0.9793335768422297,0.39685805595539686,1.417830716442263,0.48321866707867855,0.5281510583698927,1.4047902364659062,0.8615547417423877,0.03378474311735136,0.6269840154151056,0.3948385686374043,1.244997287447755,0.3382768364421279,0.4487894128111499,0.9724587154032069,0.7521075914172676,1.0143716501727462,0.6972881576383199,1.23687251333825,0.7867074016340583,0.06628179588735456,0.6085936428244465,0.25553301709933207,0.24137384888290825,0.8473179590086831,0.15053324321554956,1.312584914490492,1.420779504667646,0.7114816861461664,0.764637586167179,0.5917809243681297,1.106319980873923,1.329774246808021,0.7782818418845106,1.199061221113601,1.242724754892137,1.1970052428598008,0.1616721264739504,0.8659459497143447,0.5976229717448711,0.5165850193445571,0.8441523515992515,0.933776540111771,0.9217485889520387,0.380555307616144,0.7535378660188331,0.3773869138679679,0.7370203664695945,1.095646047016221,0.29679695578085985,0.7837597089582471,0.7826277748747389,1.0100627951043235,0.33134382683312164,1.2302728795165023,0.2325397065770139,1.0152435256425458,0.1400997645242067,0.6513355027658758,1.475219639351445,0.624538186373622,1.3928358238722762,0.007747262264314825,1.1657749517365819,1.0414997697549273,0.5955621321572784,0.8162648250913959,0.4942282556304947,0.6513658292564632,0.3399249735263161,0.47176923000939686,1.2063849837912235,1.2379444076623005,0.6205224613113038,0.2521535176448799,0.3256680198739298,1.1453542317973655,1.3190005965782798,0.24433017262369428,0.5411134860027619,1.4424699657094355,0.7744488318475042,0.524548471671878,0.2648560487866602,0.3499029206885511,1.1710445874183315,1.2775972013855459,0.75213228908851,1.309906910161725,0.380687418801158,0.5310658273068473,0.7713517457062227,1.281807650485554,1.2766232162183315,0.012015633780946666,0.10077014036031573,1.418569906898857,0.829136701153135,1.1673113118508605,1.0357302041623238,0.0036702713247302454,0.0902745132256319,1.3701950318247147,0.8530122689024398,0.2344498456310915,0.20859518190708903,0.13771674385665433,0.7442455064513205,0.13034421975167831,0.24920392635190297,0.29082472889114774,1.4036736536215284,1.3552386753316044,0.9707413250648351,0.38723422687881515,1.4228807423634684,0.3156023535269059,0.3133587517287748,0.502015156885393,0.8192949031081687,0.6837960951576241,0.9587370836892046,0.5687368602656668,1.2815847502981632,1.4483505609385112,0.4350804696411006,0.6015072258695954,0.6089488584039566,0.1625224444606015,0.5002891988187956,0.32328443754023584,1.321693567483433,0.8654078011199136,1.3777302857346965,0.5563774810940547,1.001918055088287,0.7942164784924037,0.4181497889350006,0.2667848720418954,0.9118361258943919,0.9306254168023853,0.5001516041396086,1.009139411364566,0.3506655692282988,0.4666509472711386,0.9464946791281743,0.3177493995671394,0.7789985574412174,0.980012129241703,0.7860249807526254,1.1124724405772788,1.396810805033477,1.3780767034048935,1.3340067546369534,0.6278706532987194,0.9449314437843606,1.3826354325940593,1.4843910735523163,1.340837331640099,0.13606058473467075,0.13998238214385228,1.4398659268523664,1.476808730442611,1.2824648999570465,1.2732132202831352,0.5605414709745453,0.40717089209468704,0.8139385626018291,1.2305247511233361,0.599377077908811,0.8625248707433184,1.1263533493780815,1.3803744910212215,0.22904574003836514,0.24271571984659884,0.6590604005079732,0.5618931928280263,1.1958580611410896,0.8009679102322145,0.1798281981274697,1.1228733289503985,0.6284390020837687,0.1623664099240772,0.9926982197044567,1.3418548259404854,1.0134554516723853,0.7042273638088932,0.029107588332951295,1.413082943841477,1.0614060957254516,1.0262898385048314,0.6450560261505205,0.3887089500361117,0.41295935732011674,0.6226751555374421,0.8323214999970519,1.4553100223678241,0.38441978341045646,1.29384922008479,0.21414397580050964,0.7585268983773394,0.8086454894371071,1.4930584352096041,0.8931123713677709,0.8485658890448117,1.2080798897627478,0.81487720014269,0.10500410599067522,1.0018739884972403,0.6791586920038155,1.4556183944451808,0.0357618698998759,1.0232432405591576,0.4939806685061139,0.760049092084236,1.158402783454261,0.3293128391470707,1.067438006867234,0.18345408726476226,0.4633515671814459,0.3943167909799786,0.5654896589241702,1.3998572976114554,1.4154496157640983,0.18174647765719387,1.0801572641277621,0.33696863686229894,0.11763410256022927,1.12020423258628,0.9893135081184126,0.3454301038701228,1.0295078198693934,0.15077662418744292,1.341165705010949,0.067339453035281,0.6804921535593242,1.1522324782504012,1.2800651697815706,0.17895946434536353,1.0196869055174558,0.7076353567540083,0.6758518447148636,0.993730680057956,0.8536134608915085,0.5251160299931588,0.1635740862459399,0.7465011582743124,0.38754533034974914,1.0605083562453141,0.4937190480920108,0.3628176514496984,0.23794567424342417,0.49128462801584843,1.2706381418907877,1.0289845274980345,0.1432359103399164,0.4885899119012856,0.7573070697509348,0.8398805538634451,0.2558755520892831,0.587316000870034,0.13980731608490599,1.1864415265131005,1.044923964104468,0.3253999254250178,0.6085751385284734,0.42453848677489375,0.9776539550143937,1.226967189036764,0.28082097895538344,0.6279696329900338,0.6067341397273247,0.4516127287431504,1.074031703708322,1.04560035584981,0.1835755313062684,1.1909304119102742,0.9743828147123017,1.2562664418973974,1.4054236214170375,0.5489302179003293,0.5639196586296471,0.225917689590088,0.44653104395102977,0.80212180515779,1.3413772096254488,0.825906881042356,1.4694576214722854,0.896346937952018,1.0676943496408349,0.44984715504541334,0.22581178679470587,0.7278690304815856,1.4304535355418497,0.7855083266003082,1.1971193017688349,0.6007208966284264,0.23746481569360928,0.2530362619243107,1.1963477419426627,0.3663482444490412,0.6173010747383806,1.4275328303333723,0.5116019527721993,0.11925015477414669,1.4051725529364933,0.6666725646333014,0.24851578515153416,0.19909771773716867,0.22716714044883407,0.9997440128019052,0.6675013589326759,0.2579839060560607,1.139576871475118,1.08224068199084,1.2455298319701713,1.1075935838373334,0.3499583471603505,0.7557409460034515,0.942315219352963,0.4956677961479758,0.08863387333130379,0.13652094544168153,0.003038966501031193,1.073211017615043,0.38461647020714373,1.4086522739649379,1.045530719595852,0.896290494427987,1.387843259255003,0.7415594447996533,0.017409862426011946,0.6139161299643578,1.372367379028375,1.244715163061044,0.42540444538992295,0.06806300211309102,0.8809320312206155,1.340306012666673,0.3866677724235494,1.4248788667862828,0.3817099581886671,0.8917265990562223,1.0372393606533072,0.6146159637342925,0.19147008649128783,1.100928178606487,1.4104914394106438,0.91177748820034,0.8417269191331235,0.9413441010907482,0.7224185639498735,0.8892256123718971,0.05865978289177204,1.2655360376582987,0.12418508221835534,0.29044542630185394,1.4721387731395903,0.02966558271394093,1.017525246537599,1.39967512467015,0.7919875527300231,0.3013265734217197,0.09959024633080504,1.3696378526997333,0.5685757799225974,0.7752420756398581,0.8149455749922547,0.09715428297777123,0.42017413868837483,1.4662379297730899,0.2782096952638426,1.0540049618401504,0.018061092035067283,0.7677278845323015,1.0551581852659304,0.046635374097586335,0.5560233111228554,0.6909479653596378,1.0699413811020766,0.6363491306079199,0.61146043527296,0.32217070135915854,1.4362269739088038,0.6438737322124856,1.2391615602949102,0.8841300419958926,0.7308797165416749,0.008800813104596183,0.24720081373375813,0.35602338813226964,1.209701175632718,0.5623813878710686,0.0009480434312050812,1.395390841571094,1.254556127231162,1.3573613789120198,0.13579812059866214,0.4344066528793104,0.5414198487167485,1.2707891294981175,0.8932833621237886,0.6280439271363527,0.019255626767737122,0.8413367970409369,1.4383024412564,0.19539612289877173,0.028151396333003287,1.2947591902259044,0.18897486333367824,0.3288825742464168,0.255920250914625,0.23316805610969055,1.2056575182396618,0.21166614169292614,0.8268291800447332,1.4250720011655775,0.2800572613649263,0.5198913529291469,0.4491308839810512,1.1501104400281323,0.7374638198140475,1.1263808013492635,0.029888627175902405,0.8809570717430462,0.3585102686374855,1.383857211993439,0.8473503916332492,0.7902931375034021,1.333051156022471,0.4647146981339199,0.9755425373470795,1.0292368085048196,1.327969115732198,0.9578874787200387,0.17865387203465105,0.6428120789424676,0.3579585001719712,0.17132848898325426,0.04067803758969696,0.9642081937630141,1.07675981564673,0.6714664414899605,0.22019760186933784,1.259469694079439,1.383494163907471,0.41716456149179354,0.9115659298080222,0.9750283319745552,0.1230020985369345,1.4265990587106268,0.3940816353666239,1.4756807898427007,0.8853883024967453,1.4592452589940754,0.049917020501423104,0.707226625439439,1.2185625435742353,0.5376273665804439,0.1562659544574696,1.3950607236740733,0.7833788922244513,0.5296855181537917,0.5620117194019054,0.9791982328287996,1.288975006393549,1.2837620955391502,0.8521277094838784,0.46251953879641317,0.5180727230085151,0.8541633407779141,1.3088152794801564,1.094640911552646,0.32136786088560293,0.02910869805626004,1.3165881159714126,0.33378120733777583,0.7754929482675841,0.9676229593521339,1.0523955064141384,0.4250805502660742,1.0143463394910155,0.2822210912771009,0.9440920446892624,1.2327412356895855,0.9949491177533232,0.13020450876734763,1.1957485241438373,0.8397026705574155,1.2619134048444374,1.228651586915947,0.12528864648560906,1.2977849097800398,0.9087297674406846,1.2222878215064825,0.4968513122903571,0.6705430079873298,1.1211204704887676,0.6003353498638923,0.8497925637241721,0.43491643094339927,0.832123143664949,0.08797693310872773,0.5555319314217209,0.4115977425514877,1.1070878404783664,0.018960222643437163,1.487096546878012,0.44313076286061354,0.36903498326834716,0.5297592032916605,0.43481552050404204,0.5625158416000741,0.7153574346150728,0.08706460359241674,1.3260977798502696,1.2763757231248292,0.8091584864935967,1.0310358419241208,0.6641307756622787,1.494902190987654,1.415884076788544,0.23765988485131512,0.6695389498288393,1.360244534034106,0.05405856237304013,0.2672052949809426,1.1187724287644794,1.1751214416483309,0.16800973133530506,0.1971099251978407,0.1344115871068034,0.4572697808204447,1.2087670952656766,1.4852029862830403,0.048831247165712355,0.7210572897835856,0.10192714516617846,0.891563694379006,0.14896235783159045,0.14782782912712128,0.3074284362383688,0.033044123657712754,1.2533554197702224,1.3823757020118146,0.7113987907194582,0.22204192319388028,0.38575593761213595,1.4273540531439526,1.4951164288499972,1.3762926519699012,0.2789934531906503,1.2607040932349167,0.22659728777814925,0.14061930303468168,0.0560608008605919,1.2377339440269663,1.0790957505494698,0.032457975504348036,0.4316534437460344,0.9616850331268609,0.8189064089407555,0.36884024481624156,0.40148707222154867,0.294975954977168,1.4381013551013866,1.2883030565754632,0.32244832779215543,1.303837746180356,0.5457281766823523,0.41008505522526956,0.943130073385751,1.3322529231690903,0.47850705911570857,1.3186739548256214,0.714247480431611,0.35334031515572634,0.025807605078716767,0.9959405234396026,0.5693058128967254,0.8004772354276449,0.6796903926299853,1.0859670875496854,0.19596288534337802,0.6628815944364853,0.6718911755493517,1.020277266103765,1.0366998381954584,1.2299958813199239,0.6306177819558213,1.2796038845013988,0.47530893984049666,0.07973521292226543,0.2482165996747011,0.07741184090411002,0.880444560574484,0.10010158412197406,0.18232794448873807,0.5097482905643582,1.0808773515678975,1.0268425034264967,1.0964493887314724,0.9810106647767662,0.3387275695942294,0.5061862632613947,0.41936490531817083,1.3648360228676522,0.266287379721598,0.3043388516477381,0.6893385516326446,1.4740188399795284,0.9145920648020142,0.15380067701181366,1.3844868885341302,0.5873615728265863,1.3139965527597242,0.780096952216179,0.8747833145498582,0.045886008019081215,0.20765569383928134,0.46345877379907585,0.4063524550871268,0.607869357911223,0.11277008537753558,1.1299325320855502,0.8765783080051228,0.289364068866799,1.1556211111802772,1.2792486405328853,0.5432086113947823,0.8850409794428744,0.7265606663237552,1.3448865150317577,0.42705431273332556,1.0498842985973782,1.3801638363410074,1.0776670839081042,0.32464873763206187,0.841712453135804,1.3329356480384138,1.147770131698691,0.6041651324031854,0.9559323396608602,0.06016317665277526,0.4837419207515509,0.3175829343375876,1.1676427267775829,0.8369398424159897,0.21844257049105303,0.478599080670989,1.2039758225298063,0.2060960862590781,0.5232675543647334,1.1065960652736477,0.1904878762650099,0.6737343551513775,0.31641530864812945,0.5355860303750382,0.08604642829654152,0.36414130744541273,1.3804584290960005,0.050545879903414026,1.3091319367589758,1.1957127086600248,0.4408038457058943,0.6894586927015106,0.15192927442346427,0.2502298648012218,1.3971797635023084,1.4937547697106346,0.8623587583196152,0.7096942999083784,1.2804875673790064,0.33621777570905514,1.3546046422946536,1.4965782024434042,1.3265387163308322,1.3858113703096397,0.0026667874264891256,0.08239564407905614,0.9791959714793701,0.027868692870547385,0.9602396752604738,0.8307392948824497,1.4014814265032922,0.24334929208323963,0.8561548752178664,0.33620834022814305,1.022185635610763,1.4898881429358155,0.17962006375104178,0.00914038253436994,0.5124409731697049,0.052470376553700404,0.7911620177817,1.4256890734868288,1.1176026345798795,1.3706945086542657,1.1128623807217068,0.0545710600359543,0.06189061984574917,0.03165755537474352,1.1149977908920956,1.0719847402917853,0.047909854873806224,1.2916935800844493,0.43038954099525445,0.15965250651219637,0.13060512855412948,0.5819023553346442,0.2191420076706948,0.4763447293200497,1.2264737037078877,1.3424124586862534,0.6856068117776228,1.3953588115736522,0.34655762525334854,1.0994434328520366,0.0664046184166931,1.0107424817938446,1.4835815315386587,0.8321048151346941,0.2885317324521343,0.42342402037289306,0.9781210659538535,0.9936340016912274,0.40444228411611627,0.4970173950605069,1.023616070961992,1.2301567282588952,0.5468256340012496,0.036255602850826296,0.669105868729559,0.3603442960693778,1.062107750928912,0.7154673050791045,0.661364849156485,1.3895268045716087,0.2950539155157771,0.9112577603683563,0.9738097576088512,0.37797906934306336,0.7878273079108356,0.08588217952796068,0.1831601343209882,0.62282205930472,1.2458013920243438,1.241709193728286,1.339948740613762,0.9553617255374105,0.10883030132861443,0.6758222672835488,0.24283663057333116,0.5157822153474322,1.4743439620161434,0.24248298384914874,0.9383500821187862,1.42700983470027,0.8041290120154676,1.49797957969692,0.1295068504865744,0.9882946425366279,1.468223900373674,0.5325057832100333,0.397040407277997,0.21857865254117875,1.362672695851177,1.2997765401088772,1.3029730722802393,0.6277728896934358,0.5656560347637923,1.2583107200641563,1.2708007650663231,1.2391028049825528,0.5278760046382692,1.072347755974756,1.1457613621596447,0.9573243615328244,0.4767059884946388,0.897516498580645,1.0181019189614795,1.1077912510217645,0.030942464145056192,0.7144078621485744,1.2490622504999749,1.4685828352636054,0.6426609942312937,0.20898035191959646,0.25202618248084496,0.25476350045436186,0.06442148056864072,0.3156613171483177,0.07852239134292899,0.7766768686393233,0.9863722992349252,1.397159652703699,0.36606094217019075,1.384701356009961,1.0939880729484108,1.3591698214711325,0.6035365186476384,0.34110565026335926,0.5370620071807795,0.4125228896777982,0.15909400758067105,0.1757758105687654,1.22972727876355,0.4658992007340264,0.09174761988705799,0.3327390470288746,0.31918833756837706,0.48601538661401,1.4972717246611031,1.340419312685389,0.8937083069081084,0.07154980484986906,0.4263739505636442,1.107259320414724,0.536428444516917,0.05090113598005841,0.7647892920625193,0.2091047109111931,1.1701504692902458,0.1376017930570087,0.17261765770604348,0.7301103298593707,1.2209683939861073,0.7646915191398286,1.1971012739553544,0.10331260498781814,0.9055009855974347,0.07862502150096634,1.0068584706205912,1.055000838258695,0.4720067407814205,0.11076174699986863,0.9184479084799508,1.3311715462356983,0.6340717108471827,0.3465463989988277,0.5801324229393781,0.982831639877083,0.682715322540674,0.5112630891683236,0.5873796709246758,0.5542354964128076,1.0918258435728156,1.4611782473621029,1.193724034595182,1.1021255357276674,0.9345837227246412,0.8836466024504749,0.8477421443531739,1.4287807043432257,1.2474679219199238,0.17187665055238915,0.0786414201337472,1.110342827118043,0.6291957359275402,1.1167682764936468,1.3416158771271776,0.12047158026334237,0.2193044977286725,0.7768811838007901,0.9430079146321114,0.5635682547882689,0.4630171225914332,0.041331858514478625,1.0285360702838213,0.267373756647152,0.9797396586812879,0.011525095569406618,0.6220575529731264,1.335895017708689,0.36206368906452885,1.211394458937429,1.2651257906296176,1.1711146017788354,0.38986571090716043,0.9418406684767835,0.37409095047332175,0.054655333103136416,1.1029722793921195,0.5420935718757367,0.4143590561274293,0.9520520265220087,0.7686626671596718,1.1954960517356643,0.2546353213575739,0.09559174347918592,0.7377091599532812,1.3958277549267812,0.2733118853027077,0.3696600135159124,0.6557639973672682,1.273404393636067,0.054618078653941526,0.6721770464707713,0.5555815400937527,0.32060292515255717,0.1204618403732724,0.018605652937103867,0.2251509820979405,1.4633631285961906,1.0960711727750605,0.8251167576793681,0.9089760803269982,0.8705450867975408,1.1585611143765115,0.8106654491222225,0.6073462573009217,1.0227260165288337,0.12826653794497617,0.5173888600577492,0.13776420620625152,0.9866742298046258,0.834668440854648,0.3474970824766934,0.07600008961807492,0.9007581638412404,0.8597242454158556,1.1992181232027475,0.896846708336783,0.2791958559354477,0.3839937080932454,0.6775401054605129,1.4829431819482841,1.4123477559127686,0.5908319577180006,0.17777892302884268,0.6784782140143015,0.8695839363077481,0.7237893910548934,0.10601988186440764,0.3068609270381375,0.7033514140601521,0.602263082228269,0.19983938709833815,0.11526620580382002,1.36010221636558,1.4813348017536314,0.6283032432636135,0.42397588684031345,1.360294044422944,0.6891086094222569,0.03762067722885232,0.8661620537052959,0.4536349700731274,0.43747432199355346,1.353108331382805,0.023782218239933817,1.3011980411796713,0.6408927331236887,0.28168163763936277,0.8006356910072997,0.4579415742784857,0.22194724972736224,1.335979516027389,1.4614206964537646,1.453895792410901,0.7905501225322329,0.86119315577931,1.270413937605063,1.2083350173086274,0.531800432780487,0.22750908856155377,0.7481851385600513,0.7175330113605889,0.6227739338356507,1.231433898040114,0.5258428906142187,0.27204171673675404,1.040622894484839,0.3440435150135056,1.1932914017688143,0.2893534750535517,1.0011298842160314,0.4250566018956418,0.15110405986417585,1.4499761342534123,0.322418241834804,0.8090827629780624,0.32042290090182973,0.1945704299940479,0.7956004894046773,0.8270929666797737,0.7820933306885363,0.842806120775372,0.0658147242020174,0.6239587994072788,0.7600480483992279,0.9463458124219242,0.4792987864583808,1.4082639929877212,1.42425862749052,1.1292351519433705,0.17236036926570625,0.8054796293382128,0.8389266200331917,0.801369197685946,1.0610501684890892,0.19389542191464365,0.10618159058643506,0.14298949523771587,0.16706113973278347,0.998120230795238,0.08412041539222731,0.8927252154233978,0.10284553179263722,1.0395022652971955,0.3424137336029721,1.0986088392217008,0.17691285178359617,1.3172003939984134,0.7417672773531717,0.02537224467305027,1.0715552899160827,0.9164390186095308,0.8888293291007824,1.3537053442057232,0.6087904216636579,1.487542750609589,1.228299676654456,0.6016218679928665,0.49889756578672856,1.2736872558150922,0.81842068068286,0.29666035069630436,0.22459934179679064,0.7831952315230932,1.4667254194696637,0.8632537254127871,0.41810479808152085,1.0206779986400951,1.2867348494694428,0.875363741162855,0.7930136722591248,0.009571472999042319,0.09959702285118555,1.4748881120020232,0.8108463010485645,0.14974751812757725,0.2945639948134435,0.7866127470906679,0.9004641382078729,1.0442111005232209,1.1431613573682955,0.37651009390560986,1.477366729946078,1.2211135986145705,0.9586150750238602,1.2322414035674105,0.17651687036814168,0.5359553336448106,1.4027454320733648,0.22650845412269727,0.8132746212911829,1.2837941608340895,1.0612307814685797,0.885480397190066,1.0473376140534274,0.29388435606235946,1.4025416182382706,0.7606934759750416,1.1388653060372245,0.06886386712641174,1.0985876619152166,1.0039081133894834,1.3108449930962534,0.8841586229487475,0.007622428461597275,0.9218129835571118,0.7612637829578457,0.3738495714957116,0.14482571991000665,0.7287644015413804,1.4062866019515476,0.038176334682867685,0.25098643632440615,1.1305830875454375,0.9752385089688391,0.30396301625882877,0.6163610361738342,0.10654320220994956,1.0776902667948272,1.4590607984824844,0.6638722174986109,0.5035186259370819,0.005181380939808133,0.716848677395741,1.0877310044206836,0.5145656518939388,1.1205820253162455,0.9942118269455289,1.180508931717681,0.4901101688387169,0.7845142443572979,0.9888510761414695,0.2931100977737009,0.16900843874568094,0.09641038578117062,0.3286172797075716,0.612468923351281,1.344348382564757,1.0816957715054332,0.9326951004179336,1.3237378634727377,1.336291516702005,1.2361262051473607,0.3845677585271161,0.2783641666916636,1.3167156159839086,0.9555242244415239,0.18279028801749797,1.1083064234966267,1.2139975398331087,1.104093481580512,0.821371360689494,1.150236148836951,0.5803907331492975,0.6926259196907913,1.247473876232214,0.4618571470993045,0.16449133492007129,0.2778818427873553,0.7757090981475185,0.7390989115764981,0.7307046657532057,1.3023626973387965,0.5956811963905089,0.7458155308197081,0.20240693723195025,1.133581505936418,0.017544797636206144,1.2957433934714462,0.16816031422767141,1.416242192351335,0.9203473875162398,0.9160552291183407,0.37952352559990016,0.9695225626901729,0.5180453477624325,0.11606198131579437,0.27915601808655116,1.261412132282023,0.47084485841632695,0.4980047104655286,1.3199010220340168,0.4700870354685095,1.3324670215299683,1.0126313099425865,0.15867503747911482,1.4747740768755087,0.19529603832187326,0.20831678489403904,0.2600573310496197,0.6021866002979417,0.7122017531797067,1.2662313699019057,1.4800969656417915,0.7133967976254855,0.0458611141353385,0.08790091461579574,0.23848821425918376,0.8244409198362714,0.19942310840664956,1.4025284231709279,1.0812872251528272,0.2798566899172893,1.3421846270662323,0.22631641024519927,0.7181918952751614,0.09710999881055082,0.0663420616722567,1.47401033220002,0.8510717605231652,0.3436160252776998,0.0802953915101256,0.405957092219393,1.0361345667556692,0.5801815773972238,0.4817998413963472,1.1766291768424786,0.9594056218295595,0.6953262510160951,0.3994592657736763,0.003544395170193504,0.411294521649585,1.451184097220045,0.5004896620622467,0.7466353850287668,1.0353042285943483,1.4934415439797046,0.8613486766308254,0.6424217080336875,0.1750003421256422,0.5280274748494533,0.7143199589231791,1.222753521781761,1.4670289501975204,1.1479333436803825,1.3374121916840367,0.477505047050377,0.34482159029946724,0.9457845884584005,0.42884955970619815,0.1645689352941745,0.8396512872269146,1.017375731328244,1.1881765634734551,0.22120261792612084,1.1287722306640684,0.47034356144750583,1.050665179897182,0.40449288130870864,0.4606904654627175,0.06312778041340905,0.5762536402991121,0.04968067766469875,0.611402961040604,1.3785021609212873,0.9490431090197018,1.0730803437105787,0.38483176826795684,1.4477372876254084,0.9399854436117012,0.20891183988880935,0.015163363916843475,1.3711982318821228,1.3905179833535088,0.6797358806361424,0.8075776363140785,0.8846841958087655,0.017295319430537914,0.9494593026948466,1.4550179231436313,1.0611845511709768,1.3638422195478204,0.3384719497065367,0.056261050734196016,0.2888445598838914,0.45692613608081606,1.2691977033270343,1.4882720423379598,0.29498389123891944,1.333157500953205,1.205463612624315,0.449610550528896,1.1304678795147698,1.0945255939425058,1.4946279968986877,0.6080510804936834,1.087204515707832,0.4698531368905189,0.1930844180794985,1.098620236137638,1.0454072691441973,0.6860469503317831,0.37889825393556104,0.5557633895380564,1.3408951304881207,1.3100550381259926,1.0778225563412913,1.0276995503579966,0.24706956091074578,1.4032082935817973,0.652995945244543,0.38270281479440854,0.5756912869029114,1.1567582703193582,0.18476642495666973,0.09046355832169889,0.2404896285407504,0.7032034480515265,0.9158772486689912,0.9077995275974804,1.4316823130189011,0.14401332693835717,0.727613080562064,0.024465335633390983,1.3702648620253175,1.2161634615851247,1.4605149272152513,1.2203013424989084,0.0729043454444942,1.2206739724410367,0.8669516914105659,0.8581907043518258,1.0671107269077649,0.16152572877646154,0.7933008017283026,0.12158935642877472,1.1916114227694385,0.7676318476367952,0.3046599402855313,0.38034076309369375,1.4700174455484176,1.0035111145909132,0.4707621577832233,0.2277539573510809,1.3280305053973496,1.323637375906495,0.12269463718937224,1.030075848265899,0.7460478035093572,0.8495989468627336,1.081217033080826,0.4626984602747702,0.811889506425626,0.4496047615843604,0.7645126470765806,0.32702776505832043,0.5698754091558226,1.0344793009699966,0.31226055065652303,0.20238440339712832,1.4217509457780613,1.2123220697578392,1.0104982141494858,1.2594683383161662,0.8834073542700009,1.0298048729679685,1.0091195231566228,1.2299591900301496,0.6095053875341007,1.2567714990262984,0.5442285936609453,0.39965472768998944,0.400113181624872,1.043496807505873,0.414688834666717,1.429718638937464,0.6657792774728101,0.5074312302822794,0.28746858877915793,0.6957057538807683,1.4366520198300414,1.38474567136681,0.7882791094023001,1.0629778717777003,1.0979425512858993,0.6140809590197049,0.4972845383970104,1.3835198659221437,0.5526101711734169,0.1688229576821922,0.7649496076595795,0.7730611321689054,0.3547587644385152,0.2743901269545832,1.077691056605975,0.7980857226635886,0.6565887403665214,1.0855424250784371,0.39199290416822047,0.38695613857684336,0.880272804816058,0.12631975053074013,0.8626882876792473,0.43555200510767755,1.4209299968061468,0.32541522007432017,1.3381503351475545,0.7220738477174928,1.1036062446946446,0.12759043604869869,1.3659390874646968,0.04143308320578831,1.4668965929802202,0.4198526453658889,0.09802581923054976,0.23338144550136408,1.0202292926946996,0.9055234489438295,0.38229358378895306,0.7661358669070797,1.3435010834358876,1.4522899230729067,0.9216373220019312,1.2318148014409394,0.6392841801521848,0.02653486842017061,1.3678967016076964,0.3848233349327385,1.2705678994486465,0.04695360167469248,0.2517448570065323,1.3947661000647535,0.46848233998624433,0.7617473820792662,0.5167781627876045,0.4262246024611545,0.05494512855178779,0.3155796010408402,0.73783620179021,1.2747309621646978,0.2965705419844721,0.8700455578656798,0.45207370306982525,0.9024105451645601,0.37143603428012933,0.08340953622465008,0.9956454214003811,0.01775509836452477,1.0974090859800925,0.28366303066770976,0.8725218093224975,0.2901253731675827,0.550705556401379,1.4124556442290694,0.31519088772365345,0.5348180273670592,0.5944925062538515,0.0004782881596448463,0.9323164608811231,0.015614021946314338,0.7876155750507303,0.8468528120441967,1.4495550678701756,0.6051710940935595,0.9608063995049423,1.3708279439156574,1.0529391311415628,0.2579249300874663,0.8968947929494129,0.044048293906403746,1.1597133764552001,1.4822859289540673,0.6997652958327303,0.022691168272684192,0.969957896223006,0.8920518704415307,1.1178161136999725,0.14947813730919346,0.8264326137648876,0.7307867305335275,0.873916718706659,0.33896433490010375,0.38117875094398473,1.428235806044831,0.7396948 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment