Merge branch 'main' into production
7
.babelrc
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"presets": [
|
||||
"@babel/typescript",
|
||||
"@babel/preset-env",
|
||||
["@babel/preset-react", {"runtime": "automatic"}]
|
||||
]
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
export DEPLOY_HOSTNAME=
|
||||
export DEPLOY_USERNAME=
|
||||
export DEPLOY_PATH=
|
||||
export NODE_ENV=
|
||||
export SASS_PATH="${SASS_PATH}:./src/css"
|
16
.gitignore
vendored
|
@ -1,13 +1,7 @@
|
|||
build/
|
||||
tmp/
|
||||
/build/
|
||||
/tmp/
|
||||
/rake/tasks/deploy.rake
|
||||
/.gems/
|
||||
/crash.log
|
||||
node_modules/
|
||||
.gems/
|
||||
.dev/
|
||||
*.log
|
||||
.env
|
||||
.idea
|
||||
*.conf
|
||||
*.yml
|
||||
*.mp3
|
||||
*.sh
|
||||
*.core
|
||||
|
|
37
README.md
|
@ -1,11 +1,11 @@
|
|||
## About
|
||||
|
||||
This repository contains the source code of
|
||||
[al-quran.reflectslight.io](https://al-quran.reflectslight.io),
|
||||
[al-quran.reflectslight.io](https://al-quran.reflectslight.io) -
|
||||
a static website for reading (and listening to) The Noble Quran.
|
||||
After the website is built, the build directory consists of HTML,
|
||||
CSS, JavaScript and other static assets that can be hosted by a
|
||||
regular web server (eg nginx, apache, etc).
|
||||
standard web server (eg nginx, apache, ...).
|
||||
|
||||
## Stack
|
||||
|
||||
|
@ -18,28 +18,20 @@ the website can be built:
|
|||
There is a good chance there's a package available for
|
||||
tidy-html5 on your operating system of choice.
|
||||
|
||||
## Local development
|
||||
|
||||
__1. Clone__
|
||||
## Development
|
||||
|
||||
# Clone repository
|
||||
git clone https://github.com/ReflectsLight/al-quran.git
|
||||
cd al-quran
|
||||
|
||||
__2. Install Ruby, NodeJS packages__
|
||||
|
||||
# Install Ruby, NodeJS packages
|
||||
bundle install
|
||||
npm i
|
||||
|
||||
__3. Build website__
|
||||
|
||||
# Build once
|
||||
rake build
|
||||
|
||||
# Build whenever a change is detected
|
||||
rake build:watch
|
||||
|
||||
__4. Start server on localhost__
|
||||
# Build website
|
||||
rake nanoc:build
|
||||
|
||||
# Start web server
|
||||
rake server
|
||||
|
||||
## Thanks
|
||||
|
@ -47,9 +39,14 @@ __4. Start server on localhost__
|
|||
First and foremost, Alhamdulillah.
|
||||
|
||||
* Thanks to the following graphic artists:
|
||||
* [RefreshIcon](/src/js/components/Icon.tsx)
|
||||
by
|
||||
[Muhammad Haq](https://freeicons.io/profile/823).
|
||||
- [RefreshIcon](/src/js/components/Icon.tsx)
|
||||
by
|
||||
[Muhammad Haq](https://freeicons.io/profile/823).
|
||||
|
||||
* Thanks to the following translators:
|
||||
* English (The Clear Quran) by Dr. Mustafa Khattab
|
||||
- English (The Clear Quran) by Dr. Mustafa Khattab
|
||||
|
||||
## License
|
||||
|
||||
The "source code" is released under the terms of the GPL. <br>
|
||||
See [./LICENSE](./LICENSE) for details.
|
||||
|
|
4
Rules
|
@ -9,12 +9,12 @@ require "nanoc-tidy"
|
|||
locales = %w[ar en]
|
||||
slugs = Ryo.from(
|
||||
JSON.parse(
|
||||
File.read(File.join(Dir.getwd, "src", "slugs.json"))
|
||||
File.read(File.join(Dir.getwd, "src", "json", "slugs.json"))
|
||||
)
|
||||
)
|
||||
i18n = Ryo.from(
|
||||
JSON.parse(
|
||||
File.read(File.join(Dir.getwd, "src", "i18n.json"))
|
||||
File.read(File.join(Dir.getwd, "src", "json", "i18n.json"))
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/sh
|
||||
sizes="16x16 32x32 48x48 64x64 128x128 256x256"
|
||||
for size in ${sizes}; do
|
||||
convert src/favicon.svg \
|
||||
-resize ${size} \
|
||||
-background none \
|
||||
-fuzz 8% \
|
||||
-mattecolor "#FFFFFF" \
|
||||
-alpha set \
|
||||
-channel RGBA \
|
||||
-fill none \
|
||||
-opaque white \
|
||||
-gravity center \
|
||||
-extent ${size} \
|
||||
png32:src/favicon-${size}.png
|
||||
done
|
|
@ -9,7 +9,7 @@ module Mixin::T
|
|||
end
|
||||
|
||||
def i18n
|
||||
path = File.join(Dir.getwd, "src", "i18n.json")
|
||||
path = File.join(Dir.getwd, "src", "json", "i18n.json")
|
||||
json = File.binread(path)
|
||||
Ryo.from JSON.parse(json)
|
||||
end
|
||||
|
|
|
@ -20,7 +20,7 @@ compile "/images/*.svg" do
|
|||
write("#{item.identifier}.gz")
|
||||
end
|
||||
|
||||
compile "/favicon*.png" do
|
||||
compile "/images/*.png" do
|
||||
write(item.identifier.to_s)
|
||||
end
|
||||
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
##
|
||||
# Rules for the surah index available at /<locale>/ (eg /en/) and its
|
||||
# dependencies.
|
||||
# Rules for the surah index available at /<locale>/.
|
||||
|
||||
locales.each do |locale|
|
||||
compile "/html/index.html.erb", rep: "/#{locale}/surah/index" do
|
||||
|
@ -14,17 +13,17 @@ locales.each do |locale|
|
|||
end
|
||||
end
|
||||
|
||||
compile "/js/pages/SurahIndex.tsx" do
|
||||
compile "/js/main/surah-index.tsx" do
|
||||
filter :webpack, depend_on: ["/js/components",
|
||||
"/js/lib/[!WebPackage]/",
|
||||
"/js/lib/",
|
||||
"/js/hooks"]
|
||||
write "/js/surah-index.js"
|
||||
write "/js/main/surah-index.js"
|
||||
filter :gzip
|
||||
write "/js/surah-index.js.gz"
|
||||
write "/js/main/surah-index.js.gz"
|
||||
end
|
||||
|
||||
compile "/js/loaders/SurahIndexLoader.ts" do
|
||||
filter :webpack, depend_on: "/js/lib/WebPackage"
|
||||
filter :webpack
|
||||
write "/js/loaders/surah-index-loader.js"
|
||||
end
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ locales.each do |locale|
|
|||
end
|
||||
end
|
||||
|
||||
compile "/js/pages/Random.ts" do
|
||||
compile "/js/main/random.ts" do
|
||||
filter(:webpack)
|
||||
write("/js/random.js")
|
||||
write("/js/main/random.js")
|
||||
end
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
##
|
||||
# Rules for a redirect from the root path to the surah index for a given locale
|
||||
# (eg / -> /en/)
|
||||
# Rules for a redirect from the root path to the surah index
|
||||
# for a given locale (eg / -> /en/).
|
||||
|
||||
compile "/html/redirect.html.erb" do
|
||||
filter(:tidy)
|
||||
|
@ -11,7 +11,7 @@ compile "/html/redirect.html.erb" do
|
|||
write("/index.html")
|
||||
end
|
||||
|
||||
compile "/js/pages/Redirect.ts" do
|
||||
compile "/js/main/redirect.ts" do
|
||||
filter(:webpack)
|
||||
write("/js/redirect.js")
|
||||
write("/js/main/redirect.js")
|
||||
end
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
##
|
||||
# Rules for the surah stream available at /<locale>/<name>/ (eg /ar/al-fatihah/)
|
||||
# and its dependencies.
|
||||
# Rules for the surah stream available at /<locale>/<name>/.
|
||||
|
||||
compile "/*/*/surah.json" do
|
||||
write(item.identifier.to_s)
|
||||
|
@ -36,17 +35,17 @@ Ryo.each(slugs) do |id, slug|
|
|||
end
|
||||
end
|
||||
|
||||
compile "/js/pages/SurahStream.tsx" do
|
||||
compile "/js/main/surah-stream.tsx" do
|
||||
filter :webpack,
|
||||
depend_on: ["/js/components", "/js/lib/", "/js/hooks"],
|
||||
reject: proc { _1.include?("WebPackage") }
|
||||
write "/js/surah-stream.js"
|
||||
write "/js/main/surah-stream.js"
|
||||
filter :gzip
|
||||
write "/js/surah-stream.js.gz"
|
||||
write "/js/main/surah-stream.js.gz"
|
||||
end
|
||||
|
||||
compile "/js/loaders/SurahStreamLoader.ts" do
|
||||
filter :webpack, depend_on: "/js/lib/WebPackage"
|
||||
filter :webpack
|
||||
write "/js/loaders/surah-stream-loader.js"
|
||||
end
|
||||
|
||||
|
|
|
@ -1,27 +0,0 @@
|
|||
##
|
||||
# frozen_string_literal: true
|
||||
|
||||
desc "Configure environment for deployment"
|
||||
task "deploy:env" do
|
||||
ENV["buildenv"] = "production"
|
||||
print "Set $NODE_ENV to 'production'", "\n"
|
||||
end
|
||||
|
||||
desc "Deploy the website"
|
||||
task "deploy" => %i[deploy:env nanoc:clean nanoc:build] do
|
||||
git_branch = `git branch --show-current`.chomp
|
||||
if git_branch != "production"
|
||||
warn "This task must be run on the 'production' branch."
|
||||
exit(1)
|
||||
end
|
||||
print "Wait...", "\n"
|
||||
sh(
|
||||
"rsync",
|
||||
"--delete", "-rvah",
|
||||
"--chmod=Fu=r,Fg=r,Du=rx,Dg=rx",
|
||||
"--rsync-path='/home/0x1eef/rsync.sh'",
|
||||
"--exclude=audio/",
|
||||
"build/al-quran/",
|
||||
"0x1eef@al-quran.reflectslight.io:/mnt/www/al-quran.reflectslight.io/"
|
||||
)
|
||||
end
|
|
@ -30,8 +30,8 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="root h-full" data-locale="<%= context.locale %>"></div>
|
||||
<%= inline_json("/i18n.json") %>
|
||||
<%= inline_json("/surahs.json") %>
|
||||
<%= inline_json("/json/i18n.json") %>
|
||||
<%= inline_json("/json/surahs.json") %>
|
||||
<script src="/js/loaders/surah-index-loader.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<link rel="icon" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="icon" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" sizes="48x48" href="/favicon-48x48.png">
|
||||
<link rel="icon" sizes="64x64" href="/favicon-64x64.png">
|
||||
<link rel="icon" sizes="128x128" href="/favicon-128x128.png">
|
||||
<link rel="icon" sizes="256x256" href="/favicon-256x256.png">
|
||||
<link rel="icon" sizes="16x16" href="/images/favicon-16x16.png">
|
||||
<link rel="icon" sizes="32x32" href="/images/favicon-32x32.png">
|
||||
<link rel="icon" sizes="48x48" href="/images/favicon-48x48.png">
|
||||
<link rel="icon" sizes="64x64" href="/images/favicon-64x64.png">
|
||||
<link rel="icon" sizes="128x128" href="/images/favicon-128x128.png">
|
||||
<link rel="icon" sizes="256x256" href="/images/favicon-256x256.png">
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<%= erb("partials/favicon.html.erb") %>
|
||||
</head>
|
||||
<body>
|
||||
<%= inline_json("/slugs.json") %>
|
||||
<script src="/js/random.js"></script>
|
||||
<%= inline_json("/json/slugs.json") %>
|
||||
<script src="/js/main/random.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -3,8 +3,10 @@
|
|||
<head>
|
||||
<title><%= t("en", "TheNobleQuran") %></title>
|
||||
<link rel="canonical" href="https://al-quran.reflectslight.io/en/">
|
||||
<link rel="alternate" hreflang="ar" href="https://al-quran.reflectslight.io/ar/">
|
||||
<link rel="alternate" hreflang="en" href="https://al-quran.reflectslight.io/en/">
|
||||
<%= erb("partials/favicon.html.erb") %>
|
||||
<script src="/js/redirect.js"></script>
|
||||
<script src="/js/main/redirect.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
</body>
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
data-locale="<%= context.locale %>"
|
||||
data-surah-id="<%= context.surah.id %>">
|
||||
</div>
|
||||
<%= inline_json("/i18n.json") %>
|
||||
<%= inline_json("/recitations.json") %>
|
||||
<%= inline_json("/json/i18n.json") %>
|
||||
<%= inline_json("/json/recitations.json") %>
|
||||
<script src="/js/loaders/surah-stream-loader.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 821 B After Width: | Height: | Size: 821 B |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
@ -1,14 +1,12 @@
|
|||
import React, { useRef, useState, useEffect } from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import classNames from "classnames";
|
||||
|
||||
import * as Quran from "lib/Quran";
|
||||
import React, { useRef, useState, useEffect } from "react";
|
||||
import { useTheme } from "hooks/useTheme";
|
||||
import { ThemeSelect } from "components/ThemeSelect";
|
||||
import { LanguageSelect } from "components/LanguageSelect";
|
||||
import { i18n, formatNumber, TFunction } from "lib/i18n";
|
||||
import { formatNumber, TFunction } from "lib/i18n";
|
||||
import { RightArrow } from "components/Icon";
|
||||
import { SurahIndexFilter } from "components/SurahIndexFilter";
|
||||
import classNames from "classnames";
|
||||
|
||||
interface Props {
|
||||
locale: Quran.Locale;
|
||||
|
@ -16,7 +14,7 @@ interface Props {
|
|||
t: TFunction;
|
||||
}
|
||||
|
||||
function SurahIndex({ locale, surahs, t }: Props) {
|
||||
export function SurahIndex({ locale, surahs, t }: Props) {
|
||||
const [theme, setTheme] = useTheme();
|
||||
const [index, setIndex] = useState<Quran.Surah[]>(surahs);
|
||||
const ref = useRef<HTMLDivElement>();
|
||||
|
@ -92,19 +90,3 @@ function SurahIndex({ locale, surahs, t }: Props) {
|
|||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
(function () {
|
||||
const root: HTMLElement = document.querySelector(".root")!;
|
||||
const locale = root.getAttribute("data-locale") as Quran.Locale;
|
||||
const script: HTMLScriptElement = document.querySelector(".json.surahs")!;
|
||||
const t = i18n(document.querySelector<HTMLElement>(".json.i18n")!.innerText);
|
||||
const surahs: Quran.Surah[] = JSON.parse(script.innerText).map(
|
||||
(el: Quran.JSON.Surah) => {
|
||||
return Quran.Surah.fromJSON(locale, el);
|
||||
},
|
||||
);
|
||||
|
||||
ReactDOM.createRoot(root).render(
|
||||
<SurahIndex locale={locale} surahs={surahs} t={t} />,
|
||||
);
|
||||
})();
|
|
@ -1,7 +1,5 @@
|
|||
import * as Quran from "lib/Quran";
|
||||
import React, { useState, useEffect, useRef } from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import classNames from "classnames";
|
||||
|
||||
import { useTheme } from "hooks/useTheme";
|
||||
import { Timer } from "components/Timer";
|
||||
import { Stream } from "components/Stream";
|
||||
|
@ -9,8 +7,8 @@ import { ThemeSelect } from "components/ThemeSelect";
|
|||
import { LanguageSelect } from "components/LanguageSelect";
|
||||
import { AudioControl } from "components/AudioControl";
|
||||
import { PlayIcon, PauseIcon, RefreshIcon, StalledIcon } from "components/Icon";
|
||||
import * as Quran from "lib/Quran";
|
||||
import { i18n, TFunction } from "lib/i18n";
|
||||
import classNames from "classnames";
|
||||
import { TFunction } from "lib/i18n";
|
||||
|
||||
interface Props {
|
||||
node: HTMLScriptElement;
|
||||
|
@ -26,7 +24,7 @@ const getTimeSlots = (recitation: Quran.Recitation) => {
|
|||
return timeSlots;
|
||||
};
|
||||
|
||||
function SurahStream({ node, recitations, locale, paused, t }: Props) {
|
||||
export function SurahStream({ node, recitations, locale, paused, t }: Props) {
|
||||
const [stream, setStream] = useState<Quran.Ayat>([]);
|
||||
const [isPaused, setIsPaused] = useState<boolean>(paused);
|
||||
const [soundOn, setSoundOn] = useState<boolean>(false);
|
||||
|
@ -148,27 +146,3 @@ function SurahStream({ node, recitations, locale, paused, t }: Props) {
|
|||
</article>
|
||||
);
|
||||
}
|
||||
|
||||
(function () {
|
||||
const root: HTMLElement = document.querySelector(".root")!;
|
||||
const locale = root.getAttribute("data-locale") as Quran.Locale;
|
||||
const node: HTMLScriptElement = document.querySelector("script.surah")!;
|
||||
const toBoolean = (str: string | null): boolean =>
|
||||
str !== null && ["1", "t", "true", "yes"].includes(str);
|
||||
const params = new URLSearchParams(location.search);
|
||||
const paused = toBoolean(params.get("paused"));
|
||||
const recitations = JSON.parse(
|
||||
document.querySelector<HTMLElement>(".json.recitations")!.innerText,
|
||||
);
|
||||
const t = i18n(document.querySelector<HTMLElement>(".json.i18n")!.innerText);
|
||||
|
||||
ReactDOM.createRoot(root).render(
|
||||
<SurahStream
|
||||
recitations={recitations}
|
||||
node={node}
|
||||
locale={locale}
|
||||
paused={paused}
|
||||
t={t}
|
||||
/>,
|
||||
);
|
||||
})();
|
|
@ -7,7 +7,7 @@ import postman, { item } from "postman";
|
|||
const inlineStyle: HTMLStyleElement = document.querySelector(".css.postman")!;
|
||||
|
||||
postman(
|
||||
item.script("/js/surah-index.js"),
|
||||
item.script("/js/main/surah-index.js"),
|
||||
item.css("/css/surah-index.css"),
|
||||
item.font("Kanit Regular", "url(/fonts/kanit-regular.ttf)"),
|
||||
item.font("Mada Regular", "url(/fonts/mada-regular.ttf"),
|
||||
|
|
|
@ -13,7 +13,7 @@ import * as Quran from "lib/Quran";
|
|||
);
|
||||
|
||||
postman(
|
||||
item.script("/js/surah-stream.js"),
|
||||
item.script("/js/main/surah-stream.js"),
|
||||
item.css("/css/surah-stream.css"),
|
||||
item.font("Kanit Regular", "url(/fonts/kanit-regular.ttf)"),
|
||||
item.font("Mada Regular", "url(/fonts/mada-regular.ttf"),
|
||||
|
|
21
src/js/main/surah-index.tsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
import * as Quran from "lib/Quran";
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import { i18n } from "lib/i18n";
|
||||
import { SurahIndex } from "components/SurahIndex";
|
||||
|
||||
(function () {
|
||||
const root: HTMLElement = document.querySelector(".root")!;
|
||||
const locale = root.getAttribute("data-locale") as Quran.Locale;
|
||||
const script: HTMLScriptElement = document.querySelector(".json.surahs")!;
|
||||
const t = i18n(document.querySelector<HTMLElement>(".json.i18n")!.innerText);
|
||||
const surahs: Quran.Surah[] = JSON.parse(script.innerText).map(
|
||||
(el: Quran.JSON.Surah) => {
|
||||
return Quran.Surah.fromJSON(locale, el);
|
||||
},
|
||||
);
|
||||
|
||||
ReactDOM.createRoot(root).render(
|
||||
<SurahIndex locale={locale} surahs={surahs} t={t} />,
|
||||
);
|
||||
})();
|
29
src/js/main/surah-stream.tsx
Normal file
|
@ -0,0 +1,29 @@
|
|||
import * as Quran from "lib/Quran";
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import { i18n } from "lib/i18n";
|
||||
import { SurahStream } from "components/SurahStream";
|
||||
|
||||
(function () {
|
||||
const root: HTMLElement = document.querySelector(".root")!;
|
||||
const locale = root.getAttribute("data-locale") as Quran.Locale;
|
||||
const node: HTMLScriptElement = document.querySelector("script.surah")!;
|
||||
const toBoolean = (str: string | null): boolean =>
|
||||
str !== null && ["1", "t", "true", "yes"].includes(str);
|
||||
const params = new URLSearchParams(location.search);
|
||||
const paused = toBoolean(params.get("paused"));
|
||||
const recitations = JSON.parse(
|
||||
document.querySelector<HTMLElement>(".json.recitations")!.innerText,
|
||||
);
|
||||
const t = i18n(document.querySelector<HTMLElement>(".json.i18n")!.innerText);
|
||||
|
||||
ReactDOM.createRoot(root).render(
|
||||
<SurahStream
|
||||
recitations={recitations}
|
||||
node={node}
|
||||
locale={locale}
|
||||
paused={paused}
|
||||
t={t}
|
||||
/>,
|
||||
);
|
||||
})();
|
|
@ -1 +0,0 @@
|
|||
[[1,5.96],[2,6.58],[3,4.1],[4,4.34],[5,6.48],[6,5.07],[7,16.85]]
|
|
@ -1 +0,0 @@
|
|||
[[1,12.64],[2,32.24],[3,33.04],[4,33.65],[5,30.64],[6,17.08],[7,19.12],[8,10.11],[9,20.3],[10,19.49],[11,22.6],[12,30.82],[13,21.97],[14,12.83],[15,45.66],[16,22.15],[17,15.41],[18,37.02],[19,22.26],[20,24.97],[21,25.13],[22,47.65],[23,32.97],[24,61.94],[25,13.19],[26,17.42],[27,30.25],[28,22.7],[29,11.21],[30,16.51],[31,27.74],[32,11.78],[33,10.61],[34,17.35],[35,29.34],[36,16.82],[37,18.86],[38,17.06],[39,18.76],[40,11.7],[41,17.66],[42,11.91],[43,10.42],[44,11.55],[45,20.24],[46,15.65],[47,14.18],[48,7.78],[49,24.53],[50,11.42],[51,15.44],[52,12.04],[53,14.84],[54,19.49],[55,17.61],[56,5.51],[57,17.84],[58,10.84],[59,20.82],[60,19.3],[61,38.03],[62,11.02],[63,5.46],[64,14.34],[65,11.0],[66,25.31],[67,15.18],[68,23.48],[69,8.07],[70,13.53],[71,37.8],[72,14.55],[73,20.95],[74,23.85],[75,16.61],[76,11.89],[77,12.67],[78,17.89],[79,6.53],[80,12.38],[81,16.69],[82,7.73],[83,23.85],[84,15.05],[85,10.29],[86,5.75],[87,19.41],[88,30.01],[89,12.75],[90,35.81],[91,10.32],[92,14.24],[93,27.51],[94,24.82],[95,9.27],[96,6.97],[97,8.46],[98,22.44],[99,15.2],[100,11.7],[101,12.83],[102,16.98],[103,10.79],[104,26.41],[105,9.59],[106,14.32],[107,25.81],[108,23.72],[109,11.36]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.11],[2,2.82],[3,2.9],[4,3.13],[5,3.16],[6,5.59],[7,4.7],[8,4.75],[9,5.77],[10,3.24],[11,6.09]]
|
|
@ -1 +0,0 @@
|
|||
[[1,1.78],[2,1.75],[3,4.23],[4,5.98],[5,5.54],[6,5.02],[7,3.87],[8,4.36],[9,3.58],[10,3.58],[11,2.53]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.08],[2,3.45],[3,3.55],[4,4.47],[5,4.75],[6,3.4],[7,5.3],[8,7.37]]
|
|
@ -1 +0,0 @@
|
|||
[[1,1.75],[2,4.28],[3,10.24]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.23],[2,4.47],[3,4.99],[4,5.38],[5,3.94],[6,3.29],[7,4.23],[8,3.87],[9,3.21]]
|
|
@ -1 +0,0 @@
|
|||
[[1,6.24],[2,4.94],[3,5.12],[4,6.22],[5,4.47]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.27],[2,6.09],[3,4.96],[4,9.93]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.91],[2,5.02],[3,4.83],[4,3.55],[5,5.9],[6,4.13],[7,3.42]]
|
|
@ -1 +0,0 @@
|
|||
[[1,5.3],[2,3.27],[3,4.23]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.99],[2,4.13],[3,5.9],[4,4.96],[5,6.01],[6,4.21]]
|
|
@ -1 +0,0 @@
|
|||
[[1,13.61],[2,10.87],[3,27.19],[4,7.26],[5,21.58],[6,18.81],[7,31.95],[8,22.23],[9,13.11],[10,16.8],[11,12.41],[12,28.63],[13,19.96],[14,19.25],[15,15.12],[16,16.35],[17,42.53],[18,25.39],[19,13.69],[20,24.35],[21,12.75],[22,7.16],[23,17.16],[24,15.57],[25,11.57],[26,10.79],[27,29.39],[28,22.31],[29,26.85],[30,11.86],[31,41.93],[32,14.39],[33,13.27],[34,17.27],[35,13.71],[36,15.18],[37,13.58],[38,18.63],[39,12.46],[40,26.8],[41,12.09],[42,17.37],[43,22.31],[44,20.3],[45,14.92],[46,19.67],[47,16.27],[48,23.41],[49,22.23],[50,15.91],[51,13.19],[52,20.01],[53,15.1],[54,20.79],[55,9.4],[56,21.71],[57,22.8],[58,16.43],[59,12.88],[60,17.87],[61,27.9],[62,23.07],[63,21.32],[64,19.3],[65,11.68],[66,19.88],[67,8.36],[68,11.68],[69,17.35],[70,19.28],[71,14.5],[72,12.85],[73,16.85],[74,11.96],[75,7.84],[76,17.27],[77,14.42],[78,29.52],[79,9.8],[80,9.72],[81,29.47],[82,16.93],[83,7.97],[84,28.87],[85,16.3],[86,12.54],[87,23.56],[88,34.66],[89,21.79],[90,10.66],[91,19.15],[92,18.16],[93,21.55],[94,20.53],[95,9.06],[96,8.07],[97,12.02],[98,10.87],[99,9.27],[100,11.57],[101,26.51],[102,14.55],[103,16.85],[104,7.29],[105,10.08],[106,9.8],[107,15.57],[108,20.51],[109,23.33],[110,18.47],[111,13.32],[112,13.19],[113,17.03],[114,17.29],[115,7.68],[116,26.17],[117,9.4],[118,13.17],[119,18.21],[120,20.04],[121,8.67],[122,7.92],[123,18.05]]
|
|
@ -1 +0,0 @@
|
|||
[[1,5.33],[2,7.55],[3,8.99]]
|
|
@ -1 +0,0 @@
|
|||
[[1,6.11],[2,5.62],[3,4.13],[4,4.75],[5,5.02]]
|
|
@ -1 +0,0 @@
|
|||
[[1,2.66],[2,2.14],[3,2.93],[4,3.97]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.42],[2,2.98],[3,4.55],[4,5.41],[5,4.6]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.08],[2,2.61],[3,2.82],[4,5.25],[5,5.25],[6,4.99]]
|
|
@ -1 +0,0 @@
|
|||
[[1,11.08],[2,9.74],[3,16.04],[4,16.12],[5,17.37],[6,31.56],[7,9.4],[8,15.57],[9,13.24],[10,16.51],[11,11.89],[12,9.06],[13,14.26],[14,10.68],[15,21.55],[16,9.98],[17,20.35],[18,21.76],[19,19.83],[20,10.74],[21,36.47],[22,12.93],[23,21.81],[24,22.39],[25,22.91],[26,18.23],[27,9.33],[28,15.54],[29,11.52],[30,19.15],[31,38.32],[32,22.94],[33,17.82],[34,11.34],[35,10.53],[36,31.48],[37,29.26],[38,29.62],[39,11.1],[40,49.89],[41,20.64],[42,17.74],[43,32.37],[44,10.66],[45,11.68],[46,29.39],[47,15.07],[48,14.84],[49,10.53],[50,22.7],[51,27.82],[52,12.28],[53,19.44],[54,14.08],[55,8.36],[56,19.17],[57,7.92],[58,10.14],[59,18.05],[60,7.81],[61,7.18],[62,17.27],[63,20.64],[64,17.32],[65,27.4],[66,25.68],[67,29.07],[68,28.08],[69,16.09],[70,16.27],[71,6.01],[72,11.05],[73,10.89],[74,9.43],[75,14.08],[76,38.09],[77,23.61],[78,18.18],[79,14.71],[80,33.96],[81,22.44],[82,13.69],[83,20.61],[84,13.09],[85,11.1],[86,12.36],[87,18.0],[88,24.48],[89,9.8],[90,23.8],[91,10.42],[92,9.67],[93,12.8],[94,14.42],[95,7.5],[96,21.42],[97,12.38],[98,9.27],[99,16.12],[100,42.27],[101,23.77],[102,15.23],[103,7.03],[104,8.83],[105,11.21],[106,7.47],[107,14.52],[108,16.72],[109,32.73],[110,22.86],[111,24.61]]
|
|
@ -1 +0,0 @@
|
|||
[[1,26.04],[2,29.88],[3,25.99],[4,42.97],[5,32.39],[6,22.49],[7,19.46],[8,14.65],[9,6.82],[10,17.01],[11,35.4],[12,11.02],[13,21.05],[14,25.76],[15,13.95],[16,46.63],[17,51.38],[18,28.97],[19,16.72],[20,8.65],[21,15.78],[22,27.43],[23,20.27],[24,7.42],[25,23.04],[26,17.08],[27,18.47],[28,14.39],[29,8.23],[30,30.43],[31,47.15],[32,14.05],[33,38.97],[34,13.11],[35,20.9],[36,26.46],[37,21.6],[38,23.28],[39,11.31],[40,14.21],[41,16.69],[42,16.88],[43,16.09]]
|
|
@ -1 +0,0 @@
|
|||
[[1,19.93],[2,13.66],[3,19.41],[4,20.79],[5,23.43],[6,31.29],[7,13.61],[8,14.68],[9,47.23],[10,40.2],[11,30.67],[12,20.56],[13,21.08],[14,10.89],[15,5.83],[16,11.55],[17,18.16],[18,23.3],[19,14.0],[20,5.15],[21,38.03],[22,52.14],[23,19.8],[24,19.02],[25,15.39],[26,13.69],[27,19.96],[28,11.42],[29,6.4],[30,15.73],[31,22.33],[32,27.38],[33,12.8],[34,17.97],[35,13.58],[36,18.99],[37,33.25],[38,17.37],[39,13.45],[40,10.5],[41,8.88],[42,17.66],[43,11.73],[44,32.44],[45,15.65],[46,13.06],[47,13.3],[48,10.76],[49,7.65],[50,8.86],[51,10.19],[52,16.77]]
|
|
@ -1 +0,0 @@
|
|||
[[1,12.15],[2,6.84],[3,8.07],[4,9.87],[5,7.11],[6,10.68],[7,9.61],[8,11.52],[9,9.12],[10,7.37],[11,8.23],[12,5.64],[13,7.24],[14,10.61],[15,11.49],[16,10.45],[17,6.03],[18,7.73],[19,12.59],[20,8.2],[21,14.5],[22,17.27],[23,7.42],[24,8.91],[25,7.37],[26,9.87],[27,9.98],[28,13.45],[29,8.07],[30,5.64],[31,8.02],[32,7.76],[33,10.66],[34,5.07],[35,5.51],[36,6.58],[37,5.36],[38,4.47],[39,12.07],[40,4.88],[41,5.33],[42,9.93],[43,5.72],[44,8.52],[45,7.65],[46,4.49],[47,10.37],[48,9.53],[49,8.99],[50,5.25],[51,6.43],[52,9.8],[53,6.92],[54,9.93],[55,7.31],[56,11.26],[57,5.62],[58,9.27],[59,7.63],[60,7.78],[61,7.52],[62,6.35],[63,6.27],[64,6.58],[65,14.92],[66,12.72],[67,6.03],[68,7.76],[69,4.05],[70,6.35],[71,9.61],[72,6.19],[73,4.49],[74,10.27],[75,6.61],[76,5.33],[77,5.96],[78,5.88],[79,8.25],[80,5.9],[81,6.87],[82,6.32],[83,4.55],[84,6.61],[85,16.54],[86,5.62],[87,8.88],[88,15.23],[89,5.9],[90,6.97],[91,4.86],[92,5.3],[93,3.94],[94,5.59],[95,5.04],[96,9.12],[97,6.22],[98,6.64],[99,5.88]]
|
|
@ -1 +0,0 @@
|
|||
[[1,11.23],[2,21.42],[3,8.36],[4,9.12],[5,10.42],[6,8.41],[7,14.39],[8,11.1],[9,13.11],[10,15.26],[11,21.34],[12,18.16],[13,13.56],[14,30.9],[15,11.02],[16,6.66],[17,7.68],[18,10.37],[19,6.22],[20,10.08],[21,9.35],[22,15.57],[23,13.84],[24,11.57],[25,18.81],[26,24.01],[27,25.52],[28,25.63],[29,10.74],[30,23.56],[31,18.42],[32,15.54],[33,25.84],[34,11.08],[35,33.07],[36,30.07],[37,14.45],[38,20.4],[39,13.3],[40,12.88],[41,19.44],[42,7.5],[43,18.13],[44,16.8],[45,14.6],[46,8.07],[47,10.06],[48,18.0],[49,17.08],[50,9.2],[51,14.99],[52,10.97],[53,12.28],[54,12.77],[55,8.57],[56,15.44],[57,8.96],[58,10.84],[59,20.19],[60,13.51],[61,31.03],[62,18.44],[63,18.86],[64,16.4],[65,18.42],[66,19.93],[67,18.23],[68,12.96],[69,28.24],[70,22.83],[71,25.26],[72,26.2],[73,15.15],[74,11.96],[75,28.76],[76,29.26],[77,20.24],[78,18.44],[79,21.39],[80,33.1],[81,28.84],[82,7.84],[83,10.68],[84,14.81],[85,10.16],[86,27.48],[87,10.24],[88,13.66],[89,28.89],[90,21.94],[91,21.0],[92,36.05],[93,25.08],[94,20.82],[95,15.83],[96,18.31],[97,22.39],[98,9.72],[99,11.1],[100,11.36],[101,20.87],[102,14.05],[103,20.24],[104,11.94],[105,13.51],[106,29.36],[107,14.18],[108,17.19],[109,7.6],[110,18.57],[111,14.32],[112,31.53],[113,12.28],[114,15.52],[115,23.28],[116,22.83],[117,7.05],[118,18.16],[119,21.89],[120,12.36],[121,9.98],[122,11.0],[123,13.3],[124,19.17],[125,22.83],[126,13.82],[127,14.65],[128,9.64]]
|
|
@ -1 +0,0 @@
|
|||
[[1,23.43],[2,15.15],[3,10.76],[4,18.23],[5,24.16],[6,14.76],[7,30.56],[8,13.04],[9,17.37],[10,9.72],[11,11.47],[12,32.29],[13,16.48],[14,7.29],[15,22.47],[16,18.73],[17,14.05],[18,20.17],[19,14.21],[20,20.74],[21,13.61],[22,9.09],[23,31.06],[24,11.39],[25,14.11],[26,9.35],[27,11.65],[28,14.58],[29,13.04],[30,15.28],[31,16.64],[32,11.62],[33,23.9],[34,16.14],[35,13.79],[36,13.51],[37,11.26],[38,8.07],[39,19.57],[40,16.35],[41,11.28],[42,12.62],[43,8.96],[44,25.7],[45,14.68],[46,23.22],[47,19.46],[48,10.06],[49,13.9],[50,4.75],[51,26.88],[52,11.62],[53,19.23],[54,14.79],[55,18.57],[56,12.88],[57,21.79],[58,19.17],[59,26.49],[60,29.86],[61,15.33],[62,16.48],[63,14.08],[64,22.07],[65,9.74],[66,13.71],[67,19.1],[68,14.71],[69,21.94],[70,24.08],[71,18.89],[72,11.47],[73,16.35],[74,11.94],[75,12.12],[76,13.95],[77,11.44],[78,13.4],[79,13.43],[80,16.27],[81,11.13],[82,15.05],[83,14.18],[84,10.79],[85,15.67],[86,16.04],[87,9.14],[88,19.41],[89,15.07],[90,8.99],[91,13.14],[92,14.29],[93,26.2],[94,17.32],[95,15.52],[96,13.82],[97,31.71],[98,21.26],[99,27.12],[100,19.62],[101,24.03],[102,20.74],[103,10.16],[104,15.36],[105,13.48],[106,13.19],[107,19.2],[108,10.0],[109,7.44],[110,22.05],[111,19.51]]
|
|
@ -1 +0,0 @@
|
|||
[[1,11.7],[2,16.88],[3,3.63],[4,7.0],[5,16.51],[6,12.25],[7,11.05],[8,8.05],[9,9.74],[10,15.49],[11,8.44],[12,11.62],[13,14.34],[14,21.71],[15,23.77],[16,20.27],[17,34.12],[18,30.54],[19,53.0],[20,16.25],[21,38.19],[22,45.43],[23,8.44],[24,19.54],[25,8.96],[26,22.96],[27,16.33],[28,29.62],[29,39.37],[30,11.65],[31,38.77],[32,16.95],[33,13.11],[34,14.84],[35,14.11],[36,15.23],[37,18.44],[38,9.87],[39,17.79],[40,17.48],[41,8.7],[42,21.11],[43,11.05],[44,11.39],[45,27.09],[46,14.81],[47,11.23],[48,15.86],[49,28.92],[50,30.25],[51,14.5],[52,14.42],[53,12.83],[54,15.57],[55,22.57],[56,23.12],[57,32.0],[58,18.6],[59,10.71],[60,13.74],[61,10.79],[62,13.9],[63,20.17],[64,9.46],[65,14.05],[66,10.95],[67,6.24],[68,6.87],[69,12.09],[70,11.86],[71,17.32],[72,8.02],[73,9.06],[74,19.02],[75,8.23],[76,12.54],[77,29.6],[78,11.86],[79,19.02],[80,12.8],[81,11.78],[82,39.94],[83,9.25],[84,10.61],[85,2.19],[86,23.67],[87,13.09],[88,13.61],[89,3.58],[90,13.11],[91,5.56],[92,3.47],[93,11.99],[94,16.59],[95,12.98],[96,21.55],[97,8.65],[98,15.57],[99,11.49],[100,7.34],[101,11.94],[102,21.08],[103,6.19],[104,11.28],[105,16.61],[106,12.54],[107,11.42],[108,5.93],[109,15.83],[110,30.9]]
|
|
@ -1 +0,0 @@
|
|||
[[1,11.86],[2,5.59],[3,6.48],[4,15.6],[5,14.94],[6,8.02],[7,13.98],[8,14.34],[9,13.17],[10,15.54],[11,14.18],[12,9.12],[13,7.68],[14,8.59],[15,8.49],[16,11.02],[17,14.5],[18,11.1],[19,10.08],[20,11.31],[21,19.28],[22,7.05],[23,15.49],[24,10.81],[25,11.26],[26,21.71],[27,10.92],[28,11.78],[29,8.88],[30,10.11],[31,11.57],[32,8.8],[33,8.78],[34,8.05],[35,17.19],[36,9.93],[37,11.42],[38,12.23],[39,11.57],[40,8.8],[41,8.62],[42,12.2],[43,15.18],[44,10.87],[45,13.61],[46,14.52],[47,10.19],[48,16.56],[49,14.99],[50,9.33],[51,11.23],[52,8.88],[53,7.68],[54,11.13],[55,10.32],[56,8.96],[57,3.87],[58,38.45],[59,11.42],[60,14.0],[61,13.74],[62,12.15],[63,9.17],[64,15.78],[65,12.72],[66,7.44],[67,9.33],[68,12.54],[69,11.42],[70,7.37],[71,10.06],[72,8.57],[73,19.3],[74,9.77],[75,24.76],[76,22.21],[77,9.98],[78,6.79],[79,7.92],[80,5.28],[81,7.71],[82,8.83],[83,10.16],[84,7.26],[85,6.32],[86,6.3],[87,8.23],[88,4.7],[89,3.76],[90,10.79],[91,4.65],[92,6.82],[93,10.76],[94,4.68],[95,6.37],[96,9.93],[97,11.7],[98,11.94]]
|
|
@ -1 +0,0 @@
|
|||
[[1,9.09],[2,11.99],[3,17.19],[4,20.3],[5,14.0],[6,16.35],[7,16.72],[8,15.62],[9,15.49],[10,18.0],[11,13.64],[12,11.62],[13,29.94],[14,22.36],[15,10.76],[16,17.27],[17,23.22],[18,9.72],[19,30.59],[20,35.94],[21,16.56],[22,34.32],[23,27.01],[24,18.57],[25,44.41],[26,50.89],[27,26.49],[28,20.04],[29,23.59],[30,33.67],[31,24.42],[32,14.86],[33,32.99],[34,17.74],[35,21.45],[36,25.0],[37,16.48],[38,21.32],[39,14.99],[40,20.69],[41,25.23],[42,10.55],[43,9.17],[44,17.5],[45,13.71],[46,12.75],[47,16.72],[48,20.87],[49,27.69],[50,15.41],[51,17.42],[52,10.92],[53,9.69],[54,35.21],[55,18.44],[56,10.53],[57,29.02],[58,24.45],[59,21.29],[60,32.08],[61,79.8],[62,35.32],[63,20.48],[64,17.27],[65,14.32],[66,12.75],[67,25.36],[68,23.82],[69,21.89],[70,19.62],[71,28.06],[72,13.95],[73,15.49],[74,46.0],[75,21.45],[76,34.72],[77,10.27],[78,14.0],[79,30.46],[80,28.87],[81,18.7],[82,15.36],[83,47.7],[84,20.48],[85,74.81],[86,16.95],[87,38.77],[88,12.64],[89,31.61],[90,35.21],[91,38.95],[92,16.22],[93,39.6],[94,20.4],[95,13.37],[96,31.27],[97,20.82],[98,18.39],[99,15.96],[100,14.0],[101,27.32],[102,86.05],[103,14.42],[104,17.08],[105,28.45],[106,20.77],[107,17.5],[108,21.47],[109,36.49],[110,23.35],[111,21.47],[112,18.63],[113,37.17],[114,35.74],[115,15.36],[116,14.58],[117,14.71],[118,28.37],[119,14.26],[120,33.52],[121,22.18],[122,15.99],[123,18.63],[124,24.14],[125,31.32],[126,32.68],[127,17.29],[128,22.91],[129,21.76],[130,20.48],[131,10.29],[132,20.61],[133,32.26],[134,15.6],[135,15.39],[136,38.16],[137,23.64],[138,10.68],[139,19.23],[140,36.6],[141,14.5],[142,23.72],[143,53.08],[144,37.93],[145,36.86],[146,19.46],[147,7.13],[148,20.3],[149,17.68],[150,35.55],[151,22.88],[152,8.44],[153,13.82],[154,16.17],[155,18.34],[156,15.1],[157,12.85],[158,24.63],[159,23.88],[160,14.97],[161,17.27],[162,9.64],[163,11.26],[164,52.32],[165,32.5],[166,12.64],[167,24.97],[168,20.74],[169,14.42],[170,23.9],[171,21.5],[172,16.33],[173,28.6],[174,34.87],[175,15.57],[176,16.25],[177,66.8],[178,40.78],[179,9.8],[180,16.4],[181,16.48],[182,16.69],[183,14.94],[184,37.56],[185,48.9],[186,20.85],[187,74.66],[188,21.08],[189,29.54],[190,13.98],[191,30.67],[192,6.84],[193,14.32],[194,23.12],[195,15.26],[196,71.16],[197,34.14],[198,33.12],[199,12.9],[200,24.69],[201,16.27],[202,10.63],[203,29.75],[204,16.51],[205,14.76],[206,13.04],[207,14.58],[208,19.93],[209,14.08],[210,19.17],[211,22.8],[212,23.51],[213,55.61],[214,37.43],[215,30.07],[216,26.17],[217,66.9],[218,19.49],[219,33.75],[220,32.21],[221,50.36],[222,31.66],[223,21.68],[224,17.01],[225,16.69],[226,16.4],[227,7.31],[228,51.67],[229,54.65],[230,34.17],[231,55.38],[232,39.97],[233,74.81],[234,33.8],[235,59.25],[236,29.57],[237,44.98],[238,10.4],[239,16.27],[240,32.08],[241,8.49],[242,8.75],[243,26.44],[244,9.8],[245,20.09],[246,57.16],[247,45.82],[248,38.95],[249,67.71],[250,19.75],[251,32.94],[252,11.0],[253,56.01],[254,26.75],[255,53.13],[256,26.54],[257,33.46],[258,42.79],[259,69.69],[260,40.99],[261,28.0],[262,26.33],[263,17.76],[264,48.01],[265,36.0],[266,48.01],[267,38.82],[268,19.23],[269,19.38],[270,19.07],[271,23.75],[272,33.57],[273,37.38],[274,24.37],[275,50.55],[276,12.43],[277,20.45],[278,14.99],[279,17.76],[280,15.8],[281,15.62],[282,154.98],[283,38.45],[284,31.01],[285,33.07],[286,55.72]]
|
|
@ -1 +0,0 @@
|
|||
[[1,1.99],[2,6.79],[3,4.62],[4,8.72],[5,3.79],[6,9.48],[7,8.12],[8,9.61],[9,4.02],[10,19.41],[11,6.16],[12,10.61],[13,5.25],[14,12.25],[15,11.36],[16,9.14],[17,4.52],[18,11.73],[19,3.76],[20,6.43],[21,7.26],[22,11.91],[23,4.47],[24,5.41],[25,3.87],[26,3.76],[27,4.88],[28,2.82],[29,4.47],[30,2.46],[31,3.63],[32,3.97],[33,3.81],[34,3.0],[35,5.04],[36,5.2],[37,6.4],[38,7.37],[39,23.09],[40,37.04],[41,3.03],[42,8.28],[43,6.65],[44,7.94],[45,12.04],[46,8.59],[47,24.01],[48,10.5],[49,4.49],[50,8.86],[51,5.07],[52,9.61],[53,22.7],[54,10.06],[55,10.4],[56,7.34],[57,8.1],[58,16.59],[59,8.44],[60,7.26],[61,15.7],[62,8.75],[63,16.59],[64,10.74],[65,14.55],[66,12.38],[67,5.69],[68,6.4],[69,14.5],[70,10.97],[71,33.67],[72,20.92],[73,17.71],[74,12.46],[75,11.76],[76,16.56],[77,17.53],[78,9.82],[79,5.59],[80,20.01],[81,17.29],[82,10.81],[83,6.9],[84,9.61],[85,10.37],[86,28.19],[87,21.6],[88,13.32],[89,10.81],[90,19.93],[91,9.3],[92,6.43],[93,4.94],[94,20.3],[95,4.7],[96,15.93],[97,32.6],[98,13.66],[99,13.95],[100,7.99],[101,9.3],[102,9.43],[103,6.82],[104,11.34],[105,8.1],[106,4.86],[107,6.9],[108,14.42],[109,11.47],[110,9.61],[111,9.72],[112,11.62],[113,17.29],[114,18.29],[115,11.78],[116,13.01],[117,16.43],[118,6.84],[119,6.5],[120,14.08],[121,20.19],[122,8.02],[123,21.97],[124,14.86],[125,10.16],[126,10.53],[127,14.21],[128,19.07],[129,11.26],[130,22.54],[131,22.15],[132,13.84],[133,13.11],[134,26.57],[135,14.26]]
|
|
@ -1 +0,0 @@
|
|||
[[1,10.61],[2,12.02],[3,21.47],[4,10.48],[5,17.42],[6,11.99],[7,16.46],[8,10.21],[9,12.77],[10,11.86],[11,12.96],[12,10.14],[13,12.83],[14,8.54],[15,9.59],[16,8.83],[17,13.14],[18,13.69],[19,14.84],[20,6.84],[21,8.52],[22,14.39],[23,6.9],[24,24.03],[25,19.49],[26,10.27],[27,8.57],[28,14.16],[29,17.06],[30,22.52],[31,14.99],[32,11.99],[33,12.96],[34,10.11],[35,16.04],[36,18.96],[37,10.79],[38,8.83],[39,16.54],[40,13.11],[41,14.73],[42,15.73],[43,17.27],[44,25.34],[45,14.76],[46,14.45],[47,21.89],[48,11.65],[49,9.82],[50,11.08],[51,11.7],[52,11.47],[53,7.13],[54,10.92],[55,8.07],[56,13.82],[57,10.24],[58,9.2],[59,10.66],[60,8.59],[61,8.88],[62,10.53],[63,10.14],[64,11.0],[65,11.6],[66,10.42],[67,8.93],[68,11.21],[69,10.29],[70,7.18],[71,9.56],[72,12.28],[73,20.98],[74,22.07],[75,8.39],[76,12.67],[77,15.91],[78,14.84],[79,21.26],[80,12.59],[81,16.48],[82,13.64],[83,11.99],[84,19.38],[85,9.14],[86,9.51],[87,23.98],[88,11.23],[89,13.64],[90,25.29],[91,15.67],[92,12.93],[93,9.77],[94,14.0],[95,9.2],[96,13.35],[97,19.15],[98,12.51],[99,12.33],[100,6.9],[101,11.6],[102,9.85],[103,14.94],[104,22.67],[105,12.25],[106,7.24],[107,7.97],[108,16.9],[109,16.25],[110,8.33],[111,8.05],[112,12.3]]
|
|
@ -1 +0,0 @@
|
|||
[[1,12.51],[2,23.56],[3,12.64],[4,12.93],[5,93.6],[6,13.9],[7,11.73],[8,13.06],[9,15.86],[10,10.61],[11,27.64],[12,13.14],[13,11.47],[14,19.3],[15,27.48],[16,12.9],[17,25.94],[18,40.96],[19,17.37],[20,5.85],[21,4.55],[22,14.68],[23,24.27],[24,9.72],[25,29.57],[26,22.57],[27,15.28],[28,25.99],[29,12.15],[30,23.17],[31,22.99],[32,11.18],[33,14.47],[34,27.51],[35,19.64],[36,36.65],[37,24.11],[38,14.34],[39,12.8],[40,45.48],[41,19.54],[42,11.08],[43,5.77],[44,13.09],[45,20.32],[46,25.16],[47,16.8],[48,13.35],[49,11.42],[50,11.34],[51,12.41],[52,33.23],[53,21.05],[54,23.33],[55,17.48],[56,15.26],[57,11.31],[58,20.11],[59,11.49],[60,18.16],[61,15.96],[62,17.03],[63,17.84],[64,12.33],[65,24.32],[66,13.24],[67,18.83],[68,7.84],[69,10.53],[70,17.48],[71,18.73],[72,36.31],[73,33.15],[74,9.85],[75,14.89],[76,10.74],[77,13.37],[78,49.35]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.96],[2,5.33],[3,4.88],[4,5.28],[5,5.3],[6,11.96],[7,10.4],[8,6.9],[9,6.77],[10,4.99],[11,7.63],[12,9.56],[13,8.46],[14,30.28],[15,7.08],[16,7.13],[17,12.67],[18,18.21],[19,17.14],[20,12.72],[21,17.27],[22,5.43],[23,15.8],[24,32.65],[25,9.77],[26,5.51],[27,36.81],[28,12.83],[29,10.61],[30,8.07],[31,7.21],[32,12.67],[33,27.51],[34,8.93],[35,11.76],[36,4.86],[37,8.8],[38,8.99],[39,4.78],[40,6.03],[41,11.18],[42,7.86],[43,6.92],[44,22.62],[45,10.45],[46,7.76],[47,9.38],[48,5.41],[49,7.13],[50,15.15],[51,12.85],[52,11.91],[53,11.57],[54,5.09],[55,9.06],[56,7.05],[57,7.26],[58,5.96],[59,6.03],[60,11.94],[61,8.18],[62,13.06],[63,12.49],[64,10.97],[65,7.63],[66,11.39],[67,6.27],[68,11.31],[69,7.11],[70,12.28],[71,20.09],[72,10.19],[73,7.42],[74,9.93],[75,11.52],[76,9.9],[77,13.45],[78,12.46],[79,7.18],[80,10.5],[81,5.36],[82,12.17],[83,14.6],[84,8.99],[85,6.56],[86,7.16],[87,6.32],[88,12.77],[89,8.23],[90,7.11],[91,22.0],[92,8.12],[93,6.95],[94,5.98],[95,9.4],[96,9.2],[97,6.77],[98,5.12],[99,9.95],[100,21.92],[101,12.33],[102,8.93],[103,13.77],[104,8.02],[105,10.14],[106,12.17],[107,8.86],[108,5.54],[109,17.95],[110,13.77],[111,11.62],[112,5.69],[113,10.27],[114,9.35],[115,11.52],[116,11.02],[117,18.99],[118,8.33]]
|
|
@ -1 +0,0 @@
|
|||
[[1,14.84],[2,31.48],[3,20.27],[4,25.21],[5,11.26],[6,22.28],[7,9.74],[8,13.17],[9,10.4],[10,11.1],[11,27.48],[12,17.29],[13,18.47],[14,15.7],[15,19.8],[16,16.17],[17,11.34],[18,8.07],[19,20.17],[20,10.29],[21,40.28],[22,28.08],[23,15.6],[24,11.73],[25,12.83],[26,26.62],[27,21.55],[28,19.91],[29,17.11],[30,17.66],[31,105.56],[32,22.0],[33,56.56],[34,17.32],[35,58.57],[36,13.82],[37,20.43],[38,15.23],[39,27.77],[40,33.07],[41,22.13],[42,7.18],[43,41.4],[44,11.18],[45,34.01],[46,15.12],[47,18.94],[48,11.47],[49,7.26],[50,15.62],[51,18.39],[52,12.25],[53,18.08],[54,22.7],[55,44.9],[56,8.99],[57,12.8],[58,59.9],[59,19.41],[60,29.36],[61,84.19],[62,45.17],[63,30.69],[64,23.12]]
|
|
@ -1 +0,0 @@
|
|||
[[1,9.93],[2,18.63],[3,22.73],[4,19.91],[5,11.21],[6,11.89],[7,16.01],[8,17.87],[9,10.14],[10,18.39],[11,10.16],[12,11.47],[13,10.95],[14,9.67],[15,14.81],[16,11.31],[17,18.57],[18,23.61],[19,18.99],[20,27.19],[21,22.94],[22,13.32],[23,12.15],[24,10.14],[25,11.99],[26,12.02],[27,10.68],[28,7.24],[29,13.11],[30,10.68],[31,15.12],[32,19.02],[33,8.96],[34,14.37],[35,10.66],[36,12.3],[37,17.87],[38,10.16],[39,8.88],[40,16.9],[41,11.13],[42,18.26],[43,10.29],[44,14.42],[45,15.73],[46,7.05],[47,12.56],[48,17.16],[49,13.58],[50,11.55],[51,7.11],[52,8.99],[53,18.39],[54,13.17],[55,14.55],[56,7.71],[57,14.03],[58,12.83],[59,18.0],[60,14.0],[61,13.4],[62,12.8],[63,14.08],[64,7.65],[65,12.62],[66,7.76],[67,12.41],[68,20.98],[69,8.72],[70,20.19],[71,9.12],[72,8.78],[73,12.05],[74,21.96],[75,12.8],[76,7.31],[77,11.96]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.59],[2,5.38],[3,7.42],[4,12.77],[5,11.21],[6,10.92],[7,10.53],[8,9.06],[9,5.72],[10,7.73],[11,5.8],[12,7.99],[13,9.12],[14,7.5],[15,10.14],[16,8.67],[17,7.0],[18,10.06],[19,8.96],[20,10.32],[21,12.02],[22,10.29],[23,4.81],[24,11.15],[25,5.8],[26,6.97],[27,8.62],[28,10.89],[29,8.7],[30,5.04],[31,6.84],[32,6.82],[33,7.97],[34,7.76],[35,9.4],[36,7.92],[37,4.36],[38,6.27],[39,7.21],[40,7.71],[41,13.58],[42,6.14],[43,9.14],[44,11.36],[45,7.47],[46,4.21],[47,6.58],[48,3.71],[49,27.4],[50,8.7],[51,13.14],[52,10.55],[53,6.74],[54,8.86],[55,6.09],[56,4.96],[57,6.66],[58,5.17],[59,7.99],[60,5.22],[61,13.17],[62,6.3],[63,14.84],[64,4.65],[65,7.89],[66,4.68],[67,9.61],[68,5.33],[69,4.86],[70,6.27],[71,7.6],[72,4.75],[73,5.3],[74,8.65],[75,6.58],[76,6.4],[77,7.81],[78,4.34],[79,5.41],[80,4.65],[81,5.04],[82,9.12],[83,7.63],[84,5.88],[85,6.3],[86,9.2],[87,4.52],[88,5.96],[89,5.9],[90,5.43],[91,4.86],[92,6.09],[93,8.52],[94,5.04],[95,4.34],[96,5.69],[97,7.18],[98,5.07],[99,6.43],[100,3.89],[101,3.6],[102,7.24],[103,9.82],[104,5.93],[105,5.02],[106,6.84],[107,4.57],[108,4.47],[109,10.5],[110,4.1],[111,7.63],[112,5.67],[113,6.32],[114,4.94],[115,4.7],[116,8.49],[117,4.47],[118,9.59],[119,6.92],[120,4.83],[121,8.52],[122,5.28],[123,4.08],[124,6.35],[125,4.28],[126,4.21],[127,10.03],[128,6.56],[129,5.85],[130,5.75],[131,4.1],[132,6.37],[133,4.88],[134,3.92],[135,7.73],[136,10.27],[137,6.5],[138,3.58],[139,12.38],[140,5.88],[141,4.0],[142,6.77],[143,4.39],[144,4.18],[145,10.79],[146,6.16],[147,4.99],[148,6.43],[149,6.56],[150,4.28],[151,5.51],[152,6.58],[153,7.86],[154,12.77],[155,10.87],[156,9.35],[157,5.09],[158,12.72],[159,6.74],[160,4.96],[161,6.37],[162,4.41],[163,4.34],[164,9.98],[165,4.86],[166,11.55],[167,8.93],[168,5.8],[169,6.11],[170,5.64],[171,5.46],[172,4.13],[173,9.93],[174,9.25],[175,5.46],[176,5.49],[177,6.19],[178,4.47],[179,4.41],[180,10.5],[181,6.4],[182,5.43],[183,11.44],[184,6.22],[185,8.05],[186,10.81],[187,11.62],[188,5.38],[189,11.28],[190,9.59],[191,6.24],[192,6.24],[193,4.21],[194,5.8],[195,5.36],[196,5.49],[197,13.35],[198,6.06],[199,7.18],[200,6.06],[201,7.24],[202,7.37],[203,5.43],[204,4.73],[205,5.46],[206,8.67],[207,6.61],[208,8.88],[209,4.88],[210,5.3],[211,6.16],[212,5.51],[213,9.01],[214,5.36],[215,6.58],[216,9.74],[217,5.12],[218,4.83],[219,4.08],[220,5.15],[221,7.29],[222,5.67],[223,5.64],[224,6.82],[225,7.52],[226,6.24],[227,26.44]]
|
|
@ -1 +0,0 @@
|
|||
[[1,12.75],[2,5.07],[3,12.02],[4,13.11],[5,12.02],[6,8.54],[7,22.0],[8,16.56],[9,9.33],[10,26.67],[11,13.27],[12,22.41],[13,13.4],[14,15.93],[15,18.83],[16,21.6],[17,11.21],[18,25.97],[19,30.01],[20,12.43],[21,15.28],[22,15.93],[23,13.09],[24,17.42],[25,13.92],[26,9.22],[27,8.05],[28,12.54],[29,11.49],[30,11.36],[31,6.66],[32,13.74],[33,14.03],[34,17.66],[35,12.56],[36,24.11],[37,18.7],[38,12.3],[39,15.88],[40,41.82],[41,13.14],[42,19.07],[43,11.73],[44,32.97],[45,13.09],[46,14.05],[47,15.15],[48,10.11],[49,19.2],[50,10.32],[51,12.38],[52,15.62],[53,7.29],[54,11.15],[55,17.71],[56,18.52],[57,9.74],[58,9.46],[59,15.52],[60,30.54],[61,24.48],[62,18.96],[63,20.48],[64,22.02],[65,13.24],[66,11.36],[67,14.21],[68,14.68],[69,8.15],[70,9.43],[71,7.89],[72,8.91],[73,10.11],[74,9.06],[75,12.77],[76,14.32],[77,6.3],[78,8.23],[79,6.32],[80,10.81],[81,14.5],[82,18.08],[83,13.06],[84,16.09],[85,8.65],[86,16.72],[87,16.43],[88,19.96],[89,12.07],[90,13.04],[91,15.6],[92,15.1],[93,14.08]]
|
|
@ -1 +0,0 @@
|
|||
[[1,7.52],[2,4.73],[3,9.56],[4,22.47],[5,14.18],[6,11.83],[7,25.73],[8,17.79],[9,18.91],[10,18.1],[11,11.13],[12,17.66],[13,19.41],[14,13.74],[15,40.44],[16,12.17],[17,9.53],[18,19.57],[19,32.1],[20,19.51],[21,12.15],[22,13.84],[23,28.45],[24,15.26],[25,27.14],[26,11.57],[27,30.75],[28,13.51],[29,31.16],[30,20.04],[31,24.14],[32,24.97],[33,9.14],[34,16.25],[35,18.6],[36,22.52],[37,18.89],[38,29.34],[39,13.69],[40,12.43],[41,11.21],[42,11.91],[43,18.57],[44,13.24],[45,24.14],[46,23.46],[47,25.26],[48,30.67],[49,14.26],[50,23.98],[51,7.52],[52,9.14],[53,18.0],[54,16.48],[55,15.86],[56,14.65],[57,25.65],[58,18.76],[59,23.41],[60,19.17],[61,18.29],[62,10.89],[63,23.61],[64,15.31],[65,8.36],[66,11.15],[67,12.38],[68,15.7],[69,8.05],[70,14.26],[71,20.43],[72,23.07],[73,15.57],[74,12.36],[75,22.6],[76,32.0],[77,30.2],[78,30.28],[79,21.71],[80,16.82],[81,18.89],[82,33.46],[83,16.22],[84,22.28],[85,22.65],[86,17.68],[87,17.63],[88,19.02]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.99],[2,13.01],[3,14.42],[4,12.04],[5,14.81],[6,13.95],[7,16.61],[8,24.11],[9,9.85],[10,34.19],[11,9.95],[12,24.45],[13,17.24],[14,18.0],[15,11.78],[16,14.05],[17,29.26],[18,13.58],[19,13.04],[20,21.52],[21,12.7],[22,18.94],[23,18.05],[24,24.03],[25,30.77],[26,15.02],[27,23.75],[28,15.6],[29,28.37],[30,7.89],[31,19.64],[32,18.05],[33,27.09],[34,16.35],[35,10.61],[36,15.73],[37,10.16],[38,21.89],[39,16.74],[40,34.01],[41,24.66],[42,15.31],[43,12.49],[44,13.51],[45,26.64],[46,32.99],[47,27.74],[48,15.28],[49,16.59],[50,20.06],[51,20.38],[52,23.14],[53,20.24],[54,11.28],[55,14.42],[56,12.43],[57,10.34],[58,23.3],[59,7.16],[60,17.06],[61,17.01],[62,14.89],[63,27.87],[64,16.48],[65,14.29],[66,10.24],[67,18.73],[68,18.02],[69,13.01]]
|
|
@ -1 +0,0 @@
|
|||
[[1,7.39],[2,8.46],[3,12.51],[4,23.9],[5,10.4],[6,14.73],[7,56.16],[8,14.65],[9,14.52],[10,20.72],[11,19.33],[12,12.02],[13,37.75],[14,35.5],[15,36.36],[16,17.84],[17,14.34],[18,23.95],[19,31.97],[20,35.97],[21,25.05],[22,15.02],[23,21.29],[24,20.56],[25,15.44],[26,32.39],[27,24.66],[28,31.63],[29,21.94],[30,31.24],[31,17.5],[32,12.17],[33,13.69],[34,10.06],[35,19.96],[36,34.46],[37,41.4],[38,17.89],[39,28.81],[40,18.05],[41,24.32],[42,16.67],[43,9.77],[44,24.74],[45,25.55],[46,8.78],[47,25.0],[48,8.88],[49,55.54],[50,22.31],[51,11.36],[52,25.63],[53,13.17],[54,6.84],[55,32.99],[56,16.3],[57,15.18],[58,7.78],[59,15.88],[60,7.31],[61,40.96],[62,15.15],[63,8.05],[64,37.93],[65,20.61],[66,24.71],[67,16.04],[68,15.57],[69,14.94],[70,10.19],[71,12.64],[72,19.75],[73,33.67],[74,9.82],[75,37.43],[76,10.0],[77,31.22],[78,26.8],[79,31.58],[80,17.95],[81,40.52],[82,8.36],[83,15.31],[84,37.85],[85,12.72],[86,22.47],[87,14.89],[88,9.93],[89,11.21],[90,18.76],[91,25.13],[92,17.24],[93,28.37],[94,11.57],[95,12.33],[96,12.8],[97,28.97],[98,12.72],[99,22.57],[100,17.66],[101,20.58],[102,15.41],[103,45.48],[104,19.17],[105,16.98],[106,20.35],[107,10.48],[108,12.51],[109,10.87],[110,28.08],[111,14.37],[112,40.44],[113,19.46],[114,18.78],[115,14.21],[116,22.36],[117,26.12],[118,32.31],[119,35.89],[120,22.0],[121,12.23],[122,16.22],[123,12.15],[124,16.72],[125,19.41],[126,17.24],[127,12.09],[128,11.26],[129,17.66],[130,15.83],[131,7.08],[132,7.21],[133,14.6],[134,18.36],[135,22.07],[136,19.93],[137,12.49],[138,8.62],[139,10.45],[140,27.06],[141,8.15],[142,13.66],[143,13.74],[144,30.82],[145,24.35],[146,23.33],[147,21.63],[148,12.83],[149,16.56],[150,6.69],[151,19.7],[152,47.57],[153,32.29],[154,82.26],[155,21.29],[156,42.5],[157,17.14],[158,7.86],[159,31.45],[160,20.61],[161,20.14],[162,15.46],[163,10.61],[164,28.73],[165,24.74],[166,11.28],[167,34.9],[168,17.27],[169,15.49],[170,19.88],[171,13.11],[172,18.13],[173,19.2],[174,19.25],[175,15.62],[176,22.57],[177,11.99],[178,21.45],[179,37.17],[180,31.84],[181,25.21],[182,10.06],[183,33.75],[184,15.62],[185,27.43],[186,28.66],[187,24.61],[188,22.2],[189,10.84],[190,13.09],[191,25.18],[192,14.68],[193,25.63],[194,15.7],[195,54.05],[196,7.81],[197,10.19],[198,21.89],[199,33.12],[200,13.17]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.15],[2,3.5],[3,8.93],[4,14.55],[5,12.17],[6,11.57],[7,10.97],[8,29.47],[9,41.25],[10,17.55],[11,9.95],[12,6.66],[13,14.37],[14,7.58],[15,11.47],[16,14.68],[17,6.87],[18,9.04],[19,14.65],[20,16.77],[21,26.41],[22,17.97],[23,19.28],[24,25.86],[25,19.49],[26,8.12],[27,19.72],[28,35.13],[29,18.68],[30,26.1],[31,10.24],[32,12.98],[33,21.66],[34,9.04],[35,10.97],[36,18.73],[37,17.87],[38,17.11],[39,25.73],[40,29.2],[41,14.81],[42,13.48],[43,14.94],[44,11.26],[45,13.06],[46,22.1],[47,23.07],[48,31.16],[49,10.81],[50,19.59],[51,11.34],[52,13.09],[53,15.93],[54,28.16],[55,13.4],[56,21.24],[57,11.49],[58,23.07],[59,8.41],[60,12.17]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.02],[2,5.36],[3,5.25],[4,11.81],[5,10.21],[6,20.95],[7,19.83],[8,11.05],[9,9.74],[10,36.81],[11,16.35],[12,21.16],[13,14.11],[14,20.82],[15,33.02],[16,24.01],[17,17.37],[18,15.54],[19,13.71],[20,28.92],[21,22.31],[22,17.27],[23,18.78],[24,10.0],[25,18.21],[26,11.31],[27,23.41],[28,13.71],[29,25.57],[30,15.93],[31,20.06],[32,26.83],[33,33.67],[34,30.51]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.62],[2,7.92],[3,19.75],[4,26.28],[5,16.77],[6,6.9],[7,10.37],[8,10.27],[9,14.84],[10,16.27],[11,11.1],[12,18.7],[13,17.79],[14,16.56],[15,17.35],[16,15.78],[17,15.83],[18,10.37],[19,13.77],[20,27.56],[21,11.73],[22,15.7],[23,18.13],[24,14.79],[25,10.84],[26,19.15],[27,19.28],[28,8.39],[29,11.39],[30,9.56]]
|
|
@ -1 +0,0 @@
|
|||
[[1,16.46],[2,11.99],[3,7.13],[4,36.26],[5,37.43],[6,40.59],[7,19.51],[8,10.74],[9,25.1],[10,20.17],[11,9.3],[12,15.88],[13,29.68],[14,15.65],[15,14.0],[16,14.81],[17,21.34],[18,18.16],[19,42.11],[20,27.69],[21,16.09],[22,24.01],[23,19.25],[24,18.94],[25,17.48],[26,19.38],[27,17.19],[28,23.88],[29,19.02],[30,22.52],[31,18.6],[32,23.9],[33,30.09],[34,14.92],[35,62.33],[36,24.27],[37,50.26],[38,21.45],[39,16.12],[40,21.08],[41,8.07],[42,5.02],[43,17.61],[44,11.39],[45,14.13],[46,7.89],[47,8.86],[48,14.26],[49,33.15],[50,74.4],[51,41.35],[52,25.52],[53,81.19],[54,10.5],[55,43.49],[56,17.84],[57,15.75],[58,14.55],[59,28.29],[60,21.42],[61,8.46],[62,12.15],[63,15.05],[64,7.24],[65,9.51],[66,12.85],[67,14.29],[68,10.16],[69,18.68],[70,9.53],[71,15.39],[72,23.56],[73,20.87]]
|
|
@ -1 +0,0 @@
|
|||
[[1,15.1],[2,16.85],[3,31.11],[4,13.95],[5,12.62],[6,15.36],[7,17.4],[8,15.78],[9,28.81],[10,13.66],[11,13.35],[12,28.26],[13,23.59],[14,28.21],[15,23.25],[16,21.21],[17,9.59],[18,19.02],[19,23.35],[20,12.09],[21,19.85],[22,23.82],[23,22.6],[24,18.52],[25,10.0],[26,11.15],[27,13.58],[28,16.85],[29,7.86],[30,10.71],[31,35.13],[32,17.29],[33,37.54],[34,18.16],[35,10.14],[36,14.21],[37,30.3],[38,11.83],[39,24.22],[40,15.67],[41,15.05],[42,19.59],[43,41.82],[44,15.31],[45,14.45],[46,28.03],[47,13.9],[48,7.97],[49,7.63],[50,18.18],[51,9.85],[52,10.71],[53,9.98],[54,15.88]]
|
|
@ -1 +0,0 @@
|
|||
[[1,27.22],[2,16.69],[3,25.0],[4,11.52],[5,17.74],[6,16.17],[7,16.77],[8,30.88],[9,20.98],[10,25.73],[11,36.15],[12,36.7],[13,29.39],[14,20.43],[15,14.42],[16,7.18],[17,5.07],[18,37.88],[19,5.04],[20,4.23],[21,3.6],[22,19.04],[23,4.28],[24,14.92],[25,16.4],[26,7.16],[27,29.0],[28,24.53],[29,19.7],[30,12.51],[31,18.68],[32,25.6],[33,16.38],[34,13.82],[35,15.62],[36,18.13],[37,30.9],[38,13.19],[39,24.45],[40,32.6],[41,21.63],[42,23.8],[43,30.56],[44,30.62],[45,30.04]]
|
|
@ -1 +0,0 @@
|
|||
[[1,5.41],[2,4.86],[3,4.88],[4,5.36],[5,5.38],[6,11.65],[7,8.7],[8,13.35],[9,14.0],[10,11.55],[11,15.75],[12,18.47],[13,10.74],[14,18.36],[15,16.64],[16,8.78],[17,6.79],[18,16.95],[19,13.79],[20,12.41],[21,8.31],[22,8.72],[23,17.45],[24,7.16],[25,6.53],[26,7.78],[27,7.44],[28,17.55],[29,10.08],[30,12.77],[31,11.44],[32,7.81],[33,13.45],[34,13.32],[35,9.74],[36,15.91],[37,10.32],[38,9.51],[39,9.22],[40,18.52],[41,9.95],[42,7.76],[43,9.82],[44,7.6],[45,11.02],[46,12.12],[47,26.15],[48,8.8],[49,11.34],[50,11.28],[51,10.66],[52,14.97],[53,12.41],[54,13.22],[55,9.12],[56,8.65],[57,7.84],[58,6.37],[59,5.15],[60,13.9],[61,6.82],[62,10.11],[63,8.18],[64,6.69],[65,15.46],[66,12.98],[67,13.77],[68,8.39],[69,14.11],[70,9.48],[71,14.32],[72,8.65],[73,7.37],[74,9.82],[75,9.8],[76,11.94],[77,13.56],[78,11.31],[79,12.72],[80,13.22],[81,16.3],[82,14.84],[83,11.99]]
|
|
@ -1 +0,0 @@
|
|||
[[1,5.28],[2,2.72],[3,3.27],[4,3.45],[5,7.34],[6,8.39],[7,5.64],[8,8.91],[9,5.38],[10,7.84],[11,12.38],[12,3.92],[13,4.36],[14,5.36],[15,6.95],[16,9.69],[17,4.99],[18,4.7],[19,9.2],[20,6.64],[21,7.63],[22,8.18],[23,6.69],[24,5.9],[25,3.76],[26,3.81],[27,7.21],[28,7.05],[29,5.3],[30,10.14],[31,8.2],[32,6.09],[33,6.48],[34,5.38],[35,10.11],[36,9.2],[37,7.16],[38,6.82],[39,6.09],[40,4.88],[41,5.62],[42,4.49],[43,4.0],[44,4.31],[45,6.4],[46,5.22],[47,6.95],[48,5.28],[49,5.09],[50,6.97],[51,7.42],[52,5.38],[53,8.28],[54,4.39],[55,5.22],[56,4.65],[57,6.03],[58,3.0],[59,6.16],[60,4.65],[61,5.02],[62,5.9],[63,5.38],[64,6.61],[65,5.69],[66,7.03],[67,6.43],[68,5.36],[69,7.78],[70,4.86],[71,5.69],[72,4.96],[73,6.09],[74,4.73],[75,6.48],[76,5.93],[77,5.64],[78,3.94],[79,5.41],[80,4.26],[81,4.23],[82,4.18],[83,5.02],[84,5.09],[85,6.03],[86,5.41],[87,5.07],[88,4.49],[89,3.6],[90,3.89],[91,7.6],[92,3.84],[93,4.75],[94,4.81],[95,3.97],[96,4.75],[97,6.32],[98,6.77],[99,5.9],[100,3.94],[101,4.05],[102,25.1],[103,5.88],[104,5.49],[105,7.65],[106,5.07],[107,3.76],[108,4.21],[109,3.68],[110,3.92],[111,4.86],[112,6.58],[113,13.43],[114,5.64],[115,6.45],[116,5.2],[117,5.07],[118,4.88],[119,4.13],[120,4.34],[121,4.65],[122,4.65],[123,4.65],[124,5.04],[125,6.64],[126,8.2],[127,6.14],[128,4.86],[129,4.21],[130,4.73],[131,5.46],[132,4.31],[133,4.91],[134,5.59],[135,4.73],[136,5.36],[137,6.58],[138,5.46],[139,4.52],[140,4.55],[141,5.07],[142,4.94],[143,6.64],[144,6.09],[145,6.3],[146,6.82],[147,6.84],[148,5.51],[149,6.43],[150,8.05],[151,7.68],[152,5.56],[153,4.62],[154,4.13],[155,3.27],[156,4.68],[157,7.0],[158,12.83],[159,5.38],[160,4.88],[161,4.44],[162,5.3],[163,4.68],[164,8.39],[165,7.26],[166,4.6],[167,4.23],[168,6.95],[169,5.64],[170,4.86],[171,7.16],[172,5.15],[173,6.53],[174,3.97],[175,5.07],[176,4.47],[177,7.76],[178,4.31],[179,3.84],[180,6.82],[181,4.34],[182,5.15]]
|
|
@ -1 +0,0 @@
|
|||
[[1,7.55],[2,6.77],[3,10.68],[4,15.83],[5,10.11],[6,15.02],[7,9.82],[8,15.91],[9,9.27],[10,11.52],[11,7.92],[12,10.24],[13,10.37],[14,7.58],[15,13.9],[16,8.88],[17,12.33],[18,9.35],[19,7.37],[20,8.36],[21,7.11],[22,24.69],[23,20.32],[24,39.0],[25,11.26],[26,32.1],[27,18.23],[28,14.32],[29,14.18],[30,11.36],[31,7.16],[32,12.96],[33,8.54],[34,12.43],[35,14.6],[36,8.88],[37,8.02],[38,5.51],[39,7.58],[40,7.0],[41,13.11],[42,8.39],[43,13.01],[44,15.41],[45,11.21],[46,8.31],[47,7.68],[48,9.06],[49,8.25],[50,7.68],[51,11.55],[52,5.72],[53,5.62],[54,6.97],[55,6.45],[56,6.19],[57,7.21],[58,5.9],[59,10.55],[60,11.47],[61,11.21],[62,10.37],[63,6.97],[64,7.34],[65,11.94],[66,8.12],[67,3.63],[68,3.94],[69,8.39],[70,11.36],[71,11.13],[72,9.12],[73,6.53],[74,7.73],[75,13.43],[76,10.48],[77,5.02],[78,6.22],[79,6.66],[80,5.09],[81,4.13],[82,6.69],[83,5.9],[84,5.2],[85,9.3],[86,10.48],[87,5.25],[88,5.98]]
|
|
@ -1 +0,0 @@
|
|||
[[1,7.31],[2,12.49],[3,35.11],[4,17.5],[5,26.64],[6,41.33],[7,38.24],[8,38.16],[9,28.32],[10,23.01],[11,9.25],[12,5.75],[13,8.88],[14,4.78],[15,20.51],[16,16.85],[17,14.79],[18,18.05],[19,10.14],[20,21.21],[21,35.29],[22,22.41],[23,35.76],[24,15.2],[25,9.51],[26,13.19],[27,11.81],[28,8.1],[29,21.37],[30,6.74],[31,9.4],[32,15.18],[33,10.29],[34,10.74],[35,13.04],[36,15.18],[37,11.81],[38,38.19],[39,9.72],[40,9.85],[41,23.43],[42,28.71],[43,14.6],[44,11.6],[45,19.12],[46,17.24],[47,24.87],[48,10.5],[49,24.63],[50,11.0],[51,18.68],[52,19.02],[53,22.47],[54,13.95],[55,17.84],[56,15.36],[57,8.65],[58,10.37],[59,11.47],[60,15.75],[61,12.2],[62,9.43],[63,15.15],[64,12.38],[65,15.1],[66,5.8],[67,22.07],[68,22.1],[69,19.7],[70,9.51],[71,46.18],[72,11.05],[73,23.82],[74,19.51],[75,21.0]]
|
|
@ -1 +0,0 @@
|
|||
[[1,36.26],[2,20.61],[3,27.79],[4,20.04],[5,18.52],[6,49.53],[7,27.04],[8,14.34],[9,16.25],[10,15.57],[11,81.66],[12,92.6],[13,20.19],[14,15.73],[15,27.77],[16,17.58],[17,24.61],[18,26.51],[19,46.0],[20,23.8],[21,12.64],[22,20.27],[23,73.9],[24,52.74],[25,73.87],[26,15.78],[27,14.08],[28,8.83],[29,26.88],[30,13.58],[31,15.7],[32,30.15],[33,24.19],[34,52.64],[35,24.74],[36,34.25],[37,20.22],[38,23.43],[39,16.56],[40,15.15],[41,16.07],[42,14.16],[43,60.0],[44,14.68],[45,13.14],[46,43.13],[47,34.35],[48,20.19],[49,14.68],[50,10.5],[51,22.41],[52,11.83],[53,10.32],[54,22.28],[55,12.72],[56,24.89],[57,28.42],[58,29.99],[59,33.57],[60,38.64],[61,15.23],[62,23.12],[63,17.27],[64,27.79],[65,20.32],[66,28.68],[67,8.83],[68,6.58],[69,25.18],[70,7.92],[71,12.3],[72,18.39],[73,20.74],[74,22.62],[75,36.81],[76,27.06],[77,56.27],[78,43.55],[79,25.23],[80,14.58],[81,28.37],[82,16.74],[83,31.16],[84,11.62],[85,23.69],[86,17.55],[87,18.7],[88,21.94],[89,33.38],[90,32.73],[91,42.68],[92,70.5],[93,23.98],[94,46.73],[95,40.1],[96,10.45],[97,34.56],[98,14.52],[99,10.5],[100,28.5],[101,23.17],[102,77.9],[103,24.92],[104,25.08],[105,21.37],[106,10.53],[107,14.68],[108,19.04],[109,23.75],[110,13.53],[111,13.4],[112,17.08],[113,39.81],[114,27.95],[115,22.15],[116,20.48],[117,15.33],[118,11.18],[119,33.25],[120,8.99],[121,9.95],[122,25.86],[123,22.15],[124,18.13],[125,20.04],[126,11.81],[127,55.51],[128,35.58],[129,27.4],[130,12.93],[131,30.09],[132,9.38],[133,14.42],[134,16.48],[135,43.89],[136,36.44],[137,19.93],[138,7.89],[139,20.06],[140,37.17],[141,42.24],[142,21.76],[143,22.94],[144,22.83],[145,11.42],[146,20.9],[147,12.72],[148,14.94],[149,15.2],[150,26.46],[151,12.09],[152,19.38],[153,43.36],[154,22.36],[155,28.63],[156,7.92],[157,35.19],[158,9.61],[159,15.05],[160,16.98],[161,18.99],[162,37.38],[163,44.98],[164,17.45],[165,20.22],[166,18.96],[167,12.96],[168,13.27],[169,14.29],[170,27.87],[171,63.24],[172,26.72],[173,35.58],[174,16.54],[175,22.23],[176,61.6]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.28],[2,7.16],[3,13.66],[4,12.88],[5,25.29],[6,11.62],[7,33.23],[8,20.85],[9,14.99],[10,16.51],[11,16.54],[12,17.92],[13,16.25],[14,8.41],[15,15.99],[16,18.16],[17,14.21],[18,16.25],[19,7.94],[20,17.74],[21,28.94],[22,18.44],[23,8.75],[24,9.25],[25,23.85],[26,18.81],[27,13.22],[28,40.78],[29,28.06],[30,11.57],[31,14.16],[32,7.81],[33,13.69],[34,32.0],[35,25.21],[36,10.03],[37,25.47],[38,9.12],[39,12.28],[40,25.81],[41,11.39],[42,14.26],[43,22.65],[44,16.25],[45,11.0],[46,16.95],[47,25.84],[48,13.06],[49,13.17],[50,19.23],[51,12.75],[52,11.86],[53,11.15],[54,5.12],[55,13.95],[56,26.07],[57,13.22],[58,17.01],[59,12.51],[60,17.01],[61,21.05],[62,13.51],[63,8.52],[64,29.54],[65,16.43],[66,20.87],[67,42.63],[68,14.6],[69,10.81],[70,12.33],[71,7.78],[72,6.06],[73,7.26],[74,17.06],[75,11.7],[76,10.42],[77,17.97],[78,34.87],[79,10.45],[80,14.16],[81,8.65],[82,26.59],[83,18.78],[84,14.79],[85,18.89]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.71],[2,6.16],[3,10.21],[4,9.01],[5,27.17],[6,25.63],[7,9.27],[8,10.06],[9,16.61],[10,22.18],[11,20.98],[12,25.5],[13,11.0],[14,28.08],[15,25.76],[16,24.37],[17,15.2],[18,6.87],[19,9.35],[20,16.09],[21,21.86],[22,33.46],[23,13.53],[24,12.3],[25,28.19],[26,11.44],[27,14.11],[28,20.06],[29,19.2],[30,24.32],[31,19.3],[32,4.7],[33,14.92],[34,17.84],[35,14.18],[36,14.34],[37,21.5],[38,13.53],[39,28.53],[40,29.78],[41,11.96],[42,12.54],[43,15.86],[44,38.61],[45,18.63],[46,14.89],[47,30.35],[48,12.67],[49,12.41],[50,41.2],[51,15.46],[52,14.73],[53,20.82],[54,14.92]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.26],[2,12.09],[3,10.87],[4,8.65],[5,25.18],[6,17.03],[7,26.46],[8,22.67],[9,20.35],[10,16.77],[11,22.99],[12,15.86],[13,43.18],[14,31.87],[15,39.94],[16,19.67],[17,14.39],[18,23.93],[19,11.6],[20,19.8],[21,21.6],[22,26.25],[23,31.97],[24,24.11],[25,12.28],[26,15.99],[27,20.17],[28,12.77],[29,17.76],[30,12.09],[31,13.22],[32,6.69],[33,15.23],[34,7.05],[35,10.19],[36,20.06],[37,10.84],[38,13.64],[39,7.81],[40,16.56],[41,9.35],[42,13.51],[43,7.58],[44,18.68],[45,31.97],[46,17.35],[47,21.0],[48,32.68],[49,18.83],[50,15.26],[51,24.01],[52,30.43],[53,13.45]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.57],[2,3.53],[3,8.49],[4,8.99],[5,9.74],[6,7.08],[7,8.25],[8,9.53],[9,13.22],[10,11.28],[11,16.64],[12,10.87],[13,19.15],[14,7.11],[15,10.45],[16,8.15],[17,12.98],[18,8.07],[19,15.8],[20,14.08],[21,10.06],[22,17.61],[23,28.97],[24,17.92],[25,8.99],[26,12.9],[27,5.88],[28,9.17],[29,15.02],[30,11.23],[31,9.82],[32,28.97],[33,20.66],[34,6.97],[35,14.16],[36,10.4],[37,10.0],[38,13.32],[39,9.35],[40,11.18],[41,8.41],[42,9.01],[43,9.25],[44,7.24],[45,13.84],[46,13.61],[47,11.15],[48,14.29],[49,11.83],[50,8.15],[51,15.54],[52,8.75],[53,14.11],[54,10.16],[55,10.06],[56,6.56],[57,8.39],[58,13.27],[59,12.25],[60,11.02],[61,12.96],[62,8.78],[63,18.39],[64,10.24],[65,10.71],[66,10.95],[67,10.95],[68,8.49],[69,6.87],[70,7.34],[71,19.33],[72,9.01],[73,8.18],[74,7.76],[75,5.98],[76,7.21],[77,10.11],[78,9.3],[79,7.21],[80,11.89],[81,8.12],[82,8.67],[83,9.8],[84,11.44],[85,14.32],[86,12.75],[87,10.79],[88,10.16],[89,8.78]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.36],[2,3.55],[3,12.15],[4,5.67],[5,8.12],[6,7.42],[7,11.31],[8,12.49],[9,4.68],[10,7.11],[11,5.62],[12,6.79],[13,8.54],[14,7.18],[15,10.03],[16,8.78],[17,10.58],[18,9.48],[19,10.53],[20,7.63],[21,4.62],[22,9.9],[23,7.0],[24,8.2],[25,6.14],[26,4.47],[27,5.46],[28,5.77],[29,9.85],[30,8.7],[31,8.31],[32,6.77],[33,8.88],[34,6.74],[35,8.33],[36,9.43],[37,15.05],[38,9.38],[39,11.28],[40,6.61],[41,9.48],[42,8.23],[43,4.28],[44,2.82],[45,3.92],[46,2.69],[47,6.14],[48,6.56],[49,5.59],[50,6.82],[51,5.67],[52,4.49],[53,9.33],[54,5.72],[55,5.88],[56,9.77],[57,6.61],[58,8.1],[59,4.99]]
|
|
@ -1 +0,0 @@
|
|||
[[1,5.09],[2,7.18],[3,7.65],[4,12.72],[5,24.92],[6,13.35],[7,4.73],[8,13.94],[9,71.57],[10,18.96],[11,10.42],[12,14.13],[13,16.04],[14,14.0],[15,12.02],[16,18.44],[17,26.15],[18,14.92],[19,19.07],[20,9.87],[21,20.14],[22,13.71],[23,25.6],[24,21.66],[25,21.24],[26,17.19],[27,12.41],[28,16.35],[29,14.89],[30,14.65],[31,14.05],[32,20.69],[33,10.11],[34,15.12],[35,18.21],[36,8.65],[37,9.64]]
|
|
@ -1 +0,0 @@
|
|||
[[1,4.83],[2,6.69],[3,18.44],[4,28.71],[5,18.36],[6,11.34],[7,15.15],[8,23.88],[9,20.61],[10,25.18],[11,22.86],[12,19.17],[13,12.04],[14,12.43],[15,51.83],[16,20.32],[17,30.67],[18,19.72],[19,11.55],[20,31.22],[21,24.4],[22,14.34],[23,15.83],[24,19.75],[25,16.17],[26,40.46],[27,11.13],[28,16.98],[29,21.26],[30,20.9],[31,14.99],[32,18.34],[33,23.35],[34,17.01],[35,26.98]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.02],[2,17.97],[3,17.66],[4,42.21],[5,3.87],[6,5.09],[7,12.75],[8,6.71],[9,8.84],[10,16.56],[11,10.79],[12,25.7],[13,15.23],[14,16.46],[15,48.43],[16,26.25],[17,7.11],[18,17.37],[19,17.82],[20,27.59],[21,13.37],[22,10.89],[23,10.37],[24,7.97],[25,15.31],[26,15.18],[27,9.51],[28,13.64],[29,10.27],[30,17.19],[31,11.76],[32,20.95],[33,13.61],[34,14.39],[35,12.96],[36,16.17],[37,8.23],[38,39.0]]
|
|
@ -1 +0,0 @@
|
|||
[[1,6.58],[2,15.8],[3,5.33],[4,23.75],[5,23.38],[6,33.85],[7,9.43],[8,9.17],[9,12.8],[10,26.59],[11,37.02],[12,22.23],[13,11.86],[14,17.29],[15,33.96],[16,31.53],[17,28.0],[18,18.86],[19,10.0],[20,23.25],[21,13.74],[22,12.62],[23,11.36],[24,18.81],[25,45.77],[26,32.57],[27,31.61],[28,15.15],[29,67.84]]
|
|
@ -1 +0,0 @@
|
|||
[[1,16.67],[2,24.63],[3,21.52],[4,11.02],[5,11.78],[6,24.01],[7,33.38],[8,7.18],[9,38.64],[10,12.98],[11,49.29],[12,34.69],[13,29.31],[14,29.47],[15,23.75],[16,14.58],[17,19.38],[18,12.09]]
|
|
@ -1 +0,0 @@
|
|||
[[1,28.03],[2,68.99],[3,80.3],[4,39.73],[5,56.01],[6,93.81],[7,24.5],[8,35.24],[9,13.69],[10,14.55],[11,27.61],[12,67.76],[13,44.12],[14,33.99],[15,30.2],[16,22.62],[17,44.36],[18,46.34],[19,39.16],[20,27.32],[21,18.81],[22,23.46],[23,29.23],[24,24.37],[25,14.5],[26,16.35],[27,27.43],[28,21.66],[29,17.68],[30,10.19],[31,27.09],[32,51.72],[33,42.27],[34,14.81],[35,16.8],[36,24.37],[37,15.46],[38,19.2],[39,15.57],[40,23.04],[41,75.31],[42,35.66],[43,20.58],[44,54.65],[45,41.17],[46,32.13],[47,20.11],[48,67.68],[49,37.17],[50,11.94],[51,30.22],[52,30.22],[53,21.29],[54,44.17],[55,16.2],[56,12.33],[57,27.72],[58,15.44],[59,23.51],[60,31.74],[61,16.46],[62,12.98],[63,14.81],[64,52.9],[65,15.96],[66,26.88],[67,23.07],[68,30.59],[69,19.59],[70,23.69],[71,22.13],[72,34.19],[73,24.32],[74,9.2],[75,25.86],[76,14.34],[77,23.28],[78,16.82],[79,11.73],[80,17.89],[81,19.33],[82,34.22],[83,21.68],[84,14.63],[85,18.08],[86,11.34],[87,18.34],[88,14.94],[89,49.14],[90,19.3],[91,24.11],[92,15.93],[93,24.37],[94,28.13],[95,61.39],[96,19.88],[97,26.17],[98,10.55],[99,10.89],[100,16.88],[101,24.24],[102,8.62],[103,23.54],[104,24.03],[105,22.83],[106,53.37],[107,35.11],[108,24.5],[109,16.09],[110,62.17],[111,15.15],[112,24.22],[113,16.46],[114,28.0],[115,20.11],[116,40.65],[117,30.85],[118,12.8],[119,27.22],[120,13.27]]
|
|
@ -1 +0,0 @@
|
|||
[[1,8.31],[2,14.37],[3,9.14],[4,8.93],[5,10.37],[6,14.73],[7,13.01],[8,6.79],[9,14.89],[10,6.66],[11,10.21],[12,8.05],[13,5.75],[14,10.45],[15,10.0],[16,13.22],[17,8.25],[18,7.47],[19,9.33],[20,5.43],[21,9.3],[22,12.56],[23,5.22],[24,6.16],[25,5.88],[26,9.48],[27,11.68],[28,8.39],[29,8.83],[30,8.39],[31,6.69],[32,6.64],[33,8.72],[34,6.45],[35,8.59],[36,14.68],[37,10.81],[38,12.83],[39,10.95],[40,6.56],[41,7.5],[42,8.67],[43,6.97],[44,9.8],[45,15.75]]
|
|
@ -1 +0,0 @@
|
|||
[[1,3.16],[2,3.16],[3,3.0],[4,3.42],[5,4.21],[6,3.53],[7,4.52],[8,4.52],[9,3.19],[10,3.06],[11,5.33],[12,4.26],[13,4.41],[14,8.2],[15,6.64],[16,10.74],[17,5.98],[18,4.83],[19,8.02],[20,5.07],[21,6.4],[22,5.98],[23,13.3],[24,6.37],[25,11.23],[26,8.36],[27,5.98],[28,9.98],[29,11.02],[30,8.39],[31,5.36],[32,9.67],[33,5.93],[34,5.72],[35,6.48],[36,7.0],[37,9.38],[38,9.17],[39,6.79],[40,8.1],[41,6.74],[42,8.18],[43,6.5],[44,8.93],[45,8.02],[46,8.8],[47,9.09],[48,5.72],[49,8.41],[50,8.54],[51,11.0],[52,12.51],[53,6.53],[54,6.3],[55,6.69],[56,6.95],[57,9.87],[58,6.4],[59,10.29],[60,8.05]]
|
|
@ -1 +0,0 @@
|
|||
[[1,2.35],[2,3.5],[3,4.18],[4,3.03],[5,3.29],[6,2.93],[7,4.15],[8,3.19],[9,4.39],[10,3.47],[11,5.46],[12,5.02],[13,6.3],[14,7.99],[15,7.16],[16,13.51],[17,7.18],[18,10.4],[19,7.16],[20,9.74],[21,24.08],[22,8.91],[23,8.75],[24,8.93],[25,7.37],[26,8.15],[27,6.69],[28,9.2],[29,9.14],[30,7.5],[31,8.31],[32,9.09],[33,5.85],[34,7.92],[35,6.35],[36,6.35],[37,8.15],[38,11.1],[39,4.52],[40,8.23],[41,5.54],[42,7.52],[43,10.76],[44,10.71],[45,7.5],[46,8.52],[47,10.92],[48,10.5],[49,7.52]]
|