diff --git a/CHANGELOG.md b/CHANGELOG.md index f90fd779..f4ddd273 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log -## [3.0.1] - 2020-08-30 +## [3.0.1] - 2021-08-30 - [#79](https://github.com/estruyf/vscode-front-matter/issues/79): Fix scrollbar not visible on the welcome screen -## [3.0.0] - 2020-08-27 +## [3.0.0] - 2021-08-27 - [#61](https://github.com/estruyf/vscode-front-matter/issues/61): List of recently modified files - [#64](https://github.com/estruyf/vscode-front-matter/issues/64): Publish toggle for easier publishing an article diff --git a/README.md b/README.md index 848437b4..fcb4783c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + Front Matter

diff --git a/docs/components/Images/Logo.tsx b/docs/components/Images/Logo.tsx new file mode 100644 index 00000000..541e6a2c --- /dev/null +++ b/docs/components/Images/Logo.tsx @@ -0,0 +1,11 @@ +import * as React from 'react'; + +export interface ILogoProps { + className: string; +} + +export const Logo: React.FunctionComponent = ({className}: React.PropsWithChildren) => { + return ( + + ); +}; \ No newline at end of file diff --git a/docs/components/Images/index.ts b/docs/components/Images/index.ts new file mode 100644 index 00000000..d97c6951 --- /dev/null +++ b/docs/components/Images/index.ts @@ -0,0 +1 @@ +export * from './Logo'; diff --git a/docs/components/Link/Link.tsx b/docs/components/Link/Link.tsx new file mode 100644 index 00000000..a6dbb456 --- /dev/null +++ b/docs/components/Link/Link.tsx @@ -0,0 +1,11 @@ +import * as React from 'react'; + +export interface ILinkProps {} + +export const Link: React.FunctionComponent = (props: React.PropsWithChildren) => { + return ( + <> + + + ); +}; \ No newline at end of file diff --git a/docs/components/Meta/Description.tsx b/docs/components/Meta/Description.tsx new file mode 100644 index 00000000..c8a350d0 --- /dev/null +++ b/docs/components/Meta/Description.tsx @@ -0,0 +1,16 @@ +import Head from 'next/head'; +import * as React from 'react'; + +export interface IDescriptionProps { + value: string; +} + +export const Description: React.FunctionComponent = ({value}: React.PropsWithChildren) => { + return ( + + + + + + ); +}; \ No newline at end of file diff --git a/docs/components/Meta/OtherMeta.tsx b/docs/components/Meta/OtherMeta.tsx new file mode 100644 index 00000000..b220bfb3 --- /dev/null +++ b/docs/components/Meta/OtherMeta.tsx @@ -0,0 +1,28 @@ +import Head from 'next/head'; +import { useRouter } from 'next/router'; +import * as React from 'react'; +import { publicUrl } from '../../lib/publicUrl'; + +export interface IOtherMetaProps { + image: string; + type?: "website" | "article"; +} + +export const OtherMeta: React.FunctionComponent = ({ image, type }: React.PropsWithChildren) => { + const router = useRouter(); + + return ( + + + + + + + + + + + + + ); +}; \ No newline at end of file diff --git a/docs/components/Meta/Title.tsx b/docs/components/Meta/Title.tsx new file mode 100644 index 00000000..0e0d2790 --- /dev/null +++ b/docs/components/Meta/Title.tsx @@ -0,0 +1,18 @@ +import * as React from 'react'; +import Head from 'next/head'; +import { Extension } from '../../constants/extension'; + +export interface ITitleProps { + value: string; +} + +export const Title: React.FunctionComponent = ({value}: React.PropsWithChildren) => { + return ( + + {value} | {Extension.name} + + + + + ); +}; \ No newline at end of file diff --git a/docs/components/Meta/index.ts b/docs/components/Meta/index.ts new file mode 100644 index 00000000..8a6aa30c --- /dev/null +++ b/docs/components/Meta/index.ts @@ -0,0 +1,3 @@ +export * from './Description'; +export * from './OtherMeta'; +export * from './Title'; diff --git a/docs/components/Navigation/Navigation.tsx b/docs/components/Navigation/Navigation.tsx new file mode 100644 index 00000000..f878f8c7 --- /dev/null +++ b/docs/components/Navigation/Navigation.tsx @@ -0,0 +1,49 @@ +import * as React from 'react'; +import { navigation } from '../../constants/navigation'; +import { Logo } from '../Images'; +import Link from 'next/Link'; +import { Extension } from '../../constants/extension'; +import { useRouter } from 'next/router'; + +export interface INavigationProps {} + +export const Navigation: React.FunctionComponent = (props: React.PropsWithChildren) => { + const router = useRouter(); + + return ( + + ); +}; \ No newline at end of file diff --git a/docs/components/Navigation/index.ts b/docs/components/Navigation/index.ts new file mode 100644 index 00000000..95e14a93 --- /dev/null +++ b/docs/components/Navigation/index.ts @@ -0,0 +1 @@ +export * from './Navigation'; diff --git a/docs/components/Page/CTA.tsx b/docs/components/Page/CTA.tsx new file mode 100644 index 00000000..f67a5712 --- /dev/null +++ b/docs/components/Page/CTA.tsx @@ -0,0 +1,45 @@ +import * as React from 'react'; +import { useTranslation } from 'react-i18next'; +import { Extension } from '../../constants/extension'; + +export interface ICTAProps {} + +export const CTA: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { t: strings } = useTranslation(); + + return ( +
+
+
+

+ {strings(`cta_title`)}{' '} + {Extension.name} +

+ +

+ {strings(`cta_description`)} +

+ + +
+
+ +
+
+
+ {`Site +
+
+
+
+ ); +}; \ No newline at end of file diff --git a/docs/components/Page/Features.tsx b/docs/components/Page/Features.tsx new file mode 100644 index 00000000..e55c9885 --- /dev/null +++ b/docs/components/Page/Features.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { useTranslation } from 'react-i18next'; +import { features } from '../../constants/features'; +import { CheckIcon } from '@heroicons/react/outline'; + +export interface IFeaturesProps {} + +export const Features: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { t: strings } = useTranslation(); + + return ( +
+
+
+

{strings(`features_title`)}

+

+ {strings(`features_description`)} +

+
+
+ {features.map((feature) => ( +
+
+
+
{strings(feature.description)}
+
+ ))} +
+
+
+ ); +}; \ No newline at end of file diff --git a/docs/components/Page/Footer.tsx b/docs/components/Page/Footer.tsx new file mode 100644 index 00000000..b4621369 --- /dev/null +++ b/docs/components/Page/Footer.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import { Extension } from '../../constants/extension'; +import { navigation } from '../../constants/navigation'; + +export interface IFooterProps {} + +export const Footer: React.FunctionComponent = (props: React.PropsWithChildren) => { + return ( + + ); +}; \ No newline at end of file diff --git a/docs/components/Page/Generators.tsx b/docs/components/Page/Generators.tsx new file mode 100644 index 00000000..50a19adb --- /dev/null +++ b/docs/components/Page/Generators.tsx @@ -0,0 +1,38 @@ +import * as React from 'react'; +import { useTranslation } from 'react-i18next'; + +export interface IGeneratorsProps {} + +export const Generators: React.FunctionComponent = (props: React.PropsWithChildren) => { + const { t: strings } = useTranslation(); + + return ( +
+
+

+ {strings(`generators_title`)} +

+
+
+ 11ty +
+
+ Docusaurus +
+
+ Gatsby +
+
+ Hugo +
+
+ Jekyll +
+
+ Next.js +
+
+
+
+ ); +}; \ No newline at end of file diff --git a/docs/components/Page/Layout.tsx b/docs/components/Page/Layout.tsx new file mode 100644 index 00000000..ef46a1dc --- /dev/null +++ b/docs/components/Page/Layout.tsx @@ -0,0 +1,21 @@ +import * as React from 'react'; +import { Navigation } from '../Navigation'; +import { Footer } from './Footer'; + +export interface ILayoutProps {} + +export const Layout: React.FunctionComponent = (props: React.PropsWithChildren) => { + return ( +
+
+ +
+ +
+ {props.children} +
+ +
+
+ ); +}; \ No newline at end of file diff --git a/docs/components/Page/Page.tsx b/docs/components/Page/Page.tsx deleted file mode 100644 index ea59f447..00000000 --- a/docs/components/Page/Page.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import * as React from 'react'; - -export interface IPageProps {} - -export const Page: React.FunctionComponent = (props: React.PropsWithChildren) => { - return ( - <> - - - ); -}; \ No newline at end of file diff --git a/docs/constants/extension.ts b/docs/constants/extension.ts new file mode 100644 index 00000000..002a7c1c --- /dev/null +++ b/docs/constants/extension.ts @@ -0,0 +1,12 @@ + +export const Extension = { + name: `Front Matter`, + home: `The CMS running in VS Code`, + description: `Front Matter is an essential Visual Studio Code extension that simplifies working and managing your markdown articles. We created the extension to support many static-site generators like Hugo, Jekyll, Hexo, NextJs, Gatsby, and more.`, + + githubLink: "https://github.com/estruyf/vscode-front-matter", + issueLink: "https://github.com/estruyf/vscode-front-matter/issues", + sponsorLink: "https://github.com/sponsors/estruyf", + extensionLink: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter", + reviewLink: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter&ssr=false#review-details", +} \ No newline at end of file diff --git a/docs/constants/features.ts b/docs/constants/features.ts new file mode 100644 index 00000000..d73efb5a --- /dev/null +++ b/docs/constants/features.ts @@ -0,0 +1,28 @@ + + +export const features = [ + { + name: `feature_title_1`, + description: `feature_description_1`, + }, + { + name: `feature_title_2`, + description: `feature_description_2`, + }, + { + name: `feature_title_3`, + description: `feature_description_3`, + }, + { + name: `feature_title_4`, + description: `feature_description_4`, + }, + { + name: `feature_title_5`, + description: `feature_description_5`, + }, + { + name: `feature_title_6`, + description: `feature_description_6`, + } +]; \ No newline at end of file diff --git a/docs/constants/navigation.tsx b/docs/constants/navigation.tsx new file mode 100644 index 00000000..8787d059 --- /dev/null +++ b/docs/constants/navigation.tsx @@ -0,0 +1,35 @@ +import { HeartIcon } from "@heroicons/react/outline"; +import React from "react"; +import { Extension } from "./extension"; + +export const navigation = { + main: [ + { name: 'Documentation', title: '', href: '/docs' }, + { name: 'Showcase', href: '/showcase' }, + { name: 'Changelog', href: '/changelog' }, + ], + social: [ + { + name: 'GitHub', + title: 'Check out our GitHub repository', + href: Extension.githubLink, + icon: (props: any) => ( + + + + ) + }, + { + name: 'Sponsor us', + title: 'Become a sponsor, and get mentioned', + href: Extension.sponsorLink, + icon: (props: any) => ( + + ) + } + ] +}; \ No newline at end of file diff --git a/docs/content/changelog/CHANGELOG.md b/docs/content/changelog/CHANGELOG.md new file mode 100644 index 00000000..f4ddd273 --- /dev/null +++ b/docs/content/changelog/CHANGELOG.md @@ -0,0 +1,226 @@ +# Change Log + +## [3.0.1] - 2021-08-30 + +- [#79](https://github.com/estruyf/vscode-front-matter/issues/79): Fix scrollbar not visible on the welcome screen + +## [3.0.0] - 2021-08-27 + +- [#61](https://github.com/estruyf/vscode-front-matter/issues/61): List of recently modified files +- [#64](https://github.com/estruyf/vscode-front-matter/issues/64): Publish toggle for easier publishing an article +- [#65](https://github.com/estruyf/vscode-front-matter/issues/65): Aggregate articles in draft +- [#66](https://github.com/estruyf/vscode-front-matter/issues/66): New dashboard webview on which you can manage all your content +- [#69](https://github.com/estruyf/vscode-front-matter/issues/69): Welcome screen for getting started + +## [2.5.1] - 2020-08-23 + +- Fix typo in the `package.json` file for the preview command + +## [2.5.0] - 2020-08-19 + +- Moved the center layout button to the other actions section +- [#60](https://github.com/estruyf/vscode-front-matter/issues/60): Added the ability to open a site preview in VS Code + +## [2.4.1] - 2020-08-16 + +- Better editor highlighting functionality + +## [2.4.0] - 2020-08-16 + +- [#21](https://github.com/estruyf/vscode-front-matter/issues/21): Folding provider for Front Matter implemented +- [#55](https://github.com/estruyf/vscode-front-matter/issues/55): Highlight Front Matter in Markdown files +- [#56](https://github.com/estruyf/vscode-front-matter/issues/56): Action to collapse all Front Matter panel sections at once +- [#57](https://github.com/estruyf/vscode-front-matter/issues/57): New action added to provide better writing settings (only for Markdown files) +- [#58](https://github.com/estruyf/vscode-front-matter/issues/58): Sections remember their previous state (folded/unfolded) +- [#59](https://github.com/estruyf/vscode-front-matter/issues/59): Center layout view toggle action added + +## [2.3.0] - 2020-08-10 + +- Refactoring and showing other actions in the base view +- Show `BaseView` in Front Matter panel when switching to `welcome` tab +- [#31](https://github.com/estruyf/vscode-front-matter/issues/31): Automatically update the last modification date of the file when performing changes +- [#53](https://github.com/estruyf/vscode-front-matter/issues/53): Create current Markdown file as template + +## [2.2.0] - 2020-08-06 + +- [#28](https://github.com/estruyf/vscode-front-matter/issues/28): Align the file its name with the article slug +- [#47](https://github.com/estruyf/vscode-front-matter/issues/47): Fix when table shows only value `0` +- [#48](https://github.com/estruyf/vscode-front-matter/issues/48): Added new folder registration message + notification helper +- [#49](https://github.com/estruyf/vscode-front-matter/issues/49): New initialize project command +- [#50](https://github.com/estruyf/vscode-front-matter/issues/50): Fix in the table rendering of rows +- [#51](https://github.com/estruyf/vscode-front-matter/issues/51): Panel actions base view enhanced to show project actions and information + +## [2.1.0] - 2020-08-04 + +- [#44](https://github.com/estruyf/vscode-front-matter/issues/45): Added article creation command +- [#45](https://github.com/estruyf/vscode-front-matter/issues/45): WSL support added +- [#46](https://github.com/estruyf/vscode-front-matter/issues/46): Make the tag pickers render in full width + +## [2.0.1] - 2020-07-27 + +- [#42](https://github.com/estruyf/vscode-front-matter/issues/42): Small enhancement to the table layout +- [#43](https://github.com/estruyf/vscode-front-matter/issues/43): Fix for collapsible sections and taxonomy picker + +## [2.0.0] - 2020-07-23 + +- Redesigned sidebar panel +- Sidebar background styling match the VSCode defined sidebar color +- Added support for `mdx` files +- Added support for `enter` press in the combobox +- [#41](https://github.com/estruyf/vscode-front-matter/issues/41): Word count implementation + extra details +- [#40](https://github.com/estruyf/vscode-front-matter/issues/40): Added checks for the keyword usage in title, description, slug, and content + +## [1.18.0] - 2020-07-20 + +- Updated README + +## [1.17.1] - 2020-06-28 + +- [#34](https://github.com/estruyf/vscode-front-matter/issues/34): Fix that last modification date does not update the publication date +- [#38](https://github.com/estruyf/vscode-front-matter/issues/38): Update the last modification date on new page creation from the template + +## [1.17.0] - 2020-06-14 + +- [#36](https://github.com/estruyf/vscode-front-matter/issues/36): Add the option to change the Front Matter its description field + +## [1.16.1] - 2020-05-27 + +- Fix for Node.js v14.16.0 + +## [1.16.0] - 2020-05-04 + +- Add all front matter properties as an argument for custom scripts + +## [1.15.1] - 2020-05-04 + +- Add the ability to specify a custom Node path + +## [1.15.0] - 2020-05-04 + +- Added the ability to add your own custom scripts as panel actions. + +## [1.14.0] - 2020-03-19 + +- New links added to the Front Matter panel to reveal the file and folder. + +## [1.13.0] - 2020-02-26 + +- Implemented links to quickly open the extension settings + issue from the FrontMatter view panel +- Added button to update the modified time in the FrontMatter view panel + +## [1.12.1] - 2020-02-13 + +- Fix Front Matter SVG + +## [1.12.0] - 2020-01-26 + +- [#29](https://github.com/estruyf/vscode-front-matter/issues/29): Open file after creating it from the template + +## [1.11.1] - 2020-12-10 + +- [#26](https://github.com/estruyf/vscode-front-matter/issues/26): Fix for arrow selection in the dropdown. + +## [1.11.0] - 2020-12-10 + +- [#25](https://github.com/estruyf/vscode-front-matter/issues/25): Moved from Material UI Autocomplete to Downshift. This gives more flexibility, and allows to focus the inputs from a VSCode command. +- Changed the `Front Matter: Insert ` functionality to open in the panel, instead of using the VSCode dialogs. + +## [1.10.0] - 2020-12-03 + +- FrontMatter panel implemented. This panel allows you to control all extension actions, but not only that. It makes adding tags and categories in a easier way to your page. + +## [1.9.0] - 2020-11-25 + +- [#23](https://github.com/estruyf/vscode-front-matter/issues/23): Implemented the option to create and use templates for article creation (front matter will be updates as well). + +## [1.8.0] - 2020-11-20 + +- [#22](https://github.com/estruyf/vscode-front-matter/issues/22): Allow to configure the SEO Title and Description lengths. + +## [1.7.2] - 2020-10-30 + +- [#19](https://github.com/estruyf/vscode-front-matter/issues/19): fix for tag insertion when empty tag is used + +## [1.7.1] - 2020-10-21 + +- Fix for title and description length check + +## [1.7.0] - 2020-09-30 + +- [#18](https://github.com/estruyf/vscode-front-matter/issues/18): Added date and modified date field names settings to be able to change the extension its behavior + +## [1.6.0] - 2020-09-23 + +- Syntax highlighting for Hugo shortcodes has been added + +## [1.5.0] - 2020-09-10 + +- [#17](https://github.com/estruyf/vscode-front-matter/issues/17): Make front matter be indentation `tabSize` aware + +## [1.4.0] - 2020-08-24 + +- Added set `lastmod` date command +- [#16](https://github.com/estruyf/vscode-front-matter/issues/16): Fixed hardcoded length value + +## [1.3.0] - 2020-08-22 + +- Added SEO description warning when over 140 characters is used + +## [1.2.0] - 2020-07-03 + +- Added SEO title warning when over 60 characters is used + +## [1.1.1] - 2020-04-07 + +- `TOML` delimiter fix + +## [1.1.0] - 2020-03-25 + +- `TOML` support added + +## [1.0.0] - 2020-03-25 + +- First major release +- Fixed an issue with `null` tag/category values + +## [0.0.10] - 2019-09-17 + +- Updated the logic to remove quotes from front matter property values + +## [0.0.9] - 2019-09-17 + +- Added setting to specify if you want to enable/disable array indents in the front matter of your article +- Remove quotes on date strings + +## [0.0.8] - 2019-09-04 + +- Added command to generate a clean article slug + +## [0.0.7] - 2019-08-28 + +- Added command to remap tags or categories in all posts: `Front Matter: Remap tag/category in all articles` + +## [0.0.6] - 2019-08-28 + +- Updated `package.json` file to include preview label +- Added the status bar item to quickly view and update the draft status of an article + +## [0.0.5] - 2019-08-27 + +- Updated title, description and logo + +## [0.0.4] - 2019-08-26 + +- Added set date command + +## [0.0.3] - 2019-08-26 + +- Support added for `*.markdown` files + +## [0.0.2] - 2019-08-26 + +- Updated extension to bundle the project output + +## [0.0.1] - 2019-08-26 + +- Initial beta version diff --git a/docs/lib/api.ts b/docs/lib/api.ts new file mode 100644 index 00000000..9f9ce183 --- /dev/null +++ b/docs/lib/api.ts @@ -0,0 +1,50 @@ +import fs from 'fs' +import { join } from 'path' +import matter from 'gray-matter' + +type ContentType = "docs" | "changelog"; + +const postsDirectory = join(process.cwd(), 'content'); + +export function getPostSlugs(type: ContentType) { + return fs.readdirSync(join(postsDirectory, type)).filter(f => f.endsWith(`.md`)) +} + +export function getPostByFilename(type: ContentType, crntFile: string, fields: string[] = []) { + const realSlug = crntFile.replace(/\.md$/, ''); + const fullPath = join(postsDirectory, type, `${realSlug}.md`) + const fileContents = fs.readFileSync(fullPath, 'utf8') + const { data, content } = matter(fileContents) + + const items: any = {} + + // Ensure only the minimal needed data is exposed + fields.forEach((field) => { + if (field === 'content') { + items[field] = content + } + + if (field === 'fileName') { + items[field] = realSlug + } + + if (data[field]) { + items[field] = data[field] + } + + if (field === 'slug') { + items[field] = data['slug'] || realSlug + } + }) + + return items +} + +export function getAllPosts(type: ContentType, fields: string[] = []) { + const fileNames = getPostSlugs(type) + const posts = fileNames + .map((fileName) => getPostByFilename(type, fileName, fields)) + // sort posts by date in descending order + .sort((post1, post2) => ((post1 as any)?.date > (post2 as any)?.date ? -1 : 1)) + return posts +} \ No newline at end of file diff --git a/docs/lib/publicUrl.ts b/docs/lib/publicUrl.ts new file mode 100644 index 00000000..048cc0f2 --- /dev/null +++ b/docs/lib/publicUrl.ts @@ -0,0 +1,9 @@ + + +export function publicUrl() { + if (process.env.NEXT_PUBLIC_VERCEL_ENV === "production") { + return `https://frontmatter.codes`; + } else { + return `https://${process.env.VERCEL_URL}`; + } +} \ No newline at end of file diff --git a/docs/locale/en.ts b/docs/locale/en.ts new file mode 100644 index 00000000..5e44dbe8 --- /dev/null +++ b/docs/locale/en.ts @@ -0,0 +1,50 @@ +import { Extension } from "../constants/extension"; + + +export const strings = { + // CTA + cta_title: "Manage your static site with", + cta_description: "Create, edit, and preview your pages within Visual Studio Code. Front Matter allows you to keep control of your static site without any external tools.", + cta_button_primary: "Get the extension", + cta_button_secondary: "Read our docs", + + // Generators + generators_title: "Built for any static-site generator you might like", + + // Features + features_title: "Features", + features_description: "Check out our main features which help you manage your static-site", + + // Feature + feature_title_1: "Manage your site within VS Code", + feature_description_1: "A Content Management System built to run within Visual Studio Code. No dependencies on any website or API.", + + feature_title_2: "Preview", + feature_description_2: "Allow showing your page previews within Visual Studio Code.", + + feature_title_3: "Page dashboard", + feature_description_3: "Our page dashboard allows you to search, filter, sort, and group all your static site pages.", + + feature_title_4: "SEO Checks", + feature_description_4: "Our search engine optimization checks allow you to write better articles. We show you more information about your title, description, content, keywords, and more.", + + feature_title_5: "Use it the way you want it", + feature_description_5: "All of the functionalities are configurable to your needs. You can define how you want to use Front Matter in your editor experience.", + + feature_title_6: "Extensibility", + feature_description_6: "Add your actions with our custom scripting capability. For instance, you can use a script and hook it up to the extension if you want to generate preview images. If we do not support it, you can build it and share it with us.", + + // Documentation + documentation_title: "Documentation", + documentation_description: `Get to know more about how you can use ${Extension.name} with our documentation.`, + + // Showcase + showcase_title: "Showcase", + showcase_description: "Check out our showcase of static-sites using Front Matter.", + + // Changelog + changelog_title: "Changelog", + changelog_description: "Check out our changelog for Front Matter.", + changelog_page_title: `Latest updates`, + changelog_page_description: `An overview of all updates from the ${Extension.name} extension`, +}; \ No newline at end of file diff --git a/docs/locale/localeStrings.ts b/docs/locale/localeStrings.ts new file mode 100644 index 00000000..0d1e631d --- /dev/null +++ b/docs/locale/localeStrings.ts @@ -0,0 +1,5 @@ +import { strings as enMsgs } from './en'; + +export const LOCALE_STRINGS = { + en: { translation: enMsgs } +} \ No newline at end of file diff --git a/docs/locale/localization.ts b/docs/locale/localization.ts new file mode 100644 index 00000000..988fdcec --- /dev/null +++ b/docs/locale/localization.ts @@ -0,0 +1,20 @@ +import i18n from 'i18next'; +import { initReactI18next } from 'react-i18next'; +import { LOCALE_STRINGS } from './localeStrings'; +import LanguageDetector from 'i18next-browser-languagedetector'; + +i18n.use(new LanguageDetector({}, {caches:[]})) + .use(initReactI18next) + .init({ + fallbackLng: 'en', + resources: {...LOCALE_STRINGS}, + // debug: process.env.NODE_ENV && process.env.NODE_ENV === 'development', + detection: { + order: ['cookie', 'localStorage'], + }, + interpolation: { + escapeValue: false, // not needed for react as it escapes by default + } + }); + +export default i18n; \ No newline at end of file diff --git a/docs/package-lock.json b/docs/package-lock.json index d708ebe6..ed5bba52 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -123,6 +123,16 @@ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz", "integrity": "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==" }, + "@headlessui/react": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.4.0.tgz", + "integrity": "sha512-C+FmBVF6YGvqcEI5fa2dfVbEaXr2RGR6Kw1E5HXIISIZEfsrH/yuCgsjWw5nlRF9vbCxmQ/EKs64GAdKeb8gCw==" + }, + "@heroicons/react": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.4.tgz", + "integrity": "sha512-3kOrTmo8+Z8o6AL0rzN82MOf8J5CuxhRLFhpI8mrn+3OqekA6d5eb1GYO3EYYo1Vn6mYQSMNTzCWbEwUInb0cQ==" + }, "@humanwhocodes/config-array": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz", @@ -289,12 +299,46 @@ "integrity": "sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==", "dev": true }, + "@types/debug": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", + "requires": { + "@types/ms": "*" + } + }, + "@types/hast": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz", + "integrity": "sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==", + "requires": { + "@types/unist": "*" + } + }, "@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", "dev": true }, + "@types/mdast": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", + "integrity": "sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==", + "requires": { + "@types/unist": "*" + } + }, + "@types/mdurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==" + }, + "@types/ms": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", + "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" + }, "@types/node": { "version": "16.7.6", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.7.6.tgz", @@ -306,6 +350,11 @@ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, + "@types/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-ARATsLdrGPUnaBvxLhUlnltcMgn7pQG312S8ccdYlnyijabrX9RN/KN/iGj9Am96CoW8e/K9628BA7Bv4XHdrA==" + }, "@types/prop-types": { "version": "15.7.4", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", @@ -329,6 +378,11 @@ "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", "dev": true }, + "@types/unist": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", + "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==" + }, "@typescript-eslint/parser": { "version": "4.29.3", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.3.tgz", @@ -658,6 +712,11 @@ "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", "dev": true }, + "bail": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.1.tgz", + "integrity": "sha512-d5FoTAr2S5DSUPKl85WNm2yUwsINN8eidIdIwsOge2t33DaOfOdSmmsI11jMN3GmALCXaw+Y6HMVHDzePshFAA==" + }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -836,6 +895,12 @@ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz", "integrity": "sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw==" }, + "ccount": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.0.tgz", + "integrity": "sha512-VOR0NWFYX65n9gELQdcpqsie5L5ihBXuZGAgaPEp/U7IOSjnPMEH6geE+2f6lcekaNEfWzAHS45mPvSo5bqsUA==", + "dev": true + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -846,6 +911,27 @@ "supports-color": "^5.3.0" } }, + "character-entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.0.tgz", + "integrity": "sha512-oHqMj3eAuJ77/P5PaIRcqk+C3hdfNwyCD2DAUcD5gyXkegAuF2USC40CEqPscDk4I8FRGMTojGJQkXDsN5QlJA==" + }, + "character-entities-html4": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.0.0.tgz", + "integrity": "sha512-dwT2xh5ZhUAjyP96k57ilMKoTQyASaw9IAMR9U5c1lCu2RUni6O6jxfpUEdO2RcPT6TJFvr8pqsbami4Jk+2oA==", + "dev": true + }, + "character-entities-legacy": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-2.0.0.tgz", + "integrity": "sha512-YwaEtEvWLpFa6Wh3uVLrvirA/ahr9fki/NUd/Bd4OR6EdJ8D22hovYQEOUCBfQfcqnC4IAMGMsHXY1eXgL4ZZA==" + }, + "character-reference-invalid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.0.tgz", + "integrity": "sha512-pE3Z15lLRxDzWJy7bBHBopRwfI20sbrMVLQTC7xsPglCHf4Wv1e167OgYAFP78co2XlhojDyAqA+IAJse27//g==" + }, "chokidar": { "version": "3.5.1", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", @@ -930,6 +1016,11 @@ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz", "integrity": "sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==" }, + "comma-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz", + "integrity": "sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==" + }, "commander": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", @@ -1922,6 +2013,11 @@ "safe-buffer": "^5.1.1" } }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -2198,6 +2294,129 @@ "minimalistic-assert": "^1.0.1" } }, + "hast-to-hyperscript": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/hast-to-hyperscript/-/hast-to-hyperscript-10.0.1.tgz", + "integrity": "sha512-dhIVGoKCQVewFi+vz3Vt567E4ejMppS1haBRL6TEmeLeJVB1i/FJIIg/e6s1Bwn0g5qtYojHEKvyGA+OZuyifw==", + "requires": { + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.3.0", + "unist-util-is": "^5.0.0", + "web-namespaces": "^2.0.0" + } + }, + "hast-util-from-parse5": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz", + "integrity": "sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==", + "requires": { + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "@types/unist": "^2.0.0", + "hastscript": "^7.0.0", + "property-information": "^6.0.0", + "vfile": "^5.0.0", + "vfile-location": "^4.0.0", + "web-namespaces": "^2.0.0" + } + }, + "hast-util-is-element": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.1.tgz", + "integrity": "sha512-ag0fiZfRWsPiR1udvnSbaazJLGv8qd8E+/e3rW8rUZhbKG4HNJmFL4QkEceN+22BgE+uozXY30z/s+2dL6Z++g==", + "dev": true, + "requires": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0" + } + }, + "hast-util-parse-selector": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz", + "integrity": "sha512-AyjlI2pTAZEOeu7GeBPZhROx0RHBnydkQIXlhnFzDi0qfXTmGUWoCYZtomHbrdrheV4VFUlPcfJ6LMF5T6sQzg==", + "requires": { + "@types/hast": "^2.0.0" + } + }, + "hast-util-raw": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.0.tgz", + "integrity": "sha512-K2ofsY59XqrtBNUAkvT2vPdyNPUchjj1Z0FxUOwBadS6R5h9O3LaRZqpukQ+YfgQ/IMy9GGMB/Nlpzpu+cuuMA==", + "requires": { + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-util-from-parse5": "^7.0.0", + "hast-util-to-parse5": "^7.0.0", + "html-void-elements": "^2.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + } + }, + "hast-util-sanitize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/hast-util-sanitize/-/hast-util-sanitize-4.0.0.tgz", + "integrity": "sha512-pw56+69jq+QSr/coADNvWTmBPDy+XsmwaF5KnUys4/wM1jt/fZdl7GPxhXXXYdXnz3Gj3qMkbUCH2uKjvX0MgQ==", + "dev": true, + "requires": { + "@types/hast": "^2.0.0" + } + }, + "hast-util-to-html": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-8.0.1.tgz", + "integrity": "sha512-S1mTqXvWVGIxrWw0xOHHvmevwCBFTRGNvXWsjE32IyEAlMhbMkK+ZuP6CAqkQ6Vb7swrehaHpfXHEI6voGDh0w==", + "dev": true, + "requires": { + "@types/hast": "^2.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-is-element": "^2.0.0", + "hast-util-whitespace": "^2.0.0", + "html-void-elements": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "unist-util-is": "^5.0.0" + } + }, + "hast-util-to-parse5": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.0.0.tgz", + "integrity": "sha512-YHiS6aTaZ3N0Q3nxaY/Tj98D6kM8QX5Q8xqgg8G45zR7PvWnPGPP0vcKCgb/moIydEJ/QWczVrX0JODCVeoV7A==", + "requires": { + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-to-hyperscript": "^10.0.0", + "property-information": "^6.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" + } + }, + "hast-util-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz", + "integrity": "sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==", + "dev": true + }, + "hastscript": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.0.2.tgz", + "integrity": "sha512-uA8ooUY4ipaBvKcMuPehTAB/YfFLSSzCwFSwT6ltJbocFUKH/GDHLN+tflq7lSRf9H86uOuxOFkh1KgIy3Gg2g==", + "requires": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" + } + }, "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", @@ -2219,12 +2438,25 @@ "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true }, + "html-parse-stringify": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz", + "integrity": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==", + "requires": { + "void-elements": "3.1.0" + } + }, "html-tags": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", "dev": true }, + "html-void-elements": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.0.tgz", + "integrity": "sha512-4OYzQQsBt0G9bJ/nM9/DDsjm4+fVdzAaPJJcWk5QwA3GIAPxQEeOR0rsI8HbDHQz5Gta8pVvGnnTNSbZVEVvkQ==" + }, "http-errors": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", @@ -2242,6 +2474,32 @@ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" }, + "i18next": { + "version": "20.4.0", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-20.4.0.tgz", + "integrity": "sha512-89iWWJudmaHJwzIdJ/1eu98GtsJnwBhOUWwlAre70itPMuTE/NTPtgVeaS1CGaB8Q3XrYBGpEqlq4jsScDx9kg==", + "requires": { + "@babel/runtime": "^7.12.0" + } + }, + "i18next-browser-languagedetector": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/i18next-browser-languagedetector/-/i18next-browser-languagedetector-6.1.2.tgz", + "integrity": "sha512-YDzIGHhMRvr7M+c8B3EQUKyiMBhfqox4o1qkFvt4QXuu5V2cxf74+NCr+VEkUuU0y+RwcupA238eeolW1Yn80g==", + "requires": { + "@babel/runtime": "^7.14.6" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", + "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -2326,6 +2584,11 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" + }, "internal-slot": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", @@ -2336,6 +2599,20 @@ "side-channel": "^1.0.4" } }, + "is-alphabetical": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.0.tgz", + "integrity": "sha512-5OV8Toyq3oh4eq6sbWTYzlGdnMT/DPI5I0zxUBxjiigQsZycpkKF3kskkao3JyYGuYDHvhgJF+DrjMQp9SX86w==" + }, + "is-alphanumerical": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.0.tgz", + "integrity": "sha512-t+2GlJ+hO9yagJ+jU3+HSh80VKvz/3cG2cxbGGm4S0hjKuhWQXgPVUVOZz3tqZzMjhmphZ+1TIJTlRZRoe6GCQ==", + "requires": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + } + }, "is-arguments": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", @@ -2376,6 +2653,11 @@ "has-tostringtag": "^1.0.0" } }, + "is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" + }, "is-callable": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", @@ -2398,6 +2680,11 @@ "has-tostringtag": "^1.0.0" } }, + "is-decimal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.0.tgz", + "integrity": "sha512-QfrfjQV0LjoWQ1K1XSoEZkTAzSa14RKVMa5zg3SdAfzEmQzRM4+tbSFWb78creCeA9rNBzaZal92opi1TwPWZw==" + }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2425,6 +2712,11 @@ "is-extglob": "^2.1.1" } }, + "is-hexadecimal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.0.tgz", + "integrity": "sha512-vGOtYkiaxwIiR0+Ng/zNId+ZZehGfINwTzdrDqc6iubbnQWhnPuYymOzOKUDqa2cSl59yHnEh2h6MvRLQsyNug==" + }, "is-nan": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", @@ -2452,6 +2744,11 @@ "has-tostringtag": "^1.0.0" } }, + "is-plain-obj": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.0.0.tgz", + "integrity": "sha512-NXRbBtUdBioI73y/HmOhogw/U5msYPC9DAtGkJXeFcFWSFZw0mCUsPxk/snTuJHzNKA8kLBK4rH97RMB1BfCXw==" + }, "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", @@ -2694,6 +2991,12 @@ "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", "dev": true }, + "longest-streak": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.0.0.tgz", + "integrity": "sha512-XhUjWR5CFaQ03JOP+iSDS9koy8T5jfoImCZ4XprElw3BXsSk4MpVYOLw/6LTDKZhO13PlAXnB5gS4MHQTpkSOw==", + "dev": true + }, "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", @@ -2729,6 +3032,98 @@ "safe-buffer": "^5.1.2" } }, + "mdast-util-definitions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.0.tgz", + "integrity": "sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==", + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "unist-util-visit": "^3.0.0" + }, + "dependencies": { + "unist-util-visit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-3.1.0.tgz", + "integrity": "sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^4.0.0" + } + } + } + }, + "mdast-util-from-markdown": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.0.0.tgz", + "integrity": "sha512-uj2G60sb7z1PNOeElFwCC9b/Se/lFXuLhVKFOAY2EHz/VvgbupTQRNXPoZl7rGpXYL6BNZgcgaybrlSWbo7n/g==", + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "parse-entities": "^3.0.0", + "unist-util-stringify-position": "^3.0.0" + } + }, + "mdast-util-to-hast": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-11.2.0.tgz", + "integrity": "sha512-KSYbg4PA9wk5YwoCZCPxbUAjdYunNN5TqTXoZp/9taRDGQS65cL2fFgKc78l0f3deg4p1LP9xdhmMuUrhAUSZA==", + "requires": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "@types/mdurl": "^1.0.0", + "mdast-util-definitions": "^5.0.0", + "mdurl": "^1.0.0", + "unist-builder": "^3.0.0", + "unist-util-generated": "^2.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^3.0.0" + }, + "dependencies": { + "unist-util-visit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-3.1.0.tgz", + "integrity": "sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^4.0.0" + } + } + } + }, + "mdast-util-to-markdown": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.2.1.tgz", + "integrity": "sha512-yj0UexEfdH0Zqw9CztzC5+J6OZKgCY6K0ommn56SBlPKIV3NGqk1Wo/zw1Q0e/kHb50wmQ8O9cwbOl7vmaJjxg==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "parse-entities": "^3.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" + } + }, + "mdast-util-to-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz", + "integrity": "sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==" + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" + }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -2740,6 +3135,217 @@ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, + "micromark": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.0.5.tgz", + "integrity": "sha512-QfjERBnPw0G9mxhOCkkbRP0n8SX8lIBLrEKeEVceviUukqVMv3hWE4AgNTOK/W6GWqtPvvIHg2Apl3j1Dxm6aQ==", + "requires": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "parse-entities": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "micromark-core-commonmark": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.1.tgz", + "integrity": "sha512-vEOw8hcQ3nwHkKKNIyP9wBi8M50zjNajtmI+cCUWcVfJS+v5/3WCh4PLKf7PPRZFUutjzl4ZjlHwBWUKfb/SkA==", + "requires": { + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "parse-entities": "^3.0.0" + } + }, + "micromark-factory-destination": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz", + "integrity": "sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==", + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-label": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.0.tgz", + "integrity": "sha512-XWEucVZb+qBCe2jmlOnWr6sWSY6NHx+wtpgYFsm4G+dufOf6tTQRRo0bdO7XSlGPu5fyjpJenth6Ksnc5Mwfww==", + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-space": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz", + "integrity": "sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==", + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-title": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.0.tgz", + "integrity": "sha512-flvC7Gx0dWVWorXuBl09Cr3wB5FTuYec8pMGVySIp2ZlqTcIjN/lFohZcP0EG//krTptm34kozHk7aK/CleCfA==", + "requires": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-factory-whitespace": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz", + "integrity": "sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==", + "requires": { + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz", + "integrity": "sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==", + "requires": { + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-chunked": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz", + "integrity": "sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==", + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-classify-character": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz", + "integrity": "sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==", + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-combine-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz", + "integrity": "sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==", + "requires": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-decode-numeric-character-reference": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz", + "integrity": "sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==", + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-encode": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz", + "integrity": "sha512-cJpFVM768h6zkd8qJ1LNRrITfY4gwFt+tziPcIf71Ui8yFzY9wG3snZQqiWVq93PG4Sw6YOtcNiKJfVIs9qfGg==" + }, + "micromark-util-html-tag-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.0.0.tgz", + "integrity": "sha512-NenEKIshW2ZI/ERv9HtFNsrn3llSPZtY337LID/24WeLqMzeZhBEE6BQ0vS2ZBjshm5n40chKtJ3qjAbVV8S0g==" + }, + "micromark-util-normalize-identifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz", + "integrity": "sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==", + "requires": { + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-resolve-all": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz", + "integrity": "sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==", + "requires": { + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-sanitize-uri": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz", + "integrity": "sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==", + "requires": { + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" + } + }, + "micromark-util-subtokenize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.0.tgz", + "integrity": "sha512-EsnG2qscmcN5XhkqQBZni/4oQbLFjz9yk3ZM/P8a3YUjwV6+6On2wehr1ALx0MxK3+XXXLTzuBKHDFeDFYRdgQ==", + "requires": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" + } + }, + "micromark-util-symbol": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.0.tgz", + "integrity": "sha512-NZA01jHRNCt4KlOROn8/bGi6vvpEmlXld7EHcRH+aYWUfL3Wc8JLUNNlqUMKa0hhz6GrpUWsHtzPmKof57v0gQ==" + }, + "micromark-util-types": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.1.tgz", + "integrity": "sha512-UT0ylWEEy80RFYzK9pEaugTqaxoD/j0Y9WhHpSyitxd99zjoQz7JJ+iKuhPAgOW2MiPSUAx+c09dcqokeyaROA==" + }, "micromatch": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", @@ -3268,6 +3874,19 @@ "safe-buffer": "^5.1.1" } }, + "parse-entities": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-3.0.0.tgz", + "integrity": "sha512-AJlcIFDNPEP33KyJLguv0xJc83BNvjxwpuUIcetyXUsLpVXAUCePJ5kIoYtEN2R1ac0cYaRu/vk9dVFkewHQhQ==", + "requires": { + "character-entities": "^2.0.0", + "character-entities-legacy": "^2.0.0", + "character-reference-invalid": "^2.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0", + "is-hexadecimal": "^2.0.0" + } + }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -3278,6 +3897,11 @@ "json-parse-better-errors": "^1.0.1" } }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, "path-browserify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", @@ -3505,7 +4129,6 @@ "version": "15.7.2", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", - "dev": true, "requires": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -3515,11 +4138,15 @@ "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "dev": true + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" } } }, + "property-information": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/property-information/-/property-information-6.0.1.tgz", + "integrity": "sha512-F4WUUAF7fMeF4/JUFHNBWDaKDXi2jbvqBW/y6o5wsf3j19wTZ7S60TmtB5HoBhtgw7NKQRMWuz5vk2PR0CygUg==" + }, "public-encrypt": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", @@ -3644,11 +4271,50 @@ "scheduler": "^0.20.2" } }, + "react-i18next": { + "version": "11.11.4", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.11.4.tgz", + "integrity": "sha512-ayWFlu8Sc7GAxW1PzMaPtzq+yiozWMxs0P1WeITNVzXAVRhC0Httkzw/IiODBta6seJRBCLrtUeFUSXhAIxlRg==", + "requires": { + "@babel/runtime": "^7.14.5", + "html-parse-stringify": "^3.0.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", + "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" }, + "react-markdown": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-7.0.1.tgz", + "integrity": "sha512-pthNPaoiwg0q7hukoE04F2ENwSzijIlWHJ4UMs/96LUe/G/P3FnbP4qHzx3FoNqae+2SqDG8vzniTLnJDeWneg==", + "requires": { + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "prop-types": "^15.0.0", + "property-information": "^6.0.0", + "react-is": "^17.0.0", + "remark-parse": "^10.0.0", + "remark-rehype": "^9.0.0", + "space-separated-tokens": "^2.0.0", + "style-to-object": "^0.3.0", + "unified": "^10.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0" + } + }, "react-refresh": { "version": "0.8.3", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", @@ -3794,6 +4460,73 @@ "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", "dev": true }, + "rehype-raw": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/rehype-raw/-/rehype-raw-6.1.0.tgz", + "integrity": "sha512-12j2UiiYJgZFdjnHDny77NY5BF3eW4Jsl0vtgL1DWdTzcHjPpbhumU+GtPUdivEWwQc8x9OdEuO0oxaGz7Tvyg==", + "requires": { + "@types/hast": "^2.0.0", + "hast-util-raw": "^7.2.0", + "unified": "^10.0.0" + } + }, + "remark": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/remark/-/remark-14.0.1.tgz", + "integrity": "sha512-7zLG3u8EUjOGuaAS9gUNJPD2j+SqDqAFHv2g6WMpE5CU9rZ6e3IKDM12KHZ3x+YNje+NMAuN55yx8S5msGSx7Q==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "remark-parse": "^10.0.0", + "remark-stringify": "^10.0.0", + "unified": "^10.0.0" + } + }, + "remark-html": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/remark-html/-/remark-html-14.0.0.tgz", + "integrity": "sha512-ISQjSlOI3Hb99REjDz0cAhPJVJZDednsj4GNj4Ve7DEZdEXhVPOzBvym0Di+1K3p/RmKXqSw0r02JDmtATh6Dw==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "hast-util-sanitize": "^4.0.0", + "hast-util-to-html": "^8.0.0", + "mdast-util-to-hast": "^11.0.0", + "unified": "^10.0.0" + } + }, + "remark-parse": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.0.tgz", + "integrity": "sha512-07ei47p2Xl7Bqbn9H2VYQYirnAFJPwdMuypdozWsSbnmrkgA2e2sZLZdnDNrrsxR4onmIzH/J6KXqKxCuqHtPQ==", + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "unified": "^10.0.0" + } + }, + "remark-rehype": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-9.0.0.tgz", + "integrity": "sha512-SFA+mPWu45ynFPKeT3h5eNNVAYoMp3wizr3KSKh1IQ9L6dLSyD25/df6/vv8EW8ji3O3dnZGdbLQl592Tn+ydg==", + "requires": { + "@types/hast": "^2.0.0", + "@types/mdast": "^3.0.0", + "mdast-util-to-hast": "^11.0.0", + "unified": "^10.0.0" + } + }, + "remark-stringify": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-10.0.0.tgz", + "integrity": "sha512-3LAQqJ/qiUxkWc7fUcVuB7RtIT38rvmxfmJG8z1TiE/D8zi3JGQ2tTcTJu9Tptdpb7gFwU0whRi5q1FbFOb9yA==", + "dev": true, + "requires": { + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.0.0", + "unified": "^10.0.0" + } + }, "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", @@ -3996,6 +4729,11 @@ "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", "dev": true }, + "space-separated-tokens": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz", + "integrity": "sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==" + }, "spdx-correct": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", @@ -4133,6 +4871,16 @@ "safe-buffer": "~5.2.0" } }, + "stringify-entities": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.1.tgz", + "integrity": "sha512-gmMQxKXPWIO3NXNSPyWNhlYcBNGpPA/487D+9dLPnU4xBnIrnHdr8cv5rGJOS/1BRxEXRb7uKwg7BA36IWV7xg==", + "dev": true, + "requires": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^2.0.0" + } + }, "strip-ansi": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", @@ -4153,6 +4901,14 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, + "style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "requires": { + "inline-style-parser": "0.1.1" + } + }, "styled-jsx": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-4.0.0.tgz", @@ -4416,6 +5172,11 @@ "punycode": "^2.1.0" } }, + "trough": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz", + "integrity": "sha512-FnHq5sTMxC0sk957wHDzRnemFnNBvt/gSY99HzK8F7UP5WAbvP70yX5bd7CjEQkN+TjdxwI7g7lJ6podqrG2/w==" + }, "ts-pnp": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", @@ -4484,6 +5245,81 @@ "which-boxed-primitive": "^1.0.2" } }, + "unified": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.0.tgz", + "integrity": "sha512-4U3ru/BRXYYhKbwXV6lU6bufLikoAavTwev89H5UxY8enDFaAT2VXmIXYNm6hb5oHPng/EXr77PVyDFcptbk5g==", + "requires": { + "@types/unist": "^2.0.0", + "bail": "^2.0.0", + "extend": "^3.0.0", + "is-buffer": "^2.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^5.0.0" + } + }, + "unist-builder": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.0.tgz", + "integrity": "sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==", + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-generated": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.0.tgz", + "integrity": "sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==" + }, + "unist-util-is": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz", + "integrity": "sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==" + }, + "unist-util-position": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.1.tgz", + "integrity": "sha512-mgy/zI9fQ2HlbOtTdr2w9lhVaiFUHWQnZrFF2EUoVOqtAUdzqMtNiD99qA5a1IcjWVR8O6aVYE9u7Z2z1v0SQA==" + }, + "unist-util-stringify-position": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz", + "integrity": "sha512-SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==", + "requires": { + "@types/unist": "^2.0.0" + } + }, + "unist-util-visit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.0.0.tgz", + "integrity": "sha512-3HWTvrtU10/E7qgPznBfiOyG0TXj9W8c1GSfaI8L9GkaG1pLePiQPZ7E35a0R3ToQ/zcy4Im6aZ9WBgOTnv1MQ==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" + }, + "dependencies": { + "unist-util-visit-parents": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.0.0.tgz", + "integrity": "sha512-CVaLOYPM/EaFTYMytbaju3Tw4QI3DHnHFnL358FkEu0hZOzSm/hqBdVwOQDR60jF5ZzhB1tlZlRH0ll/yekZIQ==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + } + } + } + }, + "unist-util-visit-parents": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz", + "integrity": "sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-is": "^5.0.0" + } + }, "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", @@ -4567,11 +5403,45 @@ "spdx-expression-parse": "^3.0.0" } }, + "vfile": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.1.0.tgz", + "integrity": "sha512-4o7/DJjEaFPYSh0ckv5kcYkJTHQgCKdL8ozMM1jLAxO9ox95IzveDPXCZp08HamdWq8JXTkClDvfAKaeLQeKtg==", + "requires": { + "@types/unist": "^2.0.0", + "is-buffer": "^2.0.0", + "unist-util-stringify-position": "^3.0.0", + "vfile-message": "^3.0.0" + } + }, + "vfile-location": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-4.0.1.tgz", + "integrity": "sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==", + "requires": { + "@types/unist": "^2.0.0", + "vfile": "^5.0.0" + } + }, + "vfile-message": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.2.tgz", + "integrity": "sha512-UUjZYIOg9lDRwwiBAuezLIsu9KlXntdxwG+nXnjuQAHvBpcX3x0eN8h+I7TkY5nkCXj+cWVp4ZqebtGBvok8ww==", + "requires": { + "@types/unist": "^2.0.0", + "unist-util-stringify-position": "^3.0.0" + } + }, "vm-browserify": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" }, + "void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=" + }, "watchpack": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.1.1.tgz", @@ -4581,6 +5451,11 @@ "graceful-fs": "^4.1.2" } }, + "web-namespaces": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.0.tgz", + "integrity": "sha512-dE7ELZRVWh0ceQsRgkjLgsAvwTuv3kcjSY/hLjqL0llleUlQBDjE9JkB9FCBY5F2mnFEwiyJoowl8+NVGHe8dw==" + }, "webidl-conversions": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", @@ -4663,6 +5538,11 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + }, + "zwitch": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.2.tgz", + "integrity": "sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==" } } } diff --git a/docs/package.json b/docs/package.json index cb6fb251..e4781c0f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -3,15 +3,23 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev", - "build": "next build", + "changelog": "node scripts/copy-changelog.js", + "dev": "npm run changelog && next dev", + "build": "npm run changelog && next build", "start": "next start", "lint": "next lint" }, "dependencies": { + "@headlessui/react": "^1.4.0", + "@heroicons/react": "^1.0.4", + "i18next": "^20.4.0", + "i18next-browser-languagedetector": "^6.1.2", "next": "11.1.0", "react": "17.0.2", - "react-dom": "17.0.2" + "react-dom": "17.0.2", + "react-i18next": "^11.11.4", + "react-markdown": "^7.0.1", + "rehype-raw": "^6.1.0" }, "devDependencies": { "@types/react": "17.0.19", @@ -19,6 +27,9 @@ "eslint": "7.32.0", "eslint-config-next": "11.1.0", "postcss": "^8.3.6", + "postcss-nested": "^5.0.6", + "remark": "14.0.1", + "remark-html": "14.0.0", "tailwindcss": "^2.2.8", "typescript": "4.4.2" } diff --git a/docs/pages/_app.tsx b/docs/pages/_app.tsx index 94b21d65..d87550e0 100644 --- a/docs/pages/_app.tsx +++ b/docs/pages/_app.tsx @@ -1,5 +1,6 @@ import '../styles/globals.css'; import type { AppProps } from 'next/app'; +import '../locale/localization'; function MyApp({ Component, pageProps }: AppProps) { return diff --git a/docs/pages/_document.tsx b/docs/pages/_document.tsx new file mode 100644 index 00000000..8db02274 --- /dev/null +++ b/docs/pages/_document.tsx @@ -0,0 +1,31 @@ +import Document, { Html, Head, Main, NextScript } from 'next/document' + +class MyDocument extends Document { + + static async getInitialProps(ctx: any) { + const initialProps = await Document.getInitialProps(ctx) + return { ...initialProps } + } + + render() { + return ( + + + + + + + + + + +
+ + + + + ) + } +} + +export default MyDocument \ No newline at end of file diff --git a/docs/pages/changelog/index.tsx b/docs/pages/changelog/index.tsx new file mode 100644 index 00000000..8b4cb0ed --- /dev/null +++ b/docs/pages/changelog/index.tsx @@ -0,0 +1,51 @@ +import React from 'react'; +import { useTranslation } from 'react-i18next'; +import ReactMarkdown from 'react-markdown'; +import rehypeRaw from 'rehype-raw'; +import { Description, OtherMeta, Title } from '../../components/Meta'; +import { Layout } from '../../components/Page/Layout'; +import { getPostByFilename } from '../../lib/api'; + +export default function Home({ content }: any) { + const { t: strings } = useTranslation(); + + return ( + <> + + <Description value={`changelog_description`} /> + <OtherMeta image={`/assets/frontmatter-preview.png`} /> + + <Layout> + <div className="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:py-24 lg:px-8 divide-y-2 divide-vulcan-200"> + <div className="py-8 space-y-2 md:space-y-5 "> + <h1 className="text-5xl tracking-tight font-extrabold sm:leading-none lg:text-5xl xl:text-6xl">{strings(`changelog_page_title`)}</h1> + + <p className="mt-3 text-base text-whisper-700 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">{strings(`changelog_page_description`)}</p> + </div> + + <div className={`changelog`}> + <ReactMarkdown + components={{ + a: ({node, ...props}) => { + const url = props?.href || ""; + const title = props?.children.length > 0 ? `${props?.children[0] as string}` : ""; + const elm = <a key={url as string} href={url as string} title={title}>{title}</a>; + return elm; + } + }} + rehypePlugins={[rehypeRaw]} + children={content} /> + </div> + </div> + </Layout> + </> + ) +} + +export const getStaticProps = async () => { + const changes = getPostByFilename('changelog', "CHANGELOG.md", ['content']); + + return { + props: { content: changes.content } + } +} \ No newline at end of file diff --git a/docs/pages/docs/[slug].tsx b/docs/pages/docs/[slug].tsx new file mode 100644 index 00000000..6766cad4 --- /dev/null +++ b/docs/pages/docs/[slug].tsx @@ -0,0 +1,85 @@ +import React from 'react'; +import ReactMarkdown from 'react-markdown'; +import { getAllPosts, getPostByFilename } from '../../lib/api'; +import { useRouter } from 'next/router'; +import rehypeRaw from 'rehype-raw'; +import { Description, OtherMeta, Title } from '../../components/Meta'; +import { Layout } from '../../components/Page/Layout'; + +export default function News({ page }: any) { + + const router = useRouter() + if (!router.isFallback && !page?.slug) { + return <p>Error</p> + } + + return ( + <> + <Title value={page.title} /> + <Description value={page.description} /> + <OtherMeta image={page.image} type={`article`} /> + + <Layout> + <ReactMarkdown + components={{ + a: ({node, ...props}) => { + const url = props?.href || ""; + const title = props?.children.length > 0 ? `${props?.children[0] as string}` : ""; + const elm = <a key={url as string} href={url as string} title={title}>{title}</a>; + return elm; + } + }} + rehypePlugins={[rehypeRaw]} + children={page.content} /> + </Layout> + </> + ) +} + +export async function getStaticProps({ params }: any) { + const blogItems = getAllPosts('docs', ['fileName', 'slug']); + const article: any = blogItems.find((b: any) => b.slug === params.slug); + + const blog: any = getPostByFilename('docs', article.fileName, [ + 'title', + 'date', + 'content', + 'slug', + 'fileName', + 'category', + 'description', + 'image' + ]) + + return { + props: { + page: { + ...blog + } + } + } +} + +export async function getStaticPaths() { + const blogItems = getAllPosts('docs', [ + 'title', + 'date', + 'slug', + 'fileName', + 'category', + 'description', + 'image' + ]) + + return { + paths: blogItems.map((news: any) => { + return { + params: { + slug: news.slug, + fileName: news.fileName + } + } + }), + fallback: false + } +} \ No newline at end of file diff --git a/docs/pages/docs/index.tsx b/docs/pages/docs/index.tsx new file mode 100644 index 00000000..1f7c3dc9 --- /dev/null +++ b/docs/pages/docs/index.tsx @@ -0,0 +1,41 @@ +import React from 'react'; +import { useTranslation } from 'react-i18next'; +import { Description, OtherMeta, Title } from '../../components/Meta'; +import { Layout } from '../../components/Page/Layout'; +import { getAllPosts } from '../../lib/api'; + +export default function Home({ docs }: any) { + const { t: strings } = useTranslation(); + + return ( + <> + <Title value={strings(`documentation_title`)} /> + <Description value={`documentation_description`} /> + <OtherMeta image={`/assets/frontmatter-preview.png`} /> + + <Layout> + <div className="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:py-24 lg:px-8"> + <div className="text-6xl text-whisper-500"> + Coming soon... + </div> + </div> + </Layout> + </> + ) +} + +export const getStaticProps = async () => { + const blogItems = getAllPosts('docs', [ + 'title', + 'date', + 'slug', + 'fileName', + 'category', + 'description', + 'image' + ]) + + return { + props: { blogItems: blogItems.map(item => ({...item, type: 'blog'})) }, + } +} \ No newline at end of file diff --git a/docs/pages/index.tsx b/docs/pages/index.tsx index 1f447246..efc687ad 100644 --- a/docs/pages/index.tsx +++ b/docs/pages/index.tsx @@ -1,9 +1,27 @@ import type { NextPage } from 'next'; -import Head from 'next/head'; +import React from 'react'; +import { Description, OtherMeta, Title } from '../components/Meta'; +import { CTA } from '../components/Page/CTA'; +import { Features } from '../components/Page/Features'; +import { Generators } from '../components/Page/Generators'; +import { Layout } from '../components/Page/Layout'; +import { Extension } from '../constants/extension'; const Home: NextPage = () => { return ( - <h1 className="mt-4 text-4xl tracking-tight font-extrabold sm:mt-5 sm:leading-none lg:mt-6 lg:text-5xl xl:text-6xl"><span className="md:block">Manage your static site with</span> <span className="text-teal-500 md:block">Front Matter</span></h1> + <> + <Title value={Extension.home} /> + <Description value={Extension.description} /> + <OtherMeta image={`/assets/frontmatter-preview.png`} /> + + <Layout> + <CTA /> + + <Generators /> + + <Features /> + </Layout> + </> ) } diff --git a/docs/pages/showcase/index.tsx b/docs/pages/showcase/index.tsx new file mode 100644 index 00000000..08125fe1 --- /dev/null +++ b/docs/pages/showcase/index.tsx @@ -0,0 +1,47 @@ +import React from 'react'; +import { useTranslation } from 'react-i18next'; +import { Description, OtherMeta, Title } from '../../components/Meta'; +import { Layout } from '../../components/Page/Layout'; +import showcases from '../../showcases.json'; + +export default function Home({ showcases }: any) { + const { t: strings } = useTranslation(); + + return ( + <> + <Title value={strings(`showcase_title`)} /> + <Description value={`showcase_description`} /> + <OtherMeta image={`/assets/frontmatter-preview.png`} /> + + <Layout> + <div className="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:py-24 lg:px-8 divide-y-2 divide-vulcan-200"> + <div className="py-8 space-y-2 md:space-y-5 "> + <h1 className="text-5xl tracking-tight font-extrabold sm:leading-none lg:text-5xl xl:text-6xl">{strings(`showcase_title`)}</h1> + + <p className="mt-3 text-base text-whisper-700 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">{strings(`showcase_description`)}</p> + </div> + + <div className={`py-8 grid grid-cols-2 gap-8`}> + {showcases.filter((showcase: any) => showcase.image).map((showcase: any) => ( + <a className="group space-y-2 md:space-y-5 relative" href={showcase.link} title={showcase.title} rel={`noopener noreferrer`}> + <figure className={`relative h-[25rem] overflow-hidden grayscale group-hover:grayscale-0`}> + <img className={`w-full object-cover`} src={`/showcases/${showcase.image}`} alt={showcase.title} loading={`lazy`} /> + </figure> + + <h2 className="text-3xl tracking-tight font-extrabold sm:leading-none lg:text-3xl xl:text-4xl">{showcase.title}</h2> + + <p className="mt-3 text-base text-whisper-700 sm:mt-5 sm:text-xl lg:text-lg xl:text-xl">{showcase.description}</p> + </a> + ))} + </div> + </div> + </Layout> + </> + ) +} + +export const getStaticProps = async () => { + return { + props: { showcases } + } +} \ No newline at end of file diff --git a/docs/postcss.config.js b/docs/postcss.config.js index 96bb01e7..4fa4cf1f 100644 --- a/docs/postcss.config.js +++ b/docs/postcss.config.js @@ -1,5 +1,6 @@ module.exports = { plugins: { + "postcss-nested": {}, tailwindcss: {}, autoprefixer: {}, }, diff --git a/docs/public/android-chrome-192x192.png b/docs/public/android-chrome-192x192.png new file mode 100644 index 00000000..8d3f215f Binary files /dev/null and b/docs/public/android-chrome-192x192.png differ diff --git a/docs/public/android-chrome-512x512.png b/docs/public/android-chrome-512x512.png new file mode 100644 index 00000000..f21936d3 Binary files /dev/null and b/docs/public/android-chrome-512x512.png differ diff --git a/docs/public/apple-touch-icon.png b/docs/public/apple-touch-icon.png new file mode 100644 index 00000000..32a93fb5 Binary files /dev/null and b/docs/public/apple-touch-icon.png differ diff --git a/docs/public/assets/frontmatter-min.svg b/docs/public/assets/frontmatter-min.svg new file mode 100644 index 00000000..a2f82221 --- /dev/null +++ b/docs/public/assets/frontmatter-min.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path d="M4,11.4H2.2V2.9H5.4v2H4V6.1H5.3V8H4Z" transform="translate(1 1)" fill="currentcolor"/><path d="M10.9,11.4H9l-.9-3V8.2C8,8.1,8,8,7.9,7.8v3.6H6.1V2.9H8a2.88,2.88,0,0,1,1.9.6,3.11,3.11,0,0,1,.8,2.2A2.25,2.25,0,0,1,9.6,7.8ZM8,6.8h.1a.55.55,0,0,0,.5-.3,1.88,1.88,0,0,0,.2-.8c0-.6-.3-1-.8-1H8Z" transform="translate(1 1)" fill="currentcolor"/><path d="M16.5,7.2a6.08,6.08,0,0,1-.7,3.2A2.14,2.14,0,0,1,14,11.6a2.09,2.09,0,0,1-1.7-.9,5.84,5.84,0,0,1-.9-3.5,5.84,5.84,0,0,1,.9-3.5A2.09,2.09,0,0,1,14,2.8,2.16,2.16,0,0,1,15.9,4,8.24,8.24,0,0,1,16.5,7.2Zm-1.9,0c0-1.5-.2-2.3-.7-2.3-.2,0-.4.2-.5.6a6.53,6.53,0,0,0-.2,1.7,7.18,7.18,0,0,0,.2,1.7c.1.4.3.6.5.6s.4-.2.5-.6A7.93,7.93,0,0,0,14.6,7.2Z" transform="translate(1 1)" fill="currentcolor"/><path d="M17.2,11.4V2.9H19l.9,3c.1.1.1.3.2.6s.1.5.2.8l.2.7c-.1-.7-.1-1.4-.2-1.9a6.64,6.64,0,0,1-.1-1.3V2.9H22v8.5H20.3l-.9-3.1-.3-.9c-.1-.3-.1-.6-.2-.8,0,.6.1,1.1.1,1.6v3.4H17.2Z" transform="translate(1 1)" fill="currentcolor"/><path d="M25.3,11.4H23.5V4.9h-1v-2h3.9v2H25.3Z" transform="translate(1 1)" fill="currentcolor"/><rect x="1" y="1" width="28" height="28" fill="none" stroke="currentcolor" stroke-miterlimit="10" stroke-width="2"/><path d="M2.9,17h.9l.6,3a5,5,0,0,1,.2,1.2c.1.4.1.8.2,1.2v-.2l.2-.9.1-.8.1-.5.6-3h.9l.7,7.5h-1l-.2-2.6V19.5h0v.1a.9.9,0,0,1-.1.5c-.1.2,0,.2-.1.3l-.1.7v.3l-.6,3.3H4.5l-.6-2.8a5.16,5.16,0,0,1-.2-1.1c-.1-.4-.1-.8-.2-1.2l-.3,5.2h-1Z" transform="translate(1 1)" fill="currentcolor"/><path d="M9.3,17h.8l1.6,7.5h-1L10.4,23H8.9l-.3,1.5h-1Zm1,5.2L10,21c-.1-.8-.3-1.7-.4-2.6a6.75,6.75,0,0,1-.2,1.4l-.3,1.5-.2,1h1.4Z" transform="translate(1 1)" fill="currentcolor"/><path d="M11.5,17h3.3v.9H13.7v6.7h-1V17.9H11.5Z" transform="translate(1 1)" fill="currentcolor"/><path d="M14.8,17h3.3v.9H17v6.7H16V17.9H14.8Z" transform="translate(1 1)" fill="currentcolor"/><path d="M18.7,17h2.7v.9H19.7v2.4h1.5v.9H19.7v2.6h1.7v.9H18.7Z" transform="translate(1 1)" fill="currentcolor"/><path d="M22.3,17h1.3c.6,0,1,.1,1.2.4a2.35,2.35,0,0,1,.5,1.6,2.5,2.5,0,0,1-.3,1.3,1.24,1.24,0,0,1-.8.6l1.4,3.7h-1l-1.4-3.7v3.7h-1V17Zm1,3.3c.4,0,.7-.1.8-.3s.2-.5.2-.9a1.27,1.27,0,0,0-.1-.6c-.1-.2-.1-.3-.2-.4s-.2-.2-.3-.2-.3-.1-.4-.1h-.2v2.5Z" transform="translate(1 1)" fill="currentcolor"/></svg> \ No newline at end of file diff --git a/docs/public/assets/frontmatter-preview.png b/docs/public/assets/frontmatter-preview.png new file mode 100644 index 00000000..dd81fc97 Binary files /dev/null and b/docs/public/assets/frontmatter-preview.png differ diff --git a/docs/public/assets/logos/11ty.svg b/docs/public/assets/logos/11ty.svg new file mode 100644 index 00000000..778e1b2b --- /dev/null +++ b/docs/public/assets/logos/11ty.svg @@ -0,0 +1,3 @@ +<svg width="50" height="46" viewBox="0 0 50 46" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M3.38002 9.89186C3.3808 9.91356 3.38122 9.9369 3.38122 9.96196V37.0208C3.38122 37.5608 3.42451 38.0201 3.53782 38.3609C3.64668 38.6883 3.89786 39.0973 4.40544 39.0973H7.00372C7.50641 39.0973 7.76869 38.7061 7.88634 38.367C8.00552 38.0236 8.05072 37.5616 8.05072 37.0208V5.79726C8.05072 5.44514 8.01257 5.11068 7.89079 4.84665C7.82699 4.70834 7.73118 4.5696 7.58717 4.46553C7.43798 4.35771 7.26705 4.30902 7.09488 4.30902C6.9882 4.30902 6.83619 4.33777 6.69749 4.36641L6.68238 4.36953L6.6675 4.37357L1.48035 5.78278C1.18634 5.85182 0.940519 6.0207 0.780531 6.2864C0.628919 6.53819 0.57782 6.83745 0.57782 7.13843V8.9502C0.57782 9.31462 0.610919 9.67887 0.751485 9.94008L0.767454 9.96976L0.787261 9.99702C0.883595 10.1296 1.016 10.2405 1.18585 10.3023C1.34855 10.3616 1.51245 10.364 1.66055 10.3377C1.66822 10.3365 1.67436 10.3353 1.67784 10.3346C1.68664 10.3329 1.69449 10.3312 1.69935 10.3301C1.70984 10.3278 1.72186 10.3249 1.73383 10.322C1.75847 10.3159 1.79264 10.3073 1.83535 10.2964C1.92124 10.2745 2.0472 10.2419 2.21266 10.1987C2.4893 10.1265 2.87848 10.0242 3.38002 9.89186ZM14.776 9.89186C14.7768 9.91356 14.7772 9.9369 14.7772 9.96196V37.0208C14.7772 37.5608 14.8205 38.0201 14.9338 38.3609C15.0426 38.6883 15.2938 39.0973 15.8014 39.0973H18.3997C18.9024 39.0973 19.1646 38.7061 19.2823 38.367C19.4015 38.0236 19.4467 37.5616 19.4467 37.0208V5.79726C19.4467 5.44514 19.4085 5.11068 19.2867 4.84665C19.2229 4.70834 19.1271 4.5696 18.9831 4.46553C18.8339 4.35771 18.663 4.30902 18.4908 4.30902C18.3842 4.30902 18.2321 4.33777 18.0934 4.36641L18.0783 4.36953L18.0635 4.37357L12.8763 5.78278C12.5823 5.85182 12.3365 6.0207 12.1765 6.2864C12.0249 6.53819 11.9738 6.83745 11.9738 7.13843V8.9502C11.9738 9.31462 12.0069 9.67887 12.1474 9.94008L12.1634 9.96976L12.1832 9.99702C12.2796 10.1296 12.412 10.2405 12.5818 10.3023C12.7445 10.3616 12.9084 10.364 13.0565 10.3377C13.0642 10.3365 13.0703 10.3353 13.0738 10.3346C13.0826 10.3329 13.0905 10.3312 13.0953 10.3301C13.1058 10.3278 13.1178 10.3249 13.1298 10.322C13.1544 10.3159 13.1886 10.3073 13.2313 10.2964C13.3172 10.2745 13.4432 10.2419 13.6086 10.1987C13.8853 10.1265 14.2744 10.0242 14.776 9.89186ZM29.3744 38.9873L29.3828 38.9895L29.3913 38.9913C29.8607 39.0952 30.3922 39.1443 30.9808 39.1443H33.1232C33.4485 39.1443 33.7743 39.0413 34.0044 38.7628C34.2195 38.5025 34.2842 38.1673 34.2842 37.8443V36.5973C34.2842 36.3004 34.221 35.9845 34.0073 35.7393C33.7821 35.481 33.4702 35.3914 33.1688 35.3914H31.5962C31.2292 35.3914 30.9646 35.3214 30.775 35.2129C30.7267 35.1757 30.6462 35.0889 30.5469 34.9089C30.4434 34.721 30.3359 34.4618 30.2283 34.1219C30.0364 33.4683 29.931 32.5059 29.931 31.209V18.3914H32.6446C32.9795 18.3914 33.2827 18.2485 33.4749 17.9509C33.5741 17.7972 33.6231 17.6159 33.6507 17.4498C33.6795 17.2761 33.6916 17.076 33.6916 16.8561V15.962C33.6916 15.742 33.6795 15.5419 33.6507 15.3683C33.6231 15.2022 33.5741 15.0209 33.4749 14.8672C33.2827 14.5695 32.9795 14.4267 32.6446 14.4267H29.9354C29.9326 14.3884 29.931 14.3435 29.931 14.2914V5.96196C29.931 5.71295 29.919 5.49092 29.8916 5.30183C29.8659 5.12534 29.8214 4.93731 29.7319 4.7789C29.6541 4.63443 29.5434 4.50054 29.3901 4.40379C29.2319 4.30404 29.0571 4.26196 28.884 4.26196H27.2885C27.0998 4.26196 26.9156 4.31582 26.7553 4.43143C26.6004 4.54313 26.4941 4.69325 26.4209 4.8475C26.2808 5.14259 26.2274 5.52542 26.2189 5.94545L25.8318 14.2681L25.8318 14.2681L25.8316 14.2734C25.8295 14.3324 25.8259 14.3833 25.8214 14.4267H24.6219C24.4487 14.4267 24.2739 14.4687 24.1158 14.5685C23.9595 14.6671 23.8475 14.8043 23.7695 14.9519C23.6213 15.2324 23.5749 15.5891 23.5749 15.962V16.8561C23.5749 17.2289 23.6213 17.5857 23.7695 17.8661C23.8475 18.0138 23.9595 18.1509 24.1158 18.2495C24.2739 18.3493 24.4487 18.3914 24.6219 18.3914H25.8313V31.209C25.8313 32.4671 25.9083 33.5705 26.066 34.5149L26.0659 34.5149L26.0677 34.5244C26.2392 35.4418 26.4619 36.2086 26.7449 36.8101L26.7486 36.8178L26.7524 36.8254C27.0544 37.4143 27.4412 37.8994 27.9193 38.265L27.9192 38.2651L27.9262 38.2703C28.393 38.6144 28.8758 38.8586 29.3744 38.9873ZM40.6086 40.6306L40.6085 40.6305L40.6048 40.6381C40.4439 40.9704 40.293 41.1823 40.1635 41.3053C40.0397 41.4229 39.9595 41.4384 39.9152 41.4384C39.8164 41.4384 39.5565 41.3909 39.0787 41.2477C38.842 41.1768 38.655 41.1224 38.52 41.0855C38.4529 41.0672 38.3946 41.052 38.3475 41.0411C38.3245 41.0358 38.2403 41.0149 38.1603 41.0149C37.67 41.0149 37.4203 41.4002 37.3113 41.7171C37.2002 42.0403 37.1588 42.4723 37.1588 42.9737C37.1588 43.1982 37.1688 43.3987 37.1918 43.5698C37.2136 43.7317 37.252 43.9081 37.3325 44.0577L37.3364 44.0649L37.3405 44.072C37.8432 44.937 38.8739 45.262 40.1432 45.262H40.4394H40.4505L40.4615 45.2615C41.6907 45.2071 42.6811 44.6338 43.4023 43.5891C44.1238 42.5656 44.6761 40.7917 45.1023 38.3572C45.1025 38.3562 45.1027 38.3551 45.1029 38.354L49.2043 16.5013L49.2065 16.4895L49.2082 16.4776C49.2311 16.3122 49.2485 16.1825 49.2603 16.0893L49.2607 16.0861C49.2696 16.0153 49.2813 15.9228 49.2813 15.8678C49.2813 15.5348 49.2492 15.2203 49.1468 14.9716C49.0936 14.8425 49.0107 14.7044 48.878 14.5969C48.7371 14.4828 48.5685 14.4267 48.3938 14.4267H46.844C46.4292 14.4267 46.1233 14.6622 45.9315 14.9802C45.7548 15.2732 45.6542 15.6615 45.5974 16.0982L43.1258 30.1115L40.1108 16.0122C40.0451 15.5958 39.9334 15.2222 39.7422 14.9402C39.5329 14.6315 39.2198 14.4267 38.8212 14.4267H36.656C36.4826 14.4267 36.3176 14.4855 36.1829 14.5999C36.0574 14.7064 35.9817 14.8406 35.9342 14.9616C35.8424 15.1954 35.8141 15.4889 35.8141 15.7973C35.8141 15.9567 35.8329 16.1555 35.8644 16.3834L35.868 16.4096L35.8744 16.4352L40.6597 35.7489C40.9661 37.0779 41.1018 37.881 41.1018 38.2208C41.1018 39.1991 40.9294 39.9957 40.6086 40.6306Z" fill="#222222" stroke="#222222"/> +</svg> diff --git a/docs/public/assets/logos/docusaurus.svg b/docs/public/assets/logos/docusaurus.svg new file mode 100644 index 00000000..f7f324fe --- /dev/null +++ b/docs/public/assets/logos/docusaurus.svg @@ -0,0 +1 @@ +<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path d="M4.883.09v1.08a1 1 0 01-1 1H1a1 1 0 01-1-1V.09h4.883z" id="a"/><path d="M4.883.09v1.08a1 1 0 01-1 1H1a1 1 0 01-1-1V.09h4.883z" id="b"/></defs><g fill="none" fill-rule="evenodd"><path fill="#FFF" d="M99 52h84v34H99z"/><path d="M23 163c-7.398 0-13.843-4.027-17.303-10A19.886 19.886 0 003 163c0 11.046 8.954 20 20 20h20v-20H23z" fill="#3ECC5F"/><path d="M112.98 57.376L183 53V43c0-11.046-8.954-20-20-20H73l-2.5-4.33c-1.112-1.925-3.889-1.925-5 0L63 23l-2.5-4.33c-1.111-1.925-3.889-1.925-5 0L53 23l-2.5-4.33c-1.111-1.925-3.889-1.925-5 0L43 23c-.022 0-.042.003-.065.003l-4.142-4.141c-1.57-1.571-4.252-.853-4.828 1.294l-1.369 5.104-5.192-1.392c-2.148-.575-4.111 1.389-3.535 3.536l1.39 5.193-5.102 1.367c-2.148.576-2.867 3.259-1.296 4.83l4.142 4.142c0 .021-.003.042-.003.064l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 53l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 63l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 73l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 83l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 93l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 103l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 113l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 123l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 133l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 143l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 153l-4.33 2.5c-1.925 1.111-1.925 3.889 0 5L23 163c0 11.046 8.954 20 20 20h120c11.046 0 20-8.954 20-20V83l-70.02-4.376A10.645 10.645 0 01103 68c0-5.621 4.37-10.273 9.98-10.624" fill="#3ECC5F"/><path fill="#3ECC5F" d="M143 183h30v-40h-30z"/><path d="M193 158c-.219 0-.428.037-.639.064-.038-.15-.074-.301-.116-.451A5 5 0 00190.32 148a4.96 4.96 0 00-3.016 1.036 26.531 26.531 0 00-.335-.336 4.955 4.955 0 001.011-2.987 5 5 0 00-9.599-1.959c-.148-.042-.297-.077-.445-.115.027-.211.064-.42.064-.639a5 5 0 00-5-5 5 5 0 00-5 5c0 .219.037.428.064.639-.148.038-.297.073-.445.115a4.998 4.998 0 00-9.599 1.959c0 1.125.384 2.151 1.011 2.987-3.717 3.632-6.031 8.693-6.031 14.3 0 11.046 8.954 20 20 20 9.339 0 17.16-6.41 19.361-15.064.211.027.42.064.639.064a5 5 0 005-5 5 5 0 00-5-5" fill="#44D860"/><path fill="#3ECC5F" d="M153 123h30v-20h-30z"/><path d="M193 115.5a2.5 2.5 0 100-5c-.109 0-.214.019-.319.032-.02-.075-.037-.15-.058-.225a2.501 2.501 0 00-.963-4.807c-.569 0-1.088.197-1.508.518a6.653 6.653 0 00-.168-.168c.314-.417.506-.931.506-1.494a2.5 2.5 0 00-4.8-.979A9.987 9.987 0 00183 103c-5.522 0-10 4.478-10 10s4.478 10 10 10c.934 0 1.833-.138 2.69-.377a2.5 2.5 0 004.8-.979c0-.563-.192-1.077-.506-1.494.057-.055.113-.111.168-.168.42.321.939.518 1.508.518a2.5 2.5 0 00.963-4.807c.021-.074.038-.15.058-.225.105.013.21.032.319.032" fill="#44D860"/><path d="M63 55.5a2.5 2.5 0 01-2.5-2.5c0-4.136-3.364-7.5-7.5-7.5s-7.5 3.364-7.5 7.5a2.5 2.5 0 11-5 0c0-6.893 5.607-12.5 12.5-12.5S65.5 46.107 65.5 53a2.5 2.5 0 01-2.5 2.5" fill="#000"/><path d="M103 183h60c11.046 0 20-8.954 20-20V93h-60c-11.046 0-20 8.954-20 20v70z" fill="#FFFF50"/><path d="M168.02 124h-50.04a1 1 0 110-2h50.04a1 1 0 110 2m0 20h-50.04a1 1 0 110-2h50.04a1 1 0 110 2m0 20h-50.04a1 1 0 110-2h50.04a1 1 0 110 2m0-49.814h-50.04a1 1 0 110-2h50.04a1 1 0 110 2m0 19.814h-50.04a1 1 0 110-2h50.04a1 1 0 110 2m0 20h-50.04a1 1 0 110-2h50.04a1 1 0 110 2M183 61.611c-.012 0-.022-.006-.034-.005-3.09.105-4.552 3.196-5.842 5.923-1.346 2.85-2.387 4.703-4.093 4.647-1.889-.068-2.969-2.202-4.113-4.46-1.314-2.594-2.814-5.536-5.963-5.426-3.046.104-4.513 2.794-5.807 5.167-1.377 2.528-2.314 4.065-4.121 3.994-1.927-.07-2.951-1.805-4.136-3.813-1.321-2.236-2.848-4.75-5.936-4.664-2.994.103-4.465 2.385-5.763 4.4-1.373 2.13-2.335 3.428-4.165 3.351-1.973-.07-2.992-1.51-4.171-3.177-1.324-1.873-2.816-3.993-5.895-3.89-2.928.1-4.399 1.97-5.696 3.618-1.232 1.564-2.194 2.802-4.229 2.724a1 1 0 00-.072 2c3.017.101 4.545-1.8 5.872-3.487 1.177-1.496 2.193-2.787 4.193-2.855 1.926-.082 2.829 1.115 4.195 3.045 1.297 1.834 2.769 3.914 5.731 4.021 3.103.104 4.596-2.215 5.918-4.267 1.182-1.834 2.202-3.417 4.15-3.484 1.793-.067 2.769 1.35 4.145 3.681 1.297 2.197 2.766 4.686 5.787 4.796 3.125.108 4.634-2.62 5.949-5.035 1.139-2.088 2.214-4.06 4.119-4.126 1.793-.042 2.728 1.595 4.111 4.33 1.292 2.553 2.757 5.445 5.825 5.556l.169.003c3.064 0 4.518-3.075 5.805-5.794 1.139-2.41 2.217-4.68 4.067-4.773v-2z" fill="#000"/><path fill="#3ECC5F" d="M83 183h40v-40H83z"/><g transform="rotate(-15 433.487 -340.892)"><rect fill="#D8D8D8" x=".046" y=".014" width="84.522" height="33.367" rx="2"/><g transform="translate(1 20.75)" fill="#4A4A4A"><rect x="15.818" y=".339" width="4.883" height="4.883" rx="1"/><rect x="21.605" y=".339" width="4.883" height="4.883" rx="1"/><rect x="27.392" y=".339" width="4.883" height="4.883" rx="1"/><rect x="33.179" y=".339" width="4.883" height="4.883" rx="1"/><rect x="38.966" y=".339" width="4.883" height="4.883" rx="1"/><rect x="44.753" y=".339" width="4.883" height="4.883" rx="1"/><rect x="50.54" y=".339" width="4.883" height="4.883" rx="1"/><rect x="56.327" y=".339" width="4.883" height="4.883" rx="1"/><rect x="62.114" y=".339" width="4.883" height="4.883" rx="1"/><path d="M1.447.34h12.286a1 1 0 011 1v2.882a1 1 0 01-1 1H1.447a1 1 0 01-1-1V1.339a1 1 0 011-1zm67.634 0h12.287a1 1 0 011 1v2.882a1 1 0 01-1 1H69.08a1 1 0 01-1-1V1.339a1 1 0 011-1z"/></g><g transform="translate(1 9)" fill="#4A4A4A"><path d="M1.447.404h4.69a1 1 0 011 1v2.882a1 1 0 01-1 1h-4.69a1 1 0 01-1-1V1.404a1 1 0 011-1z"/><rect x="8.042" y=".404" width="4.883" height="4.883" rx="1"/><rect x="13.829" y=".404" width="4.883" height="4.883" rx="1"/><rect x="19.616" y=".404" width="4.883" height="4.883" rx="1"/><rect x="25.403" y=".404" width="4.883" height="4.883" rx="1"/><rect x="31.19" y=".404" width="4.883" height="4.883" rx="1"/><rect x="36.977" y=".404" width="4.883" height="4.883" rx="1"/><rect x="42.764" y=".404" width="4.883" height="4.883" rx="1"/><rect x="48.551" y=".404" width="4.883" height="4.883" rx="1"/><rect x="54.337" y=".404" width="4.883" height="4.883" rx="1"/><rect x="60.124" y=".404" width="4.883" height="4.883" rx="1"/><rect x="65.911" y=".404" width="4.883" height="4.883" rx="1"/><rect x="71.698" y=".404" width="4.883" height="4.883" rx="1"/><rect x="77.485" y=".404" width="4.883" height="4.883" rx="1"/></g><g transform="rotate(-180 41.684 4.375)" fill="#4A4A4A"><path d="M1 0h4.691a1 1 0 011 1v2.883a1 1 0 01-1 1H1a1 1 0 01-1-1V1a1 1 0 011-1z"/><rect x="7.595" width="4.883" height="4.883" rx="1"/><rect x="13.382" width="4.883" height="4.883" rx="1"/><rect x="19.169" width="4.883" height="4.883" rx="1"/><rect x="24.956" width="4.883" height="4.883" rx="1"/><rect x="30.743" width="4.883" height="4.883" rx="1"/><rect x="36.53" width="4.883" height="4.883" rx="1"/><rect x="42.317" width="4.883" height="4.883" rx="1"/><rect x="48.104" width="4.883" height="4.883" rx="1"/><rect x="53.891" width="4.883" height="4.883" rx="1"/><rect x="59.678" width="4.883" height="4.883" rx="1"/><rect x="65.465" width="4.883" height="4.883" rx="1"/><rect x="71.252" width="4.883" height="4.883" rx="1"/><rect x="77.038" width="4.883" height="4.883" rx="1"/><rect x="7.595" width="4.883" height="4.883" rx="1"/><rect x="13.382" width="4.883" height="4.883" rx="1"/><rect x="19.169" width="4.883" height="4.883" rx="1"/><rect x="24.956" width="4.883" height="4.883" rx="1"/><rect x="30.743" width="4.883" height="4.883" rx="1"/><rect x="36.53" width="4.883" height="4.883" rx="1"/><rect x="42.317" width="4.883" height="4.883" rx="1"/><rect x="48.104" width="4.883" height="4.883" rx="1"/><rect x="53.891" width="4.883" height="4.883" rx="1"/><rect x="59.678" width="4.883" height="4.883" rx="1"/><rect x="65.465" width="4.883" height="4.883" rx="1"/><rect x="71.252" width="4.883" height="4.883" rx="1"/><rect x="77.038" width="4.883" height="4.883" rx="1"/></g><g fill="#4A4A4A"><path d="M2.447 15.19h6.68a1 1 0 011 1v2.883a1 1 0 01-1 1h-6.68a1 1 0 01-1-1v-2.882a1 1 0 011-1z"/><g transform="translate(11.212 15.19)"><rect width="4.883" height="4.883" rx="1"/><rect x="5.787" width="4.883" height="4.883" rx="1"/><rect x="11.574" width="4.883" height="4.883" rx="1"/><rect x="17.361" width="4.883" height="4.883" rx="1"/><rect x="23.148" width="4.883" height="4.883" rx="1"/><rect x="28.935" width="4.883" height="4.883" rx="1"/><rect x="34.722" width="4.883" height="4.883" rx="1"/><rect x="40.508" width="4.883" height="4.883" rx="1"/><rect x="46.295" width="4.883" height="4.883" rx="1"/><rect x="52.082" width="4.883" height="4.883" rx="1"/><rect x="57.869" width="4.883" height="4.883" rx="1"/></g><path d="M76.05 15.19h6.318a1 1 0 011 1v2.883a1 1 0 01-1 1h-6.319a1 1 0 01-1-1v-2.882a1 1 0 011-1z"/></g><g transform="translate(1 26)" fill="#4A4A4A"><rect x=".447" y="1.126" width="4.883" height="4.883" rx="1"/><rect x="6.234" y="1.126" width="4.883" height="4.883" rx="1"/><rect x="12.021" y="1.126" width="4.883" height="4.883" rx="1"/><rect x="17.808" y="1.126" width="4.883" height="4.883" rx="1"/><path d="M24.594 1.126h27.84a1 1 0 011 1V5.01a1 1 0 01-1 1h-27.84a1 1 0 01-1-1V2.126a1 1 0 011-1zm30.743 0h3.607a1 1 0 011 1V5.01a1 1 0 01-1 1h-3.607a1 1 0 01-1-1V2.126a1 1 0 011-1z"/><rect x="60.848" y="1.126" width="4.883" height="4.883" rx="1"/><rect x="66.635" y="1.126" width="4.883" height="4.883" rx="1"/><rect x="77.485" y="1.126" width="4.883" height="4.883" rx="1"/><use xlink:href="#a" transform="rotate(-180 38.471 1.648)"/><use xlink:href="#b" transform="translate(72.06 3.839)"/></g><rect fill="#4A4A4A" x="1.808" y="1.085" width="81.379" height="2.17" rx="1.085"/><rect fill="#D8D8D8" opacity=".136" x="3.798" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="10.042" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="14.846" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="19.649" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="24.453" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="30.457" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="35.26" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="40.064" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="44.867" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="50.872" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="55.675" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="60.479" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="66.483" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="71.286" y="1.447" width="4.563" height="1.447" rx=".723"/><rect fill="#D8D8D8" opacity=".136" x="76.09" y="1.447" width="4.563" height="1.447" rx=".723"/></g><path d="M143 158c-.219 0-.428.037-.639.064-.038-.15-.074-.301-.116-.451A5 5 0 00140.32 148a4.96 4.96 0 00-3.016 1.036 26.531 26.531 0 00-.335-.336 4.955 4.955 0 001.011-2.987 5 5 0 00-9.599-1.959c-.148-.042-.297-.077-.445-.115.027-.211.064-.42.064-.639a5 5 0 00-5-5 5 5 0 00-5 5c0 .219.037.428.064.639-.148.038-.297.073-.445.115a4.998 4.998 0 00-9.599 1.959c0 1.125.384 2.151 1.011 2.987-3.717 3.632-6.031 8.693-6.031 14.3 0 11.046 8.954 20 20 20 9.339 0 17.16-6.41 19.361-15.064.211.027.42.064.639.064a5 5 0 005-5 5 5 0 00-5-5" fill="#44D860"/><path fill="#3ECC5F" d="M83 123h40v-20H83z"/><path d="M133 115.5a2.5 2.5 0 100-5c-.109 0-.214.019-.319.032-.02-.075-.037-.15-.058-.225a2.501 2.501 0 00-.963-4.807c-.569 0-1.088.197-1.508.518a6.653 6.653 0 00-.168-.168c.314-.417.506-.931.506-1.494a2.5 2.5 0 00-4.8-.979A9.987 9.987 0 00123 103c-5.522 0-10 4.478-10 10s4.478 10 10 10c.934 0 1.833-.138 2.69-.377a2.5 2.5 0 004.8-.979c0-.563-.192-1.077-.506-1.494.057-.055.113-.111.168-.168.42.321.939.518 1.508.518a2.5 2.5 0 00.963-4.807c.021-.074.038-.15.058-.225.105.013.21.032.319.032" fill="#44D860"/><path d="M143 41.75c-.16 0-.33-.02-.49-.05a2.52 2.52 0 01-.47-.14c-.15-.06-.29-.14-.431-.23-.13-.09-.259-.2-.38-.31-.109-.12-.219-.24-.309-.38s-.17-.28-.231-.43a2.619 2.619 0 01-.189-.96c0-.16.02-.33.05-.49.03-.16.08-.31.139-.47.061-.15.141-.29.231-.43.09-.13.2-.26.309-.38.121-.11.25-.22.38-.31.141-.09.281-.17.431-.23.149-.06.31-.11.47-.14.32-.07.65-.07.98 0 .159.03.32.08.47.14.149.06.29.14.43.23.13.09.259.2.38.31.11.12.22.25.31.38.09.14.17.28.23.43.06.16.11.31.14.47.029.16.05.33.05.49 0 .66-.271 1.31-.73 1.77-.121.11-.25.22-.38.31-.14.09-.281.17-.43.23a2.565 2.565 0 01-.96.19m20-1.25c-.66 0-1.3-.27-1.771-.73a3.802 3.802 0 01-.309-.38c-.09-.14-.17-.28-.231-.43a2.619 2.619 0 01-.189-.96c0-.66.27-1.3.729-1.77.121-.11.25-.22.38-.31.141-.09.281-.17.431-.23.149-.06.31-.11.47-.14.32-.07.66-.07.98 0 .159.03.32.08.47.14.149.06.29.14.43.23.13.09.259.2.38.31.459.47.73 1.11.73 1.77 0 .16-.021.33-.05.49-.03.16-.08.32-.14.47-.07.15-.14.29-.23.43-.09.13-.2.26-.31.38-.121.11-.25.22-.38.31-.14.09-.281.17-.43.23a2.565 2.565 0 01-.96.19" fill="#000"/></g></svg> \ No newline at end of file diff --git a/docs/public/assets/logos/gatsby.svg b/docs/public/assets/logos/gatsby.svg new file mode 100644 index 00000000..60024761 --- /dev/null +++ b/docs/public/assets/logos/gatsby.svg @@ -0,0 +1,12 @@ +<svg width="151" height="40" viewBox="0 0 151 40" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0)"> +<path d="M89.6028 17.1428H93.5915V31.4285H89.6028V29.5713C88.1783 31.7142 86.3264 31.857 85.1868 31.857C80.7708 31.857 77.9217 28.4285 77.9217 24.2856C77.9217 19.9999 80.7708 16.7142 84.9019 16.7142C86.0415 16.7142 88.1783 16.857 89.4604 18.9999V17.1428H89.6028ZM82.1953 24.2856C82.1953 26.5713 83.7623 28.2856 86.184 28.2856C88.4632 28.2856 90.1726 26.5713 90.1726 24.2856C90.1726 21.9999 88.6057 20.2856 86.184 20.2856C83.9047 20.2856 82.1953 21.9999 82.1953 24.2856ZM101.426 20.5713V31.4285H97.4377V20.5713H95.8708V17.1428H97.4377V12.2856H101.426V17.1428H104.133V20.5713H101.426ZM113.535 20.5713C112.538 19.7142 111.683 19.5713 111.256 19.5713C110.258 19.5713 109.689 19.9999 109.689 20.7142C109.689 21.1428 109.831 21.5713 110.971 21.9999L111.968 22.2856C113.108 22.7142 114.817 23.1428 115.529 24.2856C115.957 24.857 116.242 25.7142 116.242 26.7142C116.242 27.9999 115.814 29.2856 114.675 30.2856C113.535 31.2856 112.11 31.857 110.401 31.857C107.409 31.857 105.842 30.4285 104.845 29.4285L106.982 26.9999C107.837 27.857 108.976 28.7142 110.116 28.7142C111.256 28.7142 112.11 28.1428 112.11 27.1428C112.11 26.2856 111.398 25.857 110.828 25.7142L109.974 25.4285C108.976 24.9999 107.837 24.5713 106.982 23.7142C106.27 22.9999 105.842 22.1428 105.842 20.9999C105.842 19.5713 106.555 18.4285 107.267 17.7142C108.407 16.857 109.831 16.7142 110.971 16.7142C111.968 16.7142 113.677 16.857 115.529 18.2856L113.535 20.5713ZM122.225 18.9999C123.649 16.9999 125.643 16.7142 126.783 16.7142C130.914 16.7142 133.763 19.9999 133.763 24.2856C133.763 28.5713 130.914 31.857 126.641 31.857C125.786 31.857 123.649 31.7142 122.082 29.5713V31.4285H118.236V7.42847H122.225V18.9999ZM121.797 24.2856C121.797 26.5713 123.364 28.2856 125.786 28.2856C128.065 28.2856 129.775 26.5713 129.775 24.2856C129.775 21.9999 128.208 20.2856 125.786 20.2856C123.364 20.2856 121.797 21.9999 121.797 24.2856ZM140.316 29.2856L133.478 17.1428H138.179L142.595 25.2856L146.584 17.1428H151.142L139.746 38.9999H135.188L140.316 29.2856ZM76.9245 19.5713H66.9528V23.5713H72.2236C71.3689 26.2856 69.3745 28.1428 65.6708 28.1428C61.5396 28.1428 58.5481 24.7142 58.5481 20.5713C58.5481 16.4285 61.3972 12.857 65.5283 12.857C67.8076 12.857 70.0868 13.9999 71.5113 15.857L74.7877 13.7142C72.6509 10.7142 69.2321 8.9999 65.5283 8.9999C59.2604 8.9999 54.1321 14.1428 54.1321 20.5713C54.1321 26.9999 58.9755 32.1428 65.5283 32.1428C72.0811 32.1428 76.9245 26.9999 76.9245 20.5713C77.067 20.1428 76.9245 19.857 76.9245 19.5713Z" fill="black"/> +<path d="M35.6132 19.9999H25.6415V22.8571H32.4792C31.482 27.1428 28.3481 30.7142 24.217 32.1428L7.83488 15.7142C9.54431 10.7142 14.3877 7.14279 19.9434 7.14279C24.217 7.14279 28.0632 9.28565 30.4849 12.5714L32.6217 10.7142C29.7726 6.85707 25.2141 4.28564 19.9434 4.28564C12.5358 4.28564 6.2679 9.57136 4.70092 16.5714L23.5047 35.4285C30.3424 33.7142 35.6132 27.4285 35.6132 19.9999ZM4.27356 20.1428C4.27356 24.1428 5.84054 27.9999 8.83205 30.9999C11.8236 33.9999 15.8122 35.5714 19.6585 35.5714L4.27356 20.1428Z" fill="white"/> +<path d="M19.9434 0C8.97453 0 0 9 0 20C0 31 8.97453 40 19.9434 40C30.9123 40 39.8868 31 39.8868 20C39.8868 9 30.9123 0 19.9434 0ZM8.83208 31.1429C5.84057 28.1429 4.27358 24.1429 4.27358 20.2857L19.8009 35.7143C15.8123 35.5714 11.8236 34.1429 8.83208 31.1429ZM23.3623 35.2857L4.70094 16.5714C6.26792 9.57143 12.5358 4.28571 19.9434 4.28571C25.2141 4.28571 29.7726 6.85714 32.6217 10.7143L30.4849 12.5714C28.0632 9.28572 24.217 7.14286 19.9434 7.14286C14.3877 7.14286 9.68679 10.7143 7.83491 15.7143L24.217 32.1429C28.3481 30.7143 31.4821 27.1429 32.4792 22.8571H25.6415V20H35.6132C35.6132 27.4286 30.3425 33.7143 23.3623 35.2857Z" fill="#663399"/> +</g> +<defs> +<clipPath id="clip0"> +<rect width="151" height="40" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/docs/public/assets/logos/hugo.svg b/docs/public/assets/logos/hugo.svg new file mode 100644 index 00000000..d8616424 --- /dev/null +++ b/docs/public/assets/logos/hugo.svg @@ -0,0 +1,14 @@ +<svg width="154" height="41" viewBox="0 0 154 41" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M34.3741 25.8246V13.301C34.3741 11.6725 33.5103 10.1658 32.1044 9.34075C29.0868 7.57029 23.7558 4.44232 20.491 2.5265C18.7666 1.51522 16.6248 1.53797 14.923 2.58592C12.0334 4.36528 7.52504 7.14138 4.61488 8.93376C2.85976 10.0145 1.79089 11.926 1.79089 13.985V26.8075C1.79089 28.8499 2.87617 30.7387 4.64155 31.7694L15.3836 38.0399C16.8115 38.8737 18.5748 38.8918 20.0201 38.088C23.157 36.3429 28.7126 33.2533 31.9131 31.473C33.4313 30.6279 34.3719 29.0288 34.3719 27.2935V25.8245L34.3741 25.8246Z" fill="#FF4088"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7707 0.401123H17.7991L17.8244 0.40143H17.9695L17.9948 0.402455H17.9979L18.0232 0.403479H18.026L18.0517 0.404504H18.0537L18.0793 0.405528H18.0824L18.107 0.406552H18.1101L18.1347 0.407577H18.1368L18.1624 0.408601H18.1655L18.1912 0.41065H18.1942L18.2189 0.412699H18.2209L18.2455 0.414747H18.2486L18.2742 0.416796H18.2763L18.3009 0.418845H18.304L18.3296 0.420894H18.3327L18.3584 0.422943H18.3614L18.3871 0.424991H18.3902L18.4148 0.42704H18.4179L18.4425 0.429089H18.4456L18.4712 0.431138H18.4743L18.4999 0.434211H18.503L18.5286 0.437284H18.5307L18.5553 0.440357H18.5584L18.583 0.44343H18.5861L18.6117 0.446504H18.6148L18.6405 0.449577H18.6425L18.6671 0.45265H18.6702L18.6958 0.455723H18.6989L18.7235 0.459821L18.7266 0.460845L18.7523 0.464943H18.7553L18.78 0.46904H18.782L18.8077 0.473138H18.8107L18.8354 0.477235H18.8384L18.8631 0.481333H18.8651L18.8907 0.48543H18.8938L18.9184 0.489528L18.9215 0.490552L18.9461 0.49465L18.9492 0.495674L18.9738 0.500796H18.9769L19.0015 0.504894H19.0046L19.0292 0.510016H19.0323L19.0579 0.515138H19.06L19.0846 0.52026H19.0877L19.1123 0.525382H19.1144L19.14 0.530504L19.1431 0.531528L19.1687 0.53665H19.1708L19.1954 0.542796L19.1985 0.543821L19.2231 0.549967H19.2262L19.2518 0.556113L19.2539 0.557138L19.2785 0.56226L19.2816 0.563284L19.3062 0.568406L19.3082 0.56943L19.3329 0.575577H19.3359L19.3606 0.581723L19.3636 0.582747L19.3883 0.588894L19.3903 0.589918L19.4159 0.596065L19.418 0.597089L19.4426 0.603235L19.4457 0.60426L19.4703 0.610406H19.4724L19.497 0.617577H19.5001L19.5257 0.623723L19.5288 0.624747L19.5534 0.630894H19.5565L19.5811 0.638065L19.5842 0.639089L19.6088 0.64626L19.6119 0.647284L19.6365 0.654455L19.6396 0.655479L19.6642 0.66265L19.6662 0.663674L19.6909 0.670845L19.6939 0.671869L19.7186 0.67904L19.7216 0.680065L19.7463 0.687235L19.7493 0.68826L19.7739 0.696455L19.776 0.697479L19.8006 0.705674H19.8037L19.8283 0.713869H19.8314L19.856 0.722065L19.8591 0.723089L19.8837 0.731284L19.8868 0.732308L19.9114 0.740504L19.9135 0.741528L19.9381 0.749723L19.9412 0.750748L19.9658 0.758943L19.9678 0.759967L19.9924 0.768162L19.9945 0.769186L20.0181 0.777382L20.0212 0.778406L20.0448 0.786601L20.0478 0.787625L20.0714 0.796845L20.0745 0.797869L20.0991 0.807089L20.1022 0.808113L20.1258 0.817333L20.1278 0.818357L20.1525 0.826552L20.1545 0.827577L20.1791 0.836796L20.1822 0.837821L20.2068 0.84704L20.2099 0.848064L20.2335 0.857284L20.2366 0.858308L20.2602 0.868552L20.2622 0.869577L20.2868 0.878796L20.2899 0.879821L20.3135 0.890064L20.3166 0.891089L20.3412 0.901333L20.3443 0.902357L20.3689 0.912601L20.371 0.913626L20.3956 0.923869L20.3976 0.924894L20.4212 0.935138L20.4233 0.936162L20.4469 0.946406L20.4489 0.94743L20.4735 0.957674L20.4756 0.958699L20.4992 0.968943L20.5023 0.969967L20.5258 0.980211L20.5289 0.981235L20.5525 0.991479L20.5546 0.992503L20.5782 1.00377L20.5812 1.0048L20.6048 1.01606L20.6079 1.01709L20.6315 1.02836L20.6336 1.02938L20.6571 1.04065L20.6592 1.04167L20.6828 1.05294L20.6859 1.05397L20.7095 1.06524L20.7125 1.06626L20.7361 1.07753L20.7392 1.07855L20.7628 1.08982L20.7649 1.09085L20.7885 1.10314L20.7905 1.10519L20.8141 1.11645L20.8161 1.11748L20.8387 1.12977L20.8418 1.1308L20.8654 1.14206L20.8674 1.14309L20.891 1.15538L20.8941 1.15641L20.9167 1.1687L20.9198 1.17075L20.9433 1.18304L20.9464 1.18406L20.97 1.19636L20.9721 1.19738L20.9946 1.20967L20.9977 1.21172L21.0213 1.22402L21.0234 1.22606L21.0459 1.23938L21.048 1.24143L21.0705 1.25475L21.0736 1.25577L21.0962 1.26909L21.0982 1.27011L21.1208 1.28343L21.1229 1.28548L21.1454 1.2988L21.1485 1.30084L21.17 1.31416H21.1721L32.7943 8.13353L32.8137 8.14479L32.8158 8.14684L32.8353 8.15811L32.8384 8.15914L32.8568 8.17143L32.8589 8.17348L32.8773 8.18475L32.8794 8.1868L32.8979 8.19806L32.8999 8.19909L32.9184 8.21036L32.9204 8.21138L32.9389 8.22265L32.9409 8.22367L32.9594 8.23494L32.9625 8.23597L32.9809 8.24826L32.983 8.24928L33.0015 8.26158L33.0045 8.2626L33.023 8.27387L33.0251 8.27489L33.0435 8.28719L33.0456 8.28923L33.064 8.30153L33.0661 8.30358L33.0835 8.31484L33.0866 8.31587L33.1051 8.32816L33.1071 8.32919L33.1256 8.34148L33.1276 8.3425L33.1451 8.3548L33.1471 8.35582L33.1646 8.36811L33.1666 8.36914L33.1841 8.38143L33.1861 8.38348L33.2035 8.39577L33.2056 8.39679L33.223 8.41011L33.2261 8.41216L33.2435 8.42445L33.2456 8.42548L33.263 8.43777L33.2651 8.4388L33.2825 8.45109L33.2846 8.45314L33.302 8.46543L33.3041 8.46645L33.3215 8.47875L33.3236 8.4808L33.341 8.49309L33.343 8.49514L33.3605 8.50845L33.3636 8.5105L33.38 8.52382L33.3831 8.52587L33.4005 8.53919L33.4036 8.54021L33.421 8.55353L33.4231 8.55558L33.4405 8.56889L33.4426 8.57094L33.459 8.58426L33.462 8.58631L33.4795 8.60065L33.4826 8.60372L33.5154 8.63036L33.5195 8.63343L33.5523 8.66109L33.5564 8.66416L33.5903 8.69182L33.5944 8.69489L33.6282 8.72255L33.6323 8.72563L33.6651 8.75328L33.6692 8.75738L33.7021 8.78504L33.7062 8.78811L33.738 8.8168L33.7421 8.81987L33.7739 8.84855L33.778 8.85162L33.8098 8.88133L33.8139 8.88441L33.8447 8.91309L33.8488 8.91616L33.8806 8.94587L33.8847 8.94997L33.9154 8.97967L33.9195 8.98377L33.9503 9.01348L33.9544 9.01758L33.9842 9.04728L33.9883 9.05138L34.018 9.08211L34.0221 9.08621L34.0519 9.11694L34.0549 9.12104L34.0847 9.15177L34.0888 9.15587L34.1175 9.1866L34.1216 9.1907L34.1503 9.22143L34.1544 9.22553L34.1832 9.25626L34.1873 9.26036L34.216 9.29211L34.2201 9.29621L34.2478 9.32899L34.2509 9.33309L34.2796 9.36484L34.2837 9.36894L34.3114 9.40172L34.3155 9.40582L34.3432 9.4386L34.3463 9.4427L34.374 9.47548L34.3781 9.47958L34.4047 9.51236L34.4078 9.51645L34.4345 9.54923L34.4386 9.55333L34.4653 9.58714L34.4683 9.59123L34.494 9.62504L34.4971 9.62914L34.5227 9.66294L34.5258 9.66704L34.5514 9.70084L34.5545 9.70597L34.5801 9.7408L34.5832 9.74489L34.6089 9.7787L34.6119 9.78382L34.6366 9.81865L34.6396 9.82275L34.6643 9.85758L34.6673 9.86167L34.692 9.8965L34.695 9.90162L34.7186 9.93645L34.7217 9.94158L34.7453 9.97743L34.7484 9.98255L34.7709 10.0174L34.774 10.0215L34.7966 10.0563L34.7997 10.0604L34.8233 10.0963L34.8263 10.1004L34.8489 10.1362L34.852 10.1413L34.8735 10.1772L34.8766 10.1823L34.8992 10.2182L34.9022 10.2233L34.9238 10.2591L34.9269 10.2643L34.9484 10.3011L34.9515 10.3052L34.972 10.3421L34.9751 10.3472L34.9956 10.3841L34.9987 10.3892L35.0192 10.4261L35.0223 10.4312L35.0428 10.4681L35.0448 10.4732L35.0653 10.5111L35.0674 10.5163L35.0869 10.5542L35.0889 10.5593L35.1084 10.5972L35.1115 10.6013L35.13 10.6402L35.132 10.6453L35.1515 10.6832L35.1536 10.6884L35.172 10.7263L35.1751 10.7314L35.1925 10.7703L35.1946 10.7754L35.212 10.8144L35.2141 10.8195L35.2315 10.8584L35.2336 10.8635L35.251 10.9025L35.2531 10.9076L35.2695 10.9465L35.2715 10.9516L35.2879 10.9906L35.29 10.9957L35.3054 11.0356L35.3074 11.0407L35.3228 11.0797L35.3249 11.0848L35.3403 11.1247L35.3423 11.1299L35.3577 11.1698L35.3597 11.1749L35.3751 11.2149L35.3772 11.22L35.3915 11.26L35.3936 11.2651L35.4069 11.305L35.409 11.3102L35.4223 11.3501L35.4244 11.3552L35.4377 11.3952L35.4398 11.4003L35.4531 11.4413L35.4541 11.4464L35.4664 11.4864L35.4685 11.4915L35.4808 11.5325L35.4818 11.5376L35.4941 11.5786L35.4962 11.5837L35.5085 11.6246L35.5105 11.6298L35.5218 11.6707L35.5239 11.6759L35.5352 11.7168L35.5362 11.722L35.5464 11.7629L35.5485 11.7691L35.5598 11.8111L35.5608 11.8162L35.5711 11.8582L35.5731 11.8633L35.5823 11.9053L35.5844 11.9105L35.5946 11.9525L35.5957 11.9586L35.6049 12.0006L35.6059 12.0057L35.6152 12.0477L35.6162 12.0528L35.6244 12.0948L35.6254 12.1L35.6336 12.142L35.6347 12.1471L35.6429 12.1891L35.6439 12.1942L35.6511 12.2372L35.6521 12.2424L35.6593 12.2844L35.6603 12.2905L35.6675 12.3335L35.6685 12.3397L35.6747 12.3827L35.6757 12.3888L35.6818 12.4308V12.4349L35.6849 12.4575V12.4595L35.687 12.481V12.4841L35.69 12.5056V12.5077L35.6931 12.5292V12.5323L35.6962 12.5538L35.6972 12.5568L35.7003 12.5784V12.5814L35.7024 12.6029L35.7034 12.605L35.7054 12.6265L35.7065 12.6296L35.7085 12.6511V12.6542L35.7106 12.6757L35.7116 12.6787L35.7136 12.7003L35.7147 12.7033L35.7167 12.7248V12.7279L35.7188 12.7494V12.7525L35.7208 12.774V12.7771L35.7229 12.7986V12.8017L35.7249 12.8232V12.8263L35.7259 12.8478V12.8508L35.727 12.8734V12.8765L35.729 12.899V12.901L35.7301 12.9226V12.9256L35.7311 12.9471V12.9502L35.7321 12.9717V12.9748L35.7331 12.9963V12.9994L35.7342 13.0219V13.025L35.7352 13.0465V13.0496L35.7362 13.0711V13.0731L35.7372 13.0946V27.3951L35.7362 27.4187V27.4484L35.7352 27.472V27.475L35.7342 27.4976V27.4996L35.7331 27.5232V27.5263L35.7321 27.5488V27.5508L35.7311 27.5734V27.5765L35.7301 27.599L35.729 27.6021L35.728 27.6246V27.6277L35.727 27.6502V27.6523L35.7259 27.6758V27.6789L35.7239 27.7025V27.7045L35.7218 27.7281V27.7311L35.7198 27.7537V27.7567L35.7188 27.7793V27.7824L35.7167 27.8049V27.808L35.7147 27.8305V27.8336L35.7126 27.8561V27.8592L35.7106 27.8817L35.7095 27.8838L35.7075 27.9073L35.7065 27.9104L35.7044 27.9329V27.936L35.7024 27.9585L35.7013 27.9616L35.6983 27.9842V27.9872L35.6952 28.0098V28.0118L35.6921 28.0344V28.0374L35.689 28.06L35.688 28.063L35.6849 28.0866L35.6839 28.0897L35.6808 28.1122L35.6798 28.1153L35.6767 28.1378V28.1409L35.6736 28.1634V28.1665L35.6706 28.189L35.6695 28.1921L35.6665 28.2146L35.6654 28.2177L35.6613 28.2403V28.2423L35.6582 28.2648V28.2669L35.6541 28.2894L35.6531 28.2925L35.65 28.315L35.649 28.3181L35.6459 28.3406V28.3427L35.6418 28.3652V28.3673L35.6377 28.3898V28.3919L35.6336 28.4144V28.4175L35.6295 28.439L35.6285 28.4421L35.6244 28.4636L35.6234 28.4666L35.6193 28.4892L35.6182 28.4923L35.6131 28.5148V28.5168L35.608 28.5394V28.5414L35.6039 28.5629V28.566L35.5988 28.5885V28.5906L35.5946 28.6131L35.5936 28.6152L35.5885 28.6367V28.6387L35.5834 28.6603V28.6633L35.5782 28.6848L35.5772 28.6879L35.5721 28.7094L35.5711 28.7125L35.5659 28.734L35.5649 28.7361L35.5598 28.7576L35.5587 28.7596L35.5536 28.7811L35.5526 28.7842L35.5464 28.8057L35.5454 28.8088L35.5403 28.8303L35.5393 28.8334L35.5331 28.8549V28.858L35.5269 28.8805L35.5259 28.8836L35.5198 28.9051V28.9082L35.5136 28.9297L35.5126 28.9327L35.5064 28.9543L35.5054 28.9573L35.4992 28.9799L35.4982 28.9819L35.4921 29.0034L35.491 29.0055L35.4849 29.027L35.4839 29.0301L35.4767 29.0516L35.4757 29.0546L35.4695 29.0762L35.4685 29.0782L35.4623 29.0997L35.4613 29.1028L35.4551 29.1243L35.4541 29.1264L35.4469 29.1479L35.4459 29.1509L35.4387 29.1725L35.4377 29.1755L35.4305 29.197L35.4295 29.2001L35.4223 29.2216L35.4213 29.2247L35.4141 29.2462L35.4131 29.2483L35.4059 29.2698L35.4049 29.2728L35.3977 29.2944L35.3967 29.2974L35.3895 29.3189L35.3885 29.321L35.3813 29.3425L35.3803 29.3456L35.3731 29.3671L35.3721 29.3702L35.3638 29.3906L35.3628 29.3937L35.3556 29.4142L35.3546 29.4173L35.3474 29.4378L35.3464 29.4408L35.3392 29.4624L35.3382 29.4654L35.33 29.4869L35.329 29.49L35.3208 29.5105L35.3197 29.5136L35.3115 29.5341L35.3105 29.5371L35.3023 29.5576L35.3013 29.5607L35.2931 29.5812L35.292 29.5843L35.2838 29.6047L35.2828 29.6078L35.2746 29.6283L35.2736 29.6304L35.2643 29.6508L35.2633 29.6539L35.2541 29.6754L35.2531 29.6785L35.2449 29.699L35.2438 29.7021L35.2346 29.7225L35.2336 29.7256L35.2243 29.7461L35.2233 29.7492L35.2141 29.7697L35.2131 29.7717L35.2038 29.7922L35.2028 29.7953L35.1936 29.8158L35.1925 29.8178L35.1833 29.8383L35.1823 29.8404L35.173 29.8608L35.172 29.8629L35.1628 29.8834L35.1618 29.8854L35.1515 29.9059L35.1505 29.908L35.1402 29.9274L35.1392 29.9305L35.13 29.951L35.1289 29.953L35.1187 29.9725L35.1177 29.9756L35.1084 29.9961L35.1074 29.9981L35.0971 30.0186L35.0961 30.0217L35.0859 30.0422L35.0848 30.0442L35.0746 30.0637L35.0736 30.0657L35.0633 30.0862L35.0623 30.0893L35.052 30.1098L35.051 30.1128L35.0407 30.1333L35.0387 30.1364L35.0284 30.1559L35.0274 30.1579L35.0171 30.1784L35.0161 30.1815L35.0058 30.202L35.0048 30.205L34.9935 30.2245L34.9915 30.2266L34.9802 30.246L34.9792 30.2481L34.9679 30.2675L34.9669 30.2696L34.9556 30.289L34.9546 30.2911L34.9433 30.3105L34.9422 30.3126L34.931 30.3321L34.9299 30.3351L34.9187 30.3546L34.9176 30.3566L34.9063 30.3761L34.9053 30.3792L34.894 30.3986L34.892 30.4007L34.8807 30.4202L34.8787 30.4222L34.8674 30.4417L34.8663 30.4437L34.8551 30.4632L34.854 30.4663L34.8417 30.4857L34.8407 30.4878L34.8294 30.5062L34.8284 30.5093L34.8171 30.5277L34.815 30.5298L34.8027 30.5492L34.8017 30.5523L34.7894 30.5707L34.7874 30.5728L34.775 30.5912L34.774 30.5933L34.7617 30.6127L34.7597 30.6158L34.7473 30.6343L34.7453 30.6363L34.733 30.6547L34.732 30.6568L34.7197 30.6763L34.7186 30.6783L34.7063 30.6967L34.7043 30.6988L34.6909 30.7172L34.6899 30.7193L34.6776 30.7377L34.6766 30.7398L34.6632 30.7582L34.6622 30.7603L34.6499 30.7787L34.6479 30.7807L34.6355 30.7992L34.6335 30.8012L34.6202 30.8197L34.6181 30.8217L34.6058 30.8402L34.6048 30.8422L34.5914 30.8606L34.5894 30.8637L34.5771 30.8822L34.575 30.8842L34.5617 30.9026L34.5596 30.9047L34.5463 30.9231L34.5442 30.9252L34.5309 30.9436L34.5289 30.9457L34.5155 30.9641L34.5145 30.9662L34.5012 30.9836L34.4991 30.9856L34.4858 31.003L34.4847 31.0051L34.4704 31.0225L34.4683 31.0245L34.455 31.042L34.454 31.044L34.4406 31.0625L34.4386 31.0645L34.4242 31.0829L34.4222 31.085L34.4078 31.1024L34.4058 31.1045L34.3914 31.1219L34.3904 31.1239L34.376 31.1413L34.374 31.1434L34.3596 31.1608L34.3576 31.1628L34.3432 31.1803L34.3411 31.1823L34.3268 31.1997L34.3247 31.2018L34.3104 31.2192L34.3093 31.2212L34.295 31.2386L34.2929 31.2407L34.2775 31.2581L34.2755 31.2602L34.2611 31.2776L34.2591 31.2796L34.2447 31.297L34.2427 31.2991L34.2283 31.3165L34.2262 31.3186L34.2119 31.336L34.2098 31.338L34.1955 31.3544L34.1934 31.3565L34.178 31.3739L34.176 31.3759L34.1616 31.3933L34.1596 31.3954L34.1442 31.4128L34.1421 31.4148L34.1278 31.4323L34.1257 31.4343L34.1103 31.4507L34.1083 31.4527L34.0929 31.4691L34.0908 31.4712L34.0755 31.4876L34.0734 31.4896L34.058 31.506L34.056 31.5081L34.0406 31.5245L34.0385 31.5265L34.0231 31.5429L34.0211 31.5449L34.0057 31.5613L34.0037 31.5634L33.9883 31.5798L33.9862 31.5818L33.9698 31.5982L33.9678 31.6003L33.9524 31.6166L33.9503 31.6187L33.9349 31.6341L33.9329 31.6361L33.9165 31.6525L33.9134 31.6546L33.897 31.6709L33.8949 31.673L33.8785 31.6884L33.8765 31.6904L33.86 31.7068L33.858 31.7088L33.8416 31.7242L33.8395 31.7263L33.8231 31.7416L33.8211 31.7437L33.8047 31.759L33.8026 31.7611L33.7862 31.7765L33.7841 31.7785L33.7677 31.7939L33.7657 31.7959L33.7493 31.8113L33.7472 31.8133L33.7298 31.8287L33.7277 31.8297L33.7113 31.8451L33.7093 31.8471L33.6918 31.8625L33.6898 31.8645L33.6723 31.8799L33.6703 31.8809L33.6528 31.8963L33.6508 31.8984L33.6333 31.9127L33.6303 31.9147L33.6128 31.9291L33.6108 31.9311L33.5933 31.9465L33.5913 31.9486L33.5739 31.9639L33.5718 31.966L33.5544 31.9813L33.5523 31.9834L33.5349 31.9977L33.5328 31.9998L33.5144 32.0141L33.5123 32.0151L33.4949 32.0295L33.4928 32.0315L33.4754 32.0459L33.4723 32.0479L33.4549 32.0623L33.4528 32.0643L33.4354 32.0786L33.4333 32.0807L33.4159 32.095L33.4138 32.0971L33.3954 32.1114L33.3933 32.1135L33.3759 32.1268L33.3738 32.1288L33.3554 32.1432L33.3533 32.1452L33.3348 32.1596L33.3328 32.1616L33.3143 32.176L33.3123 32.178L33.2938 32.1924L33.2918 32.1934L33.2733 32.2067L33.2712 32.2077L33.2528 32.221L33.2507 32.2221L33.2323 32.2354L33.2292 32.2364L33.2107 32.2497L33.2087 32.2518L33.1902 32.2651L33.1882 32.2671L33.1697 32.2805L33.1676 32.2825L33.1492 32.2958L33.1461 32.2979L33.1276 32.3112L33.1256 32.3122L33.1061 32.3255L33.103 32.3266L33.0835 32.3399L33.0815 32.3419L33.062 32.3552L33.0599 32.3573L33.0404 32.3696L33.0384 32.3716L33.0189 32.3849L33.0168 32.387L32.9984 32.4003L32.9953 32.4024L32.9758 32.4146L32.9738 32.4157L32.9543 32.428L32.9512 32.429L32.9317 32.4413L32.9297 32.4433L32.9102 32.4556L32.9081 32.4577L32.8886 32.47L32.8866 32.471L32.8671 32.4833L32.864 32.4843L32.8445 32.4966L32.8425 32.4986L32.823 32.5109L32.8199 32.512L32.8004 32.5243L32.7973 32.5263L32.7778 32.5386L32.7748 32.5406L32.7542 32.5529L32.7522 32.555L32.7327 32.5663L32.7296 32.5673L32.7101 32.5786L32.7081 32.5806L32.6876 32.5929L32.6845 32.5949L32.664 32.6062L32.6619 32.6083L32.6424 32.6195L32.6394 32.6206L32.6188 32.6318L32.6158 32.6328L32.5952 32.6441L32.5932 32.6451L32.5737 32.6564L32.5727 32.6574L20.6807 39.275H20.6797L20.6613 39.2863L20.6582 39.2873L20.6387 39.2985L20.6356 39.3006L20.6161 39.3108L20.613 39.3119L20.5936 39.3221L20.5915 39.3231L20.572 39.3334L20.5689 39.3344L20.5494 39.3446L20.5464 39.3457L20.5269 39.3559L20.5238 39.3569L20.5043 39.3672L20.5023 39.3682L20.4828 39.3785L20.4807 39.3795L20.4612 39.3887L20.4592 39.3897L20.4387 39.4L20.4366 39.402L20.4171 39.4123L20.4151 39.4133L20.3956 39.4225L20.3935 39.4235L20.374 39.4327L20.372 39.4338L20.3525 39.444L20.3504 39.445L20.3299 39.4543L20.3279 39.4553L20.3084 39.4645L20.3063 39.4655L20.2858 39.4747L20.2838 39.4758L20.2643 39.485L20.2622 39.486L20.2427 39.4952L20.2397 39.4973L20.2191 39.5065L20.2171 39.5075L20.1966 39.5157L20.1945 39.5167L20.174 39.526L20.172 39.528L20.1514 39.5372L20.1484 39.5383L20.1289 39.5465L20.1268 39.5475L20.1063 39.5567L20.1042 39.5577L20.0837 39.5659L20.0817 39.5669L20.0612 39.5751L20.0591 39.5762L20.0386 39.5844L20.0355 39.5854L20.015 39.5936L20.0119 39.5946L19.9914 39.6028L19.9883 39.6038L19.9688 39.612L19.9668 39.613L19.9463 39.6202L19.9442 39.6212L19.9237 39.6294L19.9206 39.6305L19.9001 39.6386L19.897 39.6397L19.8765 39.6479L19.8734 39.6489L19.8529 39.6561L19.8499 39.6571L19.8293 39.6653L19.8263 39.6663L19.8057 39.6735L19.8037 39.6745L19.7832 39.6817L19.7801 39.6827L19.7596 39.6899L19.7565 39.6909L19.736 39.6981L19.7329 39.6991L19.7124 39.7063L19.7103 39.7073L19.6898 39.7145L19.6693 39.7216L19.6662 39.7226L19.6447 39.7288L19.6416 39.7298L19.6211 39.736L19.6191 39.737L19.5985 39.7442L19.5965 39.7452L19.5749 39.7513L19.5719 39.7524L19.5514 39.7585L19.5483 39.7595L19.5278 39.7657L19.5247 39.7667L19.5031 39.7739L19.499 39.7749L19.458 39.7872L19.4529 39.7892L19.4108 39.8015L19.4057 39.8025L19.3636 39.8148L19.3585 39.8159L19.3164 39.8271L19.3113 39.8292L19.2693 39.8405L19.2641 39.8415L19.2221 39.8527L19.2159 39.8538L19.1739 39.864L19.1687 39.865L19.1267 39.8753L19.1205 39.8763L19.0785 39.8866L19.0733 39.8876L19.0313 39.8968L19.0261 39.8978L18.9831 39.907L18.9769 39.9081L18.9338 39.9173L18.9287 39.9183L18.8856 39.9265L18.8805 39.9275L18.8384 39.9347L18.8333 39.9357L18.7912 39.9439L18.7861 39.9449L18.743 39.9521L18.7379 39.9531L18.6948 39.9603L18.6897 39.9613L18.6466 39.9675L18.6415 39.9685L18.5984 39.9746L18.5933 39.9757L18.5502 39.9818L18.5451 39.9828L18.502 39.989L18.4958 39.99L18.4527 39.9951L18.4476 39.9962L18.4045 40.0013L18.3994 40.0023L18.3563 40.0074L18.3132 40.0115H18.3081L18.265 40.0146L18.2599 40.0156L18.2168 40.0187H18.2117L18.1686 40.0218H18.1635L18.1204 40.0248L18.1142 40.0259L18.0711 40.0289H18.066L18.0229 40.031H18.0178L17.9747 40.033H17.9686L17.9255 40.0341H17.9204L17.8773 40.0351H17.8721L17.8291 40.0361H17.6772L17.6342 40.0351L17.5911 40.0341H17.5849L17.5418 40.033H17.5409L17.4978 40.031L17.4927 40.03L17.4496 40.0279H17.4445L17.4014 40.0259L17.3963 40.0248L17.3532 40.0228H17.3481L17.305 40.0197L17.2999 40.0187L17.2568 40.0146L17.2506 40.0136L17.2075 40.0095L17.2014 40.0085L17.1583 40.0044L17.1532 40.0033L17.1101 39.9992H17.105L17.0619 39.9951L17.0567 39.9941L17.0137 39.989H17.0075L16.9644 39.9839L16.9583 39.9828L16.9152 39.9767L16.9101 39.9757L16.867 39.9695L16.8618 39.9685L16.8188 39.9624L16.8136 39.9613L16.7705 39.9552L16.7654 39.9542L16.7234 39.947H16.7203L16.6772 39.9388L16.6717 39.9378L16.6296 39.9296L16.6245 39.9286L16.5824 39.9204L16.5773 39.9193L16.5352 39.9111L16.5291 39.9101L16.4864 39.9019L16.4813 39.9009L16.4392 39.8917L16.4331 39.8896L16.391 39.8804L16.3859 39.8794L16.3438 39.8691L16.3381 39.8671L16.296 39.8568L16.2909 39.8548L16.2488 39.8435L16.2437 39.8425L16.2016 39.8312L16.1965 39.8292L16.1545 39.8179L16.1493 39.8159L16.1073 39.8046L16.1021 39.8025L16.0601 39.7903L16.0539 39.7882L16.0119 39.7759L16.0067 39.7739L15.9647 39.7616L15.9596 39.7595L15.9175 39.7472L15.9124 39.7462L15.8715 39.7329L15.8674 39.7319L15.8459 39.7247H15.8431L15.8226 39.7186L15.8195 39.7175L15.799 39.7104L15.7959 39.7093L15.7754 39.7022L15.7724 39.7011L15.7518 39.694L15.7488 39.6929L15.7282 39.6858L15.7252 39.6847L15.7047 39.6776L15.7026 39.6766L15.6821 39.6694L15.68 39.6684L15.6595 39.6612L15.6575 39.6602L15.637 39.652L15.6339 39.6509L15.6134 39.6427L15.6103 39.6417L15.5898 39.6335L15.5877 39.6325L15.5672 39.6243L15.5641 39.6233L15.5436 39.6151L15.5416 39.6141L15.521 39.6059L15.518 39.6048L15.4974 39.5966L15.4954 39.5956L15.4749 39.5874L15.4728 39.5864L15.4523 39.5782L15.4492 39.5772L15.4287 39.569L15.4256 39.568L15.4051 39.5598L15.402 39.5587L15.3815 39.5505L15.3785 39.5495L15.3579 39.5413L15.3559 39.5403L15.3354 39.5311L15.3323 39.5301L15.3128 39.5208L15.3108 39.5198L15.2902 39.5106L15.2882 39.5096L15.2677 39.5004L15.2656 39.4993L15.2451 39.4911L15.242 39.4901L15.2225 39.4809L15.2195 39.4799L15.1989 39.4706L15.1959 39.4696L15.1764 39.4604L15.1743 39.4584L15.1548 39.4491L15.1528 39.4481L15.1333 39.4389L15.1312 39.4379L15.1107 39.4286L15.1087 39.4266L15.0882 39.4164L15.0861 39.4143L15.0666 39.4051L15.0635 39.4041L15.043 39.3948L15.041 39.3928L15.0215 39.3826L15.0184 39.3815L14.9979 39.3713L14.9958 39.3703L14.9763 39.36L14.9733 39.359L14.9538 39.3487L14.9517 39.3477L14.9322 39.3375L14.9292 39.3354L14.9097 39.3252L14.9076 39.3242L14.8881 39.3139L14.8861 39.3129L14.8666 39.3026L14.8635 39.3006L14.844 39.2904L14.842 39.2893L14.8225 39.2781L14.8194 39.276L14.7999 39.2658L14.7968 39.2647L14.7773 39.2545L14.7743 39.2535L14.7548 39.2432L14.7517 39.2422L14.7322 39.2309L14.7291 39.2299L14.7107 39.2186L14.7076 39.2176L14.6891 39.2064L14.6881 39.2053L3.93786 32.9391L3.93684 32.9381L3.91427 32.9248L3.91222 32.9238L3.88965 32.9104L3.88657 32.9094L3.86298 32.8961L3.8599 32.8951L3.83734 32.8807L3.83528 32.8797L3.81272 32.8654L3.81066 32.8633L3.7881 32.849L3.78605 32.8469L3.76348 32.8326L3.7604 32.8316L3.73783 32.8183L3.73476 32.8162L3.71219 32.8019L3.71014 32.7998L3.68757 32.7855H3.6928L3.67023 32.7711L3.66716 32.7691L3.64459 32.7547L3.64254 32.7527L3.61997 32.7384L3.6171 32.7363L3.59453 32.7209L3.59145 32.7189L3.56889 32.7035L3.56684 32.7015L3.54427 32.6871L3.54222 32.6851L3.51965 32.6697L3.5176 32.6677L3.49503 32.6523L3.49298 32.6503L3.47144 32.6349L3.46836 32.6328L3.44631 32.6175L3.44425 32.6154L3.42271 32.6001L3.42015 32.598L3.39861 32.5826L3.39584 32.5806L3.3743 32.5652L3.37224 32.5642L3.3507 32.5488L3.34865 32.5468L3.32742 32.5314L3.32537 32.5294L3.30423 32.514L3.30116 32.513L3.27962 32.4976L3.27756 32.4956L3.25602 32.4792L3.25397 32.4771L3.23243 32.4618L3.22976 32.4597L3.20822 32.4433L3.20555 32.4413L3.18504 32.4249L3.18299 32.4228L3.16247 32.4065L3.16042 32.4054L3.1399 32.389L3.13785 32.387L3.11734 32.3706L3.11528 32.3686L3.09477 32.3522L3.09272 32.3501L3.0722 32.3337L3.07015 32.3317L3.04963 32.3153L3.04758 32.3132L3.02707 32.2968L3.02502 32.2948L3.0045 32.2774L3.00245 32.2764L2.98193 32.26L2.97988 32.2579L2.95998 32.2415L2.95793 32.2395L2.93741 32.2221L2.93536 32.22L2.91485 32.2036L2.91279 32.2016L2.89228 32.1842L2.89023 32.1831L2.87012 32.1667L2.86807 32.1647L2.84858 32.1483L2.84653 32.1463L2.82704 32.1288L2.82499 32.1268L2.8055 32.1094L2.80345 32.1073L2.78396 32.0899L2.7819 32.0879L2.76241 32.0705L2.76036 32.0684L2.74087 32.051L2.73882 32.0489L2.71933 32.0305L2.71728 32.0295L2.69779 32.0121L2.69471 32.01L2.67573 31.9916L2.67368 31.9895L2.65419 31.9721L2.65214 31.9701L2.63306 31.9516L2.63101 31.9496L2.61255 31.9311L2.61049 31.9291L2.59203 31.9106L2.58998 31.9086L2.57049 31.8902L2.56844 31.8881L2.54895 31.8697L2.5469 31.8686L2.52843 31.8502L2.52638 31.8482L2.50792 31.8297L2.50586 31.8277L2.4874 31.8092L2.48535 31.8072L2.46688 31.7887L2.46483 31.7867L2.44637 31.7683L2.44432 31.7662L2.42585 31.7478L2.4238 31.7457L2.40636 31.7273L2.40431 31.7252L2.38585 31.7068L2.3838 31.7047L2.36533 31.6853L2.36328 31.6832L2.34584 31.6638L2.34379 31.6617L2.32635 31.6423L2.3243 31.6402L2.30584 31.6207L2.30378 31.6187L2.28635 31.5992L2.28429 31.5972L2.26686 31.5777L2.26481 31.5757L2.24737 31.5562L2.24532 31.5542L2.22788 31.5347L2.22583 31.5326L2.20839 31.5132L2.20736 31.5111L2.19095 31.4917L2.1889 31.4896L2.17146 31.4702L2.16941 31.4681L2.15094 31.4476L2.14889 31.4456L2.13145 31.4261L2.1294 31.4241L2.11196 31.4036L2.10991 31.4015L2.0935 31.3821L2.09247 31.38L2.07606 31.3605L2.07401 31.3585L2.0576 31.338L2.05554 31.336L2.03811 31.3155L2.03605 31.3134L2.01964 31.294L2.01759 31.2919L2.00015 31.2725L1.9981 31.2704L1.98169 31.2509L1.97964 31.2489L1.96322 31.2284L1.96117 31.2264L1.94476 31.2059L1.94271 31.2038L1.9263 31.1833L1.92424 31.1813L1.90783 31.1608L1.90578 31.1587L1.88937 31.1383L1.88834 31.1362L1.87295 31.1157L1.8709 31.1137L1.85552 31.0932L1.85449 31.0911L1.8391 31.0706L1.83705 31.0686L1.82167 31.0471L1.81961 31.045L1.80423 31.0245L1.80218 31.0225L1.78679 31.002L1.78576 31L1.77038 30.9785L1.76935 30.9764L1.75396 30.9549L1.75294 30.9528L1.73755 30.9324L1.73653 30.9303L1.72114 30.9098L1.71909 30.9078L1.7037 30.8863L1.70165 30.8842L1.68626 30.8627L1.68421 30.8596L1.66985 30.8381L1.6678 30.8361L1.65344 30.8146L1.65138 30.8125L1.63702 30.791L1.63497 30.7889L1.62061 30.7674L1.61959 30.7654L1.60522 30.7439L1.60317 30.7408L1.58881 30.7193L1.58676 30.7172L1.5724 30.6957L1.57035 30.6937L1.55599 30.6722L1.55394 30.6701L1.53957 30.6486L1.53752 30.6465L1.52419 30.625L1.52316 30.623L1.50983 30.6015L1.50777 30.5984L1.49341 30.5769L1.49136 30.5738L1.477 30.5523L1.47598 30.5503L1.46161 30.5277L1.46059 30.5246L1.44725 30.5031L1.4452 30.5011L1.43187 30.4796L1.42982 30.4775L1.41648 30.455L1.41443 30.4519L1.40109 30.4304L1.40007 30.4284L1.38673 30.4058L1.38571 30.4038L1.37237 30.3823L1.37032 30.3792L1.35698 30.3566L1.35493 30.3536L1.3416 30.331L1.33955 30.328L1.32724 30.3054L1.32518 30.3034L1.31185 30.2808L1.31082 30.2788L1.29851 30.2563L1.29749 30.2542L1.28518 30.2317L1.28415 30.2286L1.27184 30.2061L1.26979 30.203L1.25748 30.1805L1.25646 30.1774L1.24415 30.1538L1.24312 30.1518L1.23081 30.1292L1.22979 30.1262L1.21748 30.1036L1.21645 30.1005L1.20414 30.078L1.20312 30.0749L1.19183 30.0514L1.19081 30.0493L1.1785 30.0258L1.17747 30.0227L1.16516 29.9991L1.16311 29.9971L1.15183 29.9735L1.1508 29.9715L1.13952 29.9489L1.13849 29.9459L1.12721 29.9223V29.9233L1.11592 29.8998L1.11387 29.8967L1.10259 29.8731L1.10156 29.8701L1.09028 29.8475L1.08925 29.8445L1.07797 29.8209L1.07694 29.8188L1.06566 29.7953L1.06464 29.7932L1.05438 29.7697L1.05335 29.7676L1.04207 29.7441L1.04104 29.742L1.02976 29.7185L1.02873 29.7164L1.01745 29.6928L1.01642 29.6898L1.00617 29.6662L1.00514 29.6642L0.993856 29.6406L0.99283 29.6375L0.981547 29.614L0.980521 29.6119L0.970263 29.5884L0.969237 29.5863L0.958979 29.5627L0.957953 29.5597L0.947696 29.5361L0.94667 29.5341L0.937438 29.5105L0.936412 29.5085L0.926154 29.4849L0.925128 29.4818L0.915896 29.4572L0.91487 29.4552L0.904613 29.4316L0.903587 29.4286L0.894355 29.406L0.893329 29.4029L0.883071 29.3784L0.882045 29.3763L0.872813 29.3517L0.871787 29.3486L0.862555 29.3241L0.86153 29.322L0.852297 29.2974L0.851272 29.2944L0.84204 29.2698L0.841014 29.2677L0.831782 29.2431L0.830756 29.2411L0.82255 29.2165L0.821524 29.2134L0.812292 29.1888L0.811266 29.1868L0.80306 29.1622L0.802034 29.1591L0.793828 29.1346L0.792802 29.1315L0.78357 29.1069L0.782544 29.1038L0.774338 29.0792L0.773312 29.0772L0.765106 29.0526L0.76408 29.0506L0.755874 29.026L0.754848 29.0229L0.746641 28.9983L0.745616 28.9952L0.737409 28.9706L0.736384 28.9676L0.728177 28.943L0.727152 28.9399L0.718945 28.9153L0.718022 28.9124L0.710842 28.8878L0.709816 28.8857L0.701609 28.8601L0.700584 28.857L0.693403 28.8314L0.692377 28.8284L0.685197 28.8038L0.684171 28.8007L0.676991 28.7761L0.675965 28.773L0.668784 28.7474L0.667759 28.7444L0.660578 28.7188L0.659552 28.7167L0.652372 28.6911L0.651346 28.6901L0.644165 28.6645L0.64314 28.6624L0.636985 28.6378L0.635959 28.6358L0.629804 28.6112V28.6091L0.622624 28.5835V28.5805L0.616469 28.5559L0.615443 28.5528L0.609289 28.5282L0.608263 28.5251L0.602108 28.4995H0.603134L0.596979 28.4739L0.595954 28.4719L0.589799 28.4463L0.588773 28.4442L0.582618 28.4186L0.581593 28.4166L0.575438 28.3909L0.576464 28.3899L0.570309 28.3643L0.569283 28.3612L0.563128 28.3356L0.562103 28.3326L0.556974 28.3069L0.555948 28.3039L0.549793 28.2783L0.548767 28.2762L0.543638 28.2506L0.542613 28.2475L0.537484 28.2219L0.536458 28.2188L0.531329 28.1932L0.5262 28.1676V28.1646L0.521071 28.1379V28.1348L0.515942 28.1092L0.514916 28.1062L0.508762 28.0816V28.0785L0.503633 28.0508L0.502607 28.0478L0.497478 28.0211L0.496452 28.0181L0.492349 27.9925L0.491323 27.9894L0.48722 27.9638V27.9607L0.483117 27.9351V27.932L0.479014 27.9064L0.477988 27.9033L0.473885 27.8777V27.8788L0.469782 27.8531V27.8511L0.465679 27.8255V27.8224L0.461576 27.7968V27.7937L0.457472 27.7681V27.7661L0.454395 27.7394V27.7364L0.451318 27.7107V27.7087L0.447215 27.6821L0.446189 27.679L0.443111 27.6534V27.6503L0.440034 27.6237L0.439008 27.6206L0.435931 27.594V27.5909L0.432854 27.5643L0.431828 27.5612L0.42875 27.5346V27.5315L0.425673 27.5048L0.424647 27.5028L0.42157 27.4762L0.419518 27.4495V27.4465L0.416441 27.4198L0.415415 27.4167L0.412338 27.3901V27.387L0.410286 27.3604L0.40926 27.3573L0.407209 27.3307V27.3276L0.405157 27.301V27.2979L0.403106 27.2713L0.401054 27.2447V27.2416L0.399003 27.2149V27.2119L0.396951 27.1852V27.1521L0.395925 27.1255V27.1224L0.394899 27.0958V27.0927L0.393874 27.0661L0.392848 27.063L0.391822 27.0364V27.0077L0.390796 26.9811V26.978L0.389771 26.9514V13.9826L0.390796 13.957V13.9242L0.391822 13.8976V13.8033L0.392848 13.7767V13.7746L0.393874 13.748V13.7449L0.394899 13.7183V13.7152L0.395925 13.6886V13.6865L0.396951 13.6599V13.6568L0.397977 13.6302V13.6271L0.400028 13.5995V13.5964L0.40208 13.5698V13.5677L0.403106 13.5411V13.538L0.405157 13.5114V13.5083L0.406183 13.4817V13.4786L0.407209 13.452V13.4489L0.40926 13.4222V13.4192L0.411312 13.3925V13.3895L0.414389 13.3628V13.3598L0.416441 13.3331L0.417467 13.3311L0.419518 13.3044V13.3024L0.422596 13.2758V13.2737L0.425673 13.2471L0.426699 13.244L0.429776 13.2174V13.2143L0.432854 13.1877V13.1856L0.435931 13.159V13.1569L0.439008 13.1303L0.440034 13.1272L0.443111 13.1006V13.0975L0.446189 13.0719V13.0688L0.449266 13.0422V13.0391L0.452343 13.0125L0.453369 13.0094L0.456447 12.9838V12.9807L0.46055 12.9541V12.951L0.463627 12.9244L0.464653 12.9213L0.46773 12.8957L0.468756 12.8926L0.472859 12.866L0.473885 12.864L0.477988 12.8373V12.8353L0.482091 12.8086V12.8066L0.486194 12.781L0.48722 12.7779L0.491323 12.7523V12.7492L0.498504 12.7226L0.49953 12.7195L0.503633 12.6939V12.6908L0.508762 12.6652V12.6632L0.513891 12.6376V12.6355L0.51902 12.6089L0.520045 12.6068L0.525174 12.5812L0.5262 12.5792L0.531329 12.5536L0.532355 12.5505L0.537484 12.5249L0.53851 12.5218L0.543638 12.4962V12.4931L0.548767 12.4675V12.4655L0.553896 12.4399L0.554922 12.4378L0.560051 12.4122L0.561077 12.4102L0.567232 12.3845V12.3815L0.573386 12.3559L0.574412 12.3528L0.579541 12.3272L0.580567 12.3241L0.586721 12.2985V12.2954L0.592876 12.2698L0.593902 12.2667L0.600057 12.2411V12.2381L0.606211 12.2124L0.607237 12.2104L0.613392 12.1848V12.1827L0.619547 12.1571L0.620572 12.1541L0.627753 12.1284V12.1264L0.634933 12.1008V12.0987L0.642114 12.0731L0.64314 12.0701L0.65032 12.0444V12.0414L0.657501 12.0158L0.658526 12.0127L0.665707 11.9881L0.666733 11.9861L0.673913 11.9604L0.674939 11.9579L0.68212 11.9323L0.683145 11.9292L0.690326 11.9042L0.691352 11.9022L0.699558 11.8765L0.700584 11.8745L0.707764 11.8499L0.70879 11.8479L0.71597 11.823L0.716996 11.8209L0.724177 11.7955L0.725203 11.7924L0.733409 11.7674L0.734435 11.7644L0.742641 11.7398V11.7377L0.750847 11.7132V11.7101L0.759054 11.6855L0.760079 11.6834L0.768286 11.6589L0.769311 11.6558L0.777518 11.6312L0.778543 11.6281L0.78675 11.6035L0.787776 11.6005L0.795982 11.5759L0.797008 11.5738L0.80624 11.5493L0.807265 11.5472L0.815472 11.5226L0.816498 11.5201L0.824704 11.4955L0.82573 11.4934L0.834962 11.4688L0.835987 11.4668L0.845219 11.4422V11.4402L0.854452 11.4156L0.855477 11.4135L0.864709 11.3889L0.865735 11.3859L0.874967 11.3613L0.875993 11.3592L0.885225 11.3346L0.886251 11.3316L0.896509 11.308L0.897535 11.306L0.907793 11.2814L0.908818 11.2793L0.919076 11.2547L0.920102 11.2517L0.93036 11.2271L0.931386 11.224L0.941643 11.1994L0.942669 11.1964L0.952927 11.1718L0.953953 11.1687L0.964211 11.1441L0.965236 11.141L0.975494 11.1164L0.97652 11.1139L0.986778 11.0903L0.987804 11.0873L0.998062 11.0637L0.999087 11.0606L1.00935 11.036L1.01037 11.034L1.02165 11.0094L1.02268 11.0074L1.03396 10.9838L1.03499 10.9817L1.04525 10.9582L1.04627 10.9551L1.05756 10.9315L1.05858 10.9295L1.06987 10.9059L1.07089 10.9039L1.08218 10.8803L1.0832 10.8783L1.09449 10.8547L1.09551 10.8516L1.10679 10.8281L1.10782 10.826L1.1191 10.8025L1.12013 10.7994L1.13141 10.7758L1.13244 10.7738L1.14372 10.7502L1.14475 10.7482L1.15603 10.7246L1.15706 10.7226L1.16834 10.699L1.16937 10.697L1.18168 10.6744L1.1827 10.6724L1.19501 10.6488L1.19706 10.6457L1.20937 10.6222L1.2104 10.6201L1.22271 10.5966L1.22373 10.5935L1.23604 10.571L1.23707 10.5689L1.24938 10.5464L1.25041 10.5443L1.26271 10.5218L1.26374 10.5187L1.27605 10.4962L1.2781 10.4941L1.29041 10.4716L1.29144 10.4685L1.30375 10.446L1.3058 10.4439L1.31811 10.4214L1.31913 10.4194L1.33144 10.3968L1.33349 10.3937L1.34683 10.3712L1.34785 10.3692L1.36016 10.3466L1.36119 10.3446L1.37453 10.322L1.37555 10.32L1.38889 10.2974L1.38991 10.2954L1.40325 10.2729L1.4053 10.2708L1.41863 10.2483L1.41966 10.2462L1.43299 10.2237L1.43505 10.2216L1.44838 10.1991L1.44941 10.1971L1.46274 10.1745L1.46479 10.1725L1.47813 10.1499L1.47916 10.1479L1.49352 10.1254L1.49557 10.1223L1.50993 10.0997L1.51095 10.0977L1.52429 10.0762L1.52634 10.0741L1.5407 10.0526L1.54275 10.0506L1.55609 10.028L1.55712 10.026L1.57148 10.0045L1.5725 10.0024L1.58686 9.98091L1.58891 9.97886L1.60328 9.95633L1.60533 9.95428L1.61969 9.93277L1.62071 9.92969L1.63507 9.90818L1.6361 9.90613L1.65046 9.88462L1.65149 9.88257L1.66687 9.86106L1.66893 9.85901L1.68329 9.8375L1.68534 9.83545L1.70073 9.81394L1.70175 9.81189L1.71714 9.79038L1.71816 9.78833L1.73355 9.76681L1.73458 9.76477L1.74996 9.74325L1.75201 9.7412L1.7674 9.71969L1.76843 9.71764L1.78381 9.69613L1.78587 9.69408L1.80125 9.6736L1.80228 9.67155L1.81766 9.65003L1.81972 9.64799L1.8351 9.6275L1.83715 9.62545L1.85254 9.60496L1.85459 9.60291L1.86998 9.58242L1.87203 9.58038L1.88742 9.55989L1.88844 9.55784L1.90383 9.53735L1.90588 9.5353L1.92229 9.51481L1.92435 9.51277L1.94076 9.49228L1.94281 9.49023L1.95922 9.46974L1.96127 9.46769L1.97769 9.44721L1.97974 9.44516L1.99615 9.42467L1.9982 9.4216L2.01462 9.40111L2.01564 9.39906L2.03205 9.37857L2.03411 9.37652L2.05052 9.35603L2.05257 9.35398L2.06898 9.33452L2.07103 9.33247L2.08745 9.31199L2.0895 9.30994L2.10591 9.28945L2.10796 9.2874L2.1254 9.26794L2.12745 9.26589L2.14386 9.2454L2.14592 9.24335L2.16233 9.22389L2.16438 9.22184L2.18079 9.20135L2.18284 9.1993L2.20028 9.17881L2.20131 9.17677L2.21875 9.1573L2.2208 9.15525L2.23824 9.13579L2.24029 9.13374L2.25773 9.11428L2.25978 9.11223L2.27722 9.09277L2.27824 9.09072L2.29568 9.07125L2.29773 9.06921L2.31517 9.04974L2.31722 9.04769L2.33466 9.02823L2.33569 9.02618L2.35313 9.00672L2.35518 9.00467L2.37364 8.9852L2.37467 8.98316L2.39313 8.96369L2.39518 8.96164L2.41467 8.94321L2.41672 8.94116L2.43519 8.92169L2.43724 8.91964L2.4557 8.90018L2.45776 8.89813L2.47622 8.87969L2.47827 8.87764L2.49674 8.8592L2.49879 8.85716L2.51725 8.83872L2.5193 8.83667L2.53879 8.81823L2.54084 8.81618L2.55931 8.79774L2.56136 8.79569L2.57982 8.77725L2.58188 8.7752L2.60034 8.75677L2.60239 8.75472L2.62086 8.73628L2.62291 8.73423L2.64137 8.71579L2.64342 8.71374L2.66189 8.6953L2.66394 8.69325L2.6824 8.67482L2.68445 8.67277L2.70394 8.65535L2.706 8.6533L2.72549 8.63589L2.72754 8.63384L2.74703 8.6154L2.74908 8.61335L2.76857 8.59491L2.77062 8.59389L2.79011 8.57647L2.79216 8.57545L2.81165 8.55803L2.8137 8.55599L2.83319 8.53857L2.83524 8.53652L2.85473 8.51911L2.85679 8.51706L2.87628 8.49964L2.87833 8.49862L2.89884 8.4812L2.9009 8.47916L2.92141 8.46174L2.92346 8.45969L2.94398 8.44228L2.94603 8.44023L2.96655 8.42384L2.9686 8.42179L2.98911 8.4054L2.99116 8.40335L3.01065 8.38696L3.01271 8.38491L3.03322 8.36852L3.03527 8.36647L3.05579 8.35008L3.05784 8.34906L3.07836 8.33267L3.08041 8.33062L3.10092 8.31423L3.10297 8.31218L3.12349 8.29579L3.12554 8.29374L3.14708 8.27735L3.14914 8.2753L3.16965 8.25891L3.1717 8.25686L3.19324 8.24047L3.1953 8.23842L3.21684 8.22203L3.21889 8.21999L3.2394 8.2036L3.24146 8.20257L3.263 8.18618L3.26505 8.18413L3.28556 8.16774L3.28762 8.16569L3.30916 8.15033L3.31121 8.14828L3.33275 8.13189L3.3348 8.12984L3.35634 8.11447L3.3584 8.11345L3.37994 8.09808L3.38301 8.09603L3.40456 8.08067L3.40661 8.07964L3.42815 8.06428L3.4302 8.06223L3.45174 8.04584L3.45379 8.04481L3.47636 8.02945L3.47841 8.0274L3.49995 8.01203L3.50303 8.01101L3.52457 7.99564L3.52662 7.99462L3.54817 7.97925L3.55022 7.97823L3.57279 7.96286L3.57484 7.96081L3.59638 7.94545L3.59843 7.94443L3.621 7.93008L3.62305 7.92906L3.64459 7.91369L3.64767 7.91164L3.67023 7.8973L3.67229 7.89525L3.69485 7.87989L3.69691 7.87784L3.71947 7.8635L3.72255 7.86247L3.74512 7.84813L3.74717 7.84608L3.76974 7.83174L3.77179 7.83072L3.79435 7.81638L3.79641 7.81535L3.81897 7.80101L3.82103 7.79999L3.84359 7.78564L3.84667 7.78462L3.86924 7.7713H3.87026L14.1804 1.42008L14.1815 1.41906L14.203 1.40574L14.2051 1.40472L14.2276 1.39038L14.2307 1.38833L14.2533 1.37501L14.2563 1.37296L14.2789 1.35965L14.282 1.3576L14.3046 1.34428L14.3076 1.34325L14.3312 1.32994L14.3333 1.32789L14.3558 1.31457L14.3589 1.31355L14.3815 1.30023L14.3835 1.29921L14.4071 1.28691L14.4092 1.28486L14.4328 1.27257L14.4348 1.27052L14.4574 1.25823L14.4605 1.25721L14.4841 1.24491L14.4861 1.24286L14.5087 1.23057L14.5118 1.22852L14.5343 1.21623L14.5374 1.21418L14.56 1.20189L14.562 1.19984L14.5856 1.18755L14.5877 1.18652L14.6102 1.17423L14.6133 1.17321L14.6359 1.16091L14.639 1.15989L14.6626 1.1476L14.6656 1.14657L14.6892 1.13428L14.6913 1.13325L14.7149 1.12199L14.7179 1.12096L14.7415 1.10969L14.7446 1.10867L14.7672 1.0974L14.7703 1.09638L14.7939 1.08511L14.7959 1.08408L14.8195 1.07282L14.8226 1.07179L14.8462 1.06052L14.8493 1.05847L14.8728 1.04721L14.8759 1.04618L14.8995 1.03491L14.9026 1.03389L14.9262 1.02364L14.9293 1.02262L14.9529 1.01238L14.9549 1.01033L14.9785 1.00008L14.9806 0.99906L15.0041 0.988816L15.0072 0.986767L15.0308 0.976523L15.0339 0.975499L15.0575 0.965255L15.0606 0.96423L15.0842 0.953986L15.0872 0.952962L15.1108 0.942718L15.1139 0.941694L15.1375 0.93145L15.1406 0.930426L15.1642 0.921206L15.1672 0.920182L15.1908 0.909938L15.1939 0.908913L15.2185 0.898669L15.2216 0.897645L15.2462 0.887401L15.2493 0.885352L15.2729 0.876133L15.275 0.875108L15.2996 0.865889L15.3026 0.864864L15.3262 0.855645L15.3283 0.854621L15.3529 0.845401L15.356 0.844377L15.3806 0.836182L15.3837 0.835157L15.4083 0.825938L15.4114 0.824913L15.436 0.815694L15.4391 0.814669L15.4637 0.806474L15.4668 0.80545L15.4914 0.797255L15.4945 0.79623L15.5181 0.788035L15.5211 0.787011L15.5458 0.778816L15.5488 0.777791L15.5724 0.769596L15.5755 0.768572L15.6001 0.760377L15.6022 0.759352L15.6268 0.751157L15.6299 0.750133L15.6545 0.741938L15.6576 0.740913L15.6822 0.732718L15.6853 0.731694L15.7099 0.724523L15.7119 0.723499L15.7366 0.716328L15.7396 0.715304L15.7643 0.708133H15.7673L15.7919 0.700962L15.795 0.699938L15.8196 0.692767L15.8217 0.691743L15.8463 0.684572L15.8484 0.683547L15.873 0.676377L15.8761 0.675352L15.9007 0.668182L15.9038 0.667157L15.9284 0.659986L15.9315 0.658962L15.9561 0.652816L15.9592 0.651791L15.9838 0.645645L15.9858 0.644621L16.0104 0.63745L16.0129 0.636425L16.0385 0.630279H16.0406L16.0652 0.623108H16.0683L16.0936 0.616962L16.0967 0.615938L16.1224 0.609791L16.1254 0.608767L16.1501 0.602621H16.1531L16.1788 0.596474H16.1819L16.2065 0.590328L16.2095 0.589304L16.2342 0.584182L16.2372 0.583157L16.2619 0.577011L16.2649 0.575987L16.2896 0.570865H16.2926L16.3173 0.565743L16.3203 0.564718L16.3449 0.559596H16.347L16.3716 0.554474L16.3747 0.55345L16.4003 0.548328H16.4024L16.428 0.543206L16.4301 0.542182L16.4557 0.53706L16.4588 0.536035L16.4845 0.530913L16.4875 0.529889L16.5132 0.525791H16.5163L16.5409 0.521694L16.544 0.520669L16.5696 0.515547L16.5727 0.514523L16.5983 0.510426H16.6014L16.626 0.506328L16.6291 0.505304L16.6547 0.501206L16.6578 0.500182L16.6824 0.496084H16.6845L16.7091 0.491986H16.7122L16.7378 0.487889L16.7409 0.486864L16.7665 0.482767H16.7696L16.7953 0.478669H16.7983L16.824 0.474572H16.8271L16.8527 0.471499H16.8558L16.8804 0.468426H16.8835L16.9091 0.465352L16.9122 0.464328L16.9379 0.461255L16.9399 0.46023L16.9656 0.458182H16.9686L16.9932 0.455108H16.9963L17.0209 0.452035H17.024L17.0497 0.448962H17.0527L17.0784 0.445889H17.0815L17.1061 0.44384H17.1092L17.1348 0.440767L17.1379 0.439743L17.1635 0.437694L17.1666 0.436669L17.1922 0.434621H17.1953L17.2206 0.432572H17.2236L17.2493 0.430523H17.2524L17.278 0.429499L17.2811 0.428474L17.3067 0.426426L17.3088 0.425401L17.3344 0.424377H17.3375L17.3631 0.422328H17.3652L17.3908 0.421304H17.3939L17.4196 0.420279H17.4226L17.4483 0.419255H17.4514L17.477 0.41823L17.4801 0.417206L17.5057 0.416182H17.5088L17.5345 0.415157H17.5375L17.5632 0.414133H17.5662L17.5919 0.413108H17.595L17.6206 0.412084H17.6227L17.6483 0.41106H17.6801L17.7058 0.410035H17.7653L17.7707 0.401123ZM17.7471 3.16698H17.7303L17.7135 3.16718H17.6967L17.6793 3.16759L17.6619 3.168L17.6444 3.16851L17.627 3.16954L17.6095 3.17056L17.5921 3.17159L17.5757 3.17261L17.5583 3.17364L17.5418 3.17466L17.5254 3.17568L17.509 3.17671L17.4916 3.17773L17.4752 3.17876L17.4577 3.18081L17.4403 3.18285L17.4239 3.1849L17.4064 3.18695L17.389 3.189L17.3716 3.19105L17.3551 3.1931L17.3377 3.19515L17.3213 3.1972L17.3049 3.19924L17.2874 3.20129L17.271 3.20334L17.2546 3.20539L17.2382 3.20744L17.2218 3.20949L17.2044 3.21154L17.1879 3.21461L17.1715 3.21666L17.1541 3.21973L17.1377 3.22281L17.1213 3.22588L17.1049 3.22895L17.0884 3.23203L17.072 3.2351L17.0556 3.23817L17.0392 3.24022L17.0218 3.24329L17.0054 3.24637L16.9879 3.24944L16.9715 3.25251L16.9551 3.25559L16.9387 3.25866L16.9223 3.26276L16.9058 3.26685L16.8894 3.27095L16.873 3.27403L16.8566 3.2771L16.8402 3.2812L16.8238 3.28529L16.8074 3.28939L16.791 3.29349L16.7745 3.29759L16.7581 3.30168L16.7417 3.30578L16.7253 3.30988L16.7089 3.31398L16.6925 3.31807L16.6761 3.3232L16.6597 3.32729L16.6432 3.33242L16.6279 3.33754L16.6114 3.34266L16.595 3.34778L16.5786 3.3529L16.5622 3.35803L16.5458 3.36315L16.5304 3.36827L16.514 3.37339L16.4976 3.37954L16.4812 3.38466L16.4648 3.38978L16.4483 3.39593L16.4319 3.40105L16.4155 3.40617L16.4001 3.41129L16.3837 3.41744L16.3673 3.42359L16.3509 3.42973L16.3355 3.43588L16.3191 3.44203L16.3037 3.44817L16.2883 3.45432L16.2719 3.46149L16.2555 3.46764L16.2391 3.47378L16.2227 3.47993L16.2073 3.4871L16.1919 3.49324L16.1755 3.50042L16.1601 3.50759L16.1447 3.51476L16.1293 3.52193L16.1129 3.5291L16.0975 3.53627L16.0811 3.54344L16.0657 3.55061L16.0503 3.55778L16.035 3.56495L16.0185 3.57212L16.0032 3.57929L15.9878 3.58646L15.9724 3.59466L15.957 3.60285L15.9416 3.61003L15.9262 3.61822L15.9108 3.62539L15.8955 3.63359L15.8801 3.64178L15.8647 3.64998L15.8493 3.65817L15.8339 3.66637L15.8185 3.67559L15.8042 3.68378L15.7888 3.69198L15.7744 3.70017L15.759 3.70939L15.7436 3.71861L15.7282 3.72783L15.7139 3.73603L15.6985 3.74524L15.6841 3.75446L15.6688 3.76368L15.6534 3.7729L15.637 3.78315L5.33806 10.1221L5.32062 10.1333L5.30421 10.1436L5.28882 10.1538L5.27344 10.1641L5.25805 10.1743L5.24266 10.1846L5.22728 10.1948L5.21189 10.205L5.1965 10.2153L5.18111 10.2255L5.16573 10.2358L5.15034 10.246L5.13495 10.2573L5.12059 10.2675L5.10623 10.2778L5.09085 10.288L5.07648 10.2983L5.06212 10.3085L5.04776 10.3188L5.0334 10.329L5.01904 10.3392L5.00468 10.3495L4.99032 10.3608L4.97596 10.371L4.9616 10.3823L4.94724 10.3935L4.93287 10.4048L4.91851 10.4161L4.90415 10.4273L4.88979 10.4386L4.87646 10.4499L4.8621 10.4611L4.84773 10.4724L4.8344 10.4837L4.82004 10.495L4.80568 10.5062L4.79234 10.5175L4.77798 10.5288L4.76465 10.54L4.75131 10.5513L4.73798 10.5636L4.72464 10.5759L4.71131 10.5871L4.69797 10.5984L4.68463 10.6107L4.6713 10.623L4.65796 10.6353L4.64463 10.6476L4.63129 10.6599L4.61796 10.6722L4.60462 10.6845L4.59129 10.6968L4.57795 10.709L4.56462 10.7213L4.55128 10.7336L4.53897 10.7459L4.52564 10.7582L4.51333 10.7715L4.49999 10.7838L4.48768 10.7971L4.47537 10.8094L4.46306 10.8228L4.45076 10.835L4.43845 10.8484L4.42614 10.8617L4.4128 10.875L4.40049 10.8873L4.38818 10.9006L4.37587 10.9139L4.36356 10.9272L4.35228 10.9406L4.33997 10.9539L4.32766 10.9672L4.31535 10.9805L4.30304 10.9949L4.29073 11.0082L4.27945 11.0215L4.26817 11.0348L4.25586 11.0491L4.24457 11.0625L4.23226 11.0758L4.22098 11.0901L4.2097 11.1034L4.19841 11.1178L4.18713 11.1321L4.17584 11.1465L4.16456 11.1608L4.15328 11.1751L4.14199 11.1895L4.13174 11.2038L4.12045 11.2182L4.10917 11.2325L4.09788 11.2469L4.0866 11.2612L4.07634 11.2755L4.06609 11.2899L4.05583 11.3042L4.04557 11.3196L4.03531 11.3339L4.02505 11.3483L4.0148 11.3636L4.00454 11.378L3.99428 11.3923L3.98402 11.4067L3.97376 11.421L3.96453 11.4364L3.95427 11.4517L3.94402 11.4661L3.93376 11.4814L3.92453 11.4968L3.91529 11.5111L3.90606 11.5265L3.89683 11.5419L3.8876 11.5572L3.87837 11.5726L3.86811 11.588L3.85785 11.6033L3.84862 11.6187L3.83939 11.6341L3.83015 11.6494L3.82092 11.6648L3.81169 11.6802L3.80246 11.6955L3.79323 11.7109L3.78399 11.7263L3.77476 11.7416L3.76553 11.757L3.7563 11.7734L3.74707 11.7888L3.73783 11.8041L3.7286 11.8205L3.7204 11.8359L3.71219 11.8523L3.70398 11.8687L3.69578 11.885L3.68757 11.9004L3.67936 11.9158L3.67116 11.9322L3.66295 11.9475L3.65475 11.9639L3.64756 11.9793L3.63936 11.9957L3.63115 12.0121L3.62295 12.0285L3.61474 12.0449L3.60653 12.0612L3.59935 12.0776L3.59217 12.094L3.58499 12.1104L3.57781 12.1268L3.57063 12.1432L3.56345 12.1596L3.55627 12.176L3.54909 12.1924L3.54191 12.2088L3.53575 12.2251L3.52857 12.2415L3.52139 12.259L3.51421 12.2753L3.50703 12.2917L3.49985 12.3081L3.4937 12.3245L3.48652 12.3419L3.47934 12.3583L3.47318 12.3747L3.46703 12.3921L3.46087 12.4085L3.45472 12.4259L3.44856 12.4423L3.44241 12.4597L3.43625 12.4771L3.4301 12.4946L3.42497 12.512L3.41881 12.5284L3.41266 12.5458L3.40753 12.5632L3.4024 12.5796L3.39727 12.597L3.39112 12.6144L3.38599 12.6308L3.38086 12.6472L3.37573 12.6646L3.36958 12.682L3.36445 12.6994L3.35932 12.7158L3.35419 12.7332L3.34906 12.7507L3.34393 12.7681L3.3388 12.7855L3.33367 12.8029L3.32957 12.8203L3.32547 12.8377L3.32034 12.8551L3.31624 12.8726L3.31111 12.89L3.307 12.9074L3.3029 12.9248L3.2988 12.9432L3.29469 12.9607L3.29059 12.9781L3.28649 12.9955L3.28238 13.0129L3.27828 13.0303L3.27418 13.0477L3.2711 13.0651L3.267 13.0826L3.26392 13.1L3.26084 13.1184L3.25777 13.1369L3.25469 13.1553L3.25161 13.1737L3.24853 13.1911L3.24546 13.2086L3.24238 13.227L3.2393 13.2454L3.23622 13.2629L3.23315 13.2803L3.23007 13.2977L3.22699 13.3161L3.22494 13.3346L3.22289 13.353L3.22084 13.3704L3.21776 13.3889L3.21468 13.4063L3.21263 13.4247L3.21058 13.4431L3.20853 13.4616L3.20648 13.48L3.20443 13.4985L3.20237 13.5169L3.20032 13.5343L3.19827 13.5528L3.19622 13.5712L3.19519 13.5896L3.19314 13.6081L3.19109 13.6265L3.19006 13.645L3.18904 13.6634L3.18801 13.6818L3.18699 13.7003L3.18596 13.7187L3.18494 13.7371L3.18391 13.7556L3.18288 13.774L3.18186 13.7925L3.18083 13.8109V13.8293L3.17981 13.8478L3.17878 13.8662V13.8847L3.17775 13.9031V26.8924L3.17878 26.9108V26.9661L3.17981 26.9835L3.18083 27.002L3.18186 27.0204L3.18288 27.0389L3.18391 27.0573L3.18494 27.0757L3.18596 27.0942L3.18699 27.1126L3.18801 27.131L3.19006 27.1495L3.19109 27.1679L3.19212 27.1864L3.19314 27.2048L3.19519 27.2222L3.19724 27.2407L3.1993 27.2581L3.20032 27.2765L3.20237 27.2939L3.20443 27.3113L3.20648 27.3288L3.20853 27.3462L3.21058 27.3646L3.21263 27.382L3.21468 27.3994L3.21673 27.4179L3.21879 27.4363L3.22084 27.4537L3.22289 27.4722L3.22597 27.4896L3.22904 27.507L3.23212 27.5244L3.2352 27.5418L3.23828 27.5603L3.24135 27.5777L3.24443 27.5951L3.24751 27.6125L3.25059 27.6299L3.25469 27.6473L3.25777 27.6648L3.26084 27.6822L3.26392 27.6996L3.26802 27.717L3.27213 27.7344L3.2752 27.7518L3.27931 27.7692L3.28341 27.7867L3.28751 27.8041L3.29162 27.8215L3.29572 27.8389L3.29982 27.8563L3.30393 27.8737L3.30803 27.8901L3.31316 27.9065L3.31726 27.9239L3.32136 27.9413L3.32547 27.9588L3.3306 27.9762L3.3347 27.9926L3.3388 28.01L3.34291 28.0264L3.34804 28.0438L3.35214 28.0602L3.35727 28.0776L3.3624 28.095L3.36752 28.1114L3.37265 28.1288L3.37778 28.1462L3.38291 28.1626L3.38804 28.18L3.3942 28.1964L3.40035 28.2128L3.4065 28.2292L3.41266 28.2456L3.41779 28.262L3.42394 28.2794L3.4301 28.2958L3.43625 28.3122L3.44241 28.3286L3.44856 28.3449L3.45472 28.3613L3.46087 28.3777L3.46703 28.3941L3.47318 28.4105L3.47934 28.4269L3.48652 28.4433L3.4937 28.4597L3.49985 28.4761L3.50601 28.4925L3.51216 28.5089L3.51832 28.5252L3.52447 28.5416L3.53165 28.558L3.53883 28.5744L3.54601 28.5908L3.55319 28.6072L3.56037 28.6236L3.56755 28.64L3.57473 28.6564L3.58191 28.6728L3.58909 28.6891L3.59628 28.7055L3.60346 28.7219L3.61064 28.7373L3.61884 28.7537L3.62705 28.769L3.63526 28.7854L3.64346 28.8008L3.65167 28.8162L3.65987 28.8315L3.66808 28.8469L3.67629 28.8623L3.68449 28.8776L3.69372 28.893L3.70193 28.9084L3.71014 28.9237L3.71834 28.9391L3.72758 28.9545L3.73681 28.9698L3.74501 28.9852L3.75322 29.0006L3.76143 29.0159L3.77066 29.0313L3.77887 29.0467L3.7881 29.061L3.79733 29.0764L3.80656 29.0907L3.81579 29.1061L3.82503 29.1214L3.83426 29.1358L3.84349 29.1501L3.85272 29.1645L3.86195 29.1788L3.87119 29.1942L3.88042 29.2095L3.89068 29.2239L3.89991 29.2382L3.90914 29.2536L3.91837 29.2679L3.9276 29.2823L3.93786 29.2966L3.94812 29.3109L3.95838 29.3263L3.96864 29.3407L3.97889 29.355L3.98915 29.3693L3.99941 29.3837L4.00967 29.398L4.01992 29.4124L4.03018 29.4267L4.04147 29.441L4.05275 29.4554L4.06301 29.4697L4.07327 29.4841L4.08352 29.4984L4.09378 29.5128L4.10507 29.5261L4.11635 29.5394L4.12763 29.5537L4.13892 29.567L4.1502 29.5814L4.16148 29.5947L4.17277 29.608L4.18405 29.6213L4.19533 29.6347L4.20662 29.648L4.2179 29.6613L4.22919 29.6746L4.24047 29.6879L4.25175 29.7012L4.26304 29.7146L4.27432 29.7279L4.28663 29.7412L4.29894 29.7545L4.31022 29.7678L4.32253 29.7801L4.33484 29.7934L4.34715 29.8057L4.35946 29.819L4.37074 29.8324L4.38305 29.8457L4.39536 29.858L4.40767 29.8703L4.41998 29.8826L4.43229 29.8949L4.4446 29.9082L4.45691 29.9205L4.46922 29.9328L4.48153 29.945L4.49384 29.9573L4.50615 29.9696L4.51948 29.9819L4.53179 29.9942L4.5441 30.0065L4.55744 30.0188L4.56975 30.0311L4.58206 30.0434L4.59539 30.0557L4.60873 30.0669L4.62206 30.0782L4.6354 30.0905L4.64873 30.1028L4.66207 30.1141L4.6754 30.1253L4.68874 30.1376L4.70207 30.1499L4.71541 30.1612L4.72977 30.1725L4.74413 30.1837L4.75849 30.195L4.77183 30.2063L4.78516 30.2175L4.79952 30.2288L4.81286 30.2401L4.82722 30.2503L4.84055 30.2616L4.85491 30.2729L4.86928 30.2841L4.88364 30.2954L4.89697 30.3056L4.91133 30.3169L4.92569 30.3271L4.94006 30.3384L4.95442 30.3497L4.96878 30.3599L4.98314 30.3702L4.99853 30.3804L5.01289 30.3907L5.02725 30.4009L5.04161 30.4111L5.05597 30.4214L5.07033 30.4316L5.08469 30.4419L5.10008 30.4521L5.11546 30.4613L5.13085 30.4716L5.14521 30.4818L5.1606 30.4921L5.17599 30.5023L5.19035 30.5115L5.20573 30.5208L5.22112 30.53L5.23651 30.5392L5.25189 30.5484L5.26728 30.5576L5.28369 30.5669L5.29908 30.5761L5.31447 30.5853L5.33191 30.5955L16.0698 36.8648L16.0832 36.873L16.0945 36.8791L16.1068 36.8853L16.1191 36.8914L16.1314 36.8976L16.1427 36.9048L16.155 36.9109L16.1673 36.917L16.1796 36.9232L16.1919 36.9304L16.2042 36.9365L16.2165 36.9427L16.2288 36.9488L16.2411 36.9549L16.2535 36.9611L16.2658 36.9672L16.2781 36.9734L16.2904 36.9795L16.3017 36.9857L16.314 36.9918L16.3263 36.998L16.3386 37.0031L16.3509 37.0092L16.3632 37.0144L16.3755 37.0195L16.3878 37.0246L16.4001 37.0308L16.4124 37.0369L16.4248 37.042L16.4371 37.0482L16.4494 37.0533L16.4617 37.0584L16.474 37.0635L16.4863 37.0687L16.4986 37.0738L16.5109 37.0789L16.5232 37.084L16.5355 37.0891L16.5478 37.0943L16.5602 37.0984L16.5735 37.1035L16.5858 37.1086L16.5981 37.1137L16.6104 37.1189L16.6227 37.124L16.635 37.1281L16.6474 37.1332L16.6597 37.1373L16.672 37.1414L16.6853 37.1455L16.6976 37.1496L16.7089 37.1537L16.7356 37.1619L16.7612 37.1701L16.7869 37.1772L16.8125 37.1844L16.8381 37.1916L16.8638 37.1988L16.8894 37.2059L16.9151 37.2131L16.9407 37.2203L16.9664 37.2264L16.992 37.2326L17.0177 37.2387L17.0433 37.2438L17.069 37.25L17.0946 37.2551L17.1202 37.2602L17.1459 37.2653L17.1715 37.2694L17.1972 37.2746L17.2228 37.2787L17.2485 37.2828L17.2751 37.2869L17.3008 37.2909L17.3274 37.294L17.3541 37.2971L17.3808 37.3002L17.4075 37.3022L17.4331 37.3043L17.4598 37.3063L17.4854 37.3084L17.5121 37.3104L17.5388 37.3125L17.5644 37.3145L17.59 37.3155L17.6157 37.3166L17.6424 37.3176H17.7737L17.8003 37.3166H17.827L17.8537 37.3155L17.8803 37.3145L17.907 37.3125L17.9337 37.3104L17.9604 37.3094L17.987 37.3073L18.0137 37.3053L18.0404 37.3032L18.066 37.3012L18.0927 37.2981L18.1194 37.295L18.145 37.292L18.1717 37.2889L18.1973 37.2848L18.224 37.2807L18.2496 37.2766L18.2763 37.2725L18.3019 37.2684L18.3276 37.2633L18.3532 37.2592L18.3799 37.2541L18.4055 37.249L18.4312 37.2428L18.4568 37.2377L18.4825 37.2315L18.5081 37.2254L18.5338 37.2192L18.5594 37.2131L18.5851 37.2059L18.6107 37.1988L18.6364 37.1916L18.662 37.1844L18.6887 37.1762L18.701 37.1721L18.7133 37.168L18.7256 37.1639L18.7389 37.1598L18.7512 37.1557L18.7646 37.1516L18.7769 37.1475L18.7892 37.1434L18.8025 37.1393L18.8148 37.1352L18.8271 37.1311L18.8405 37.126L18.8528 37.1219L18.8661 37.1178L18.8784 37.1127L18.8907 37.1086L18.9031 37.1045L18.9154 37.1004L18.9287 37.0953L18.941 37.0912L18.9533 37.0861L18.9656 37.0809L18.9779 37.0758L18.9902 37.0707L19.0026 37.0656L19.0149 37.0605L19.0272 37.0553L19.0395 37.0502L19.0518 37.0451L19.0641 37.04L19.0764 37.0338L19.0887 37.0277L19.101 37.0226L19.1133 37.0164L19.1257 37.0103L19.138 37.0051L19.1503 36.999L19.1626 36.9929L19.1749 36.9867L19.1862 36.9806L19.1985 36.9744L19.2108 36.9683L19.2231 36.9621L19.2354 36.956L19.2477 36.9498L19.26 36.9437L19.2723 36.9375L19.2846 36.9314L19.2959 36.9252L19.3082 36.9191L19.3206 36.913L19.3339 36.9058L31.2299 30.2851L31.2443 30.278L31.2576 30.2708L31.2699 30.2636L31.2822 30.2565L31.2946 30.2493L31.3069 30.2411L31.3202 30.2339L31.3325 30.2268L31.3448 30.2196L31.3571 30.2124L31.3694 30.2042L31.3817 30.196L31.3941 30.1889L31.4064 30.1817L31.4187 30.1745L31.431 30.1663L31.4433 30.1581L31.4556 30.151L31.4679 30.1428L31.4802 30.1356L31.4915 30.1274L31.5028 30.1192L31.5141 30.111L31.5254 30.1028L31.5366 30.0946L31.5489 30.0864L31.5602 30.0782L31.5725 30.07L31.5838 30.0618L31.5951 30.0536L31.6064 30.0454L31.6177 30.0372L31.629 30.029L31.6413 30.0209L31.6526 30.0116L31.6638 30.0034L31.6751 29.9942L31.6864 29.986L31.6977 29.9768L31.709 29.9676L31.7203 29.9584L31.7315 29.9502L31.7428 29.942L31.7541 29.9328L31.7644 29.9235L31.7756 29.9143L31.7869 29.9051L31.7972 29.8969L31.8085 29.8877L31.8198 29.8774L31.83 29.8682L31.8413 29.859L31.8516 29.8498L31.8618 29.8406L31.8721 29.8303L31.8834 29.8211L31.8936 29.8109L31.9039 29.8016L31.9141 29.7914L31.9244 29.7811L31.9346 29.7719L31.9449 29.7617L31.9552 29.7525L31.9654 29.7422L31.9757 29.732L31.9859 29.7217L31.9962 29.7115L32.0054 29.7012L32.0157 29.691L32.0249 29.6808L32.0352 29.6705L32.0454 29.6603L32.0557 29.65L32.0649 29.6398L32.0741 29.6295L32.0834 29.6193L32.0926 29.609L32.1029 29.5988L32.1121 29.5886L32.1213 29.5783L32.1306 29.5681L32.1398 29.5578L32.149 29.5476L32.1583 29.5373L32.1675 29.5271L32.1767 29.5158L32.186 29.5046L32.1952 29.4933L32.2044 29.483L32.2137 29.4728L32.2229 29.4626L32.2321 29.4513L32.2414 29.441L32.2506 29.4298L32.2588 29.4195L32.267 29.4083L32.2752 29.397L32.2834 29.3868L32.2926 29.3755L32.3008 29.3642L32.3091 29.3529L32.3173 29.3417L32.3255 29.3304L32.3337 29.3191L32.3419 29.3079L32.3501 29.2966L32.3583 29.2853L32.3665 29.2741L32.3747 29.2628L32.3829 29.2515L32.3911 29.2403L32.3983 29.229L32.4055 29.2167L32.4137 29.2044L32.4219 29.1931L32.4291 29.1819L32.4363 29.1706L32.4445 29.1583L32.4527 29.147L32.4598 29.1358L32.467 29.1235L32.4742 29.1112L32.4814 29.0989L32.4886 29.0866L32.4958 29.0753L32.5029 29.063L32.5101 29.0508L32.5173 29.0395L32.5245 29.0272L32.5317 29.0149L32.5388 29.0026L32.545 28.9903L32.5511 28.978L32.5583 28.9657L32.5655 28.9534L32.5717 28.9411L32.5788 28.9289L32.586 28.9166L32.5922 28.9043L32.5983 28.892L32.6045 28.8787L32.6106 28.8664L32.6178 28.8541L32.625 28.8418L32.6312 28.8295L32.6373 28.8172L32.6435 28.8049L32.6496 28.7916L32.6558 28.7793L32.6619 28.767L32.6681 28.7537L32.6742 28.7414L32.6804 28.7291L32.6865 28.7158L32.6927 28.7025L32.6989 28.6891L32.705 28.6769L32.7101 28.6646L32.7153 28.6512L32.7204 28.6379L32.7255 28.6246L32.7307 28.6123L32.7358 28.599L32.7409 28.5857L32.746 28.5724L32.7512 28.5601L32.7563 28.5468L32.7614 28.5334L32.7666 28.5201L32.7717 28.5068L32.7768 28.4935L32.7809 28.4802L32.785 28.4669L32.7891 28.4535L32.7932 28.4402L32.7984 28.4269L32.8035 28.4136L32.8086 28.4003L32.8137 28.387L32.8178 28.3736L32.823 28.3603L32.8271 28.347L32.8312 28.3337L32.8363 28.3204L32.8404 28.307L32.8445 28.2937L32.8486 28.2804L32.8527 28.2671L32.8558 28.2538L32.8599 28.2405L32.864 28.2271L32.8681 28.2138L32.8722 28.2005L32.8753 28.1872L32.8784 28.1729L32.8825 28.1595L32.8855 28.1462L32.8886 28.1319L32.8927 28.1186L32.8958 28.1052L32.8989 28.0919L32.902 28.0786L32.905 28.0643L32.9081 28.051L32.9112 28.0376L32.9132 28.0233L32.9163 28.009L32.9194 27.9956L32.9214 27.9813L32.9245 27.968L32.9276 27.9536L32.9307 27.9393L32.9338 27.926L32.9368 27.9116L32.9389 27.8973L32.942 27.8829L32.944 27.8696L32.9471 27.8563L32.9491 27.842L32.9512 27.8276L32.9532 27.8133L32.9553 27.799L32.9574 27.7846L32.9594 27.7703L32.9615 27.7559L32.9625 27.7416L32.9645 27.7283L32.9656 27.7139L32.9676 27.6996L32.9697 27.6863L32.9717 27.6719L32.9727 27.6576L32.9738 27.6432L32.9748 27.6289L32.9758 27.6146L32.9779 27.6002L32.9789 27.5859L32.9799 27.5715L32.9809 27.5572L32.982 27.5429L32.983 27.5285L32.984 27.5142L32.985 27.4998L32.9861 27.4855L32.9871 27.4711L32.9881 27.4568L32.9892 27.4425V27.4138L32.9902 27.3994V13.2187L32.9892 13.2061L32.9881 13.1928V13.1795L32.9871 13.1662V13.1528L32.9861 13.1395V13.1262L32.985 13.1129L32.984 13.1006L32.983 13.0873L32.982 13.074L32.9809 13.0606L32.9799 13.0483L32.9789 13.035L32.9779 13.0227L32.9768 13.0094L32.9748 12.9961L32.9738 12.9838L32.9727 12.9715L32.9707 12.9592L32.9697 12.9469L32.9676 12.9336L32.9666 12.9213L32.9645 12.909L32.9625 12.8957L32.9615 12.8824L32.9604 12.8701L32.9584 12.8588L32.9543 12.8319L32.9512 12.8058L32.9471 12.7791L32.943 12.7535L32.9379 12.7279L32.9327 12.7023L32.9286 12.6767L32.9235 12.6511L32.9173 12.6255L32.9112 12.5999L32.905 12.5743L32.8989 12.5486L32.8927 12.523L32.8866 12.4974L32.8804 12.4718L32.8732 12.4462L32.8661 12.4206L32.8589 12.395L32.8507 12.3694L32.8435 12.3448L32.8353 12.3202L32.8271 12.2956L32.8189 12.271L32.8107 12.2465L32.8014 12.2219L32.7922 12.1973L32.783 12.1737L32.7737 12.1491L32.7645 12.1246L32.7553 12.1L32.745 12.0764L32.7358 12.0518L32.7255 12.0283L32.7153 12.0047L32.705 11.9811L32.6937 11.9576L32.6835 11.934L32.6722 11.9105L32.6609 11.8869L32.6496 11.8644L32.6373 11.8408L32.626 11.8172L32.6137 11.7937L32.6014 11.7711L32.5891 11.7486L32.5768 11.7261L32.5645 11.7035L32.5522 11.681L32.5388 11.6585L32.5255 11.6359L32.5122 11.6134L32.4978 11.5908L32.4845 11.5693L32.4711 11.5478L32.4568 11.5263L32.4424 11.5048L32.428 11.4833L32.4137 11.4618L32.3993 11.4403L32.385 11.4187L32.3696 11.3983L32.3542 11.3778L32.3388 11.3573L32.3234 11.3368L32.308 11.3163L32.2916 11.2958L32.2752 11.2753L32.2588 11.2548L32.2424 11.2344L32.226 11.2149L32.2085 11.1954L32.1921 11.176L32.1747 11.1565L32.1572 11.137L32.1398 11.1176L32.1224 11.0981L32.1049 11.0786L32.0865 11.0602L32.068 11.0418L32.0495 11.0233L32.0311 11.0049L32.0126 10.9865L31.9931 10.968L31.9736 10.9496L31.9541 10.9322L31.9346 10.9147L31.9152 10.8973L31.8957 10.8799L31.8762 10.8625L31.8557 10.8451L31.8351 10.8287L31.8146 10.8123L31.7951 10.7959L31.7736 10.7785L31.7644 10.7713L31.7541 10.7631L31.7438 10.7549L31.7336 10.7467L31.7233 10.7386L31.7131 10.7314L31.7028 10.7232L31.6926 10.715L31.6813 10.7068L31.67 10.6986L31.6597 10.6904L31.6495 10.6822L31.6392 10.674L31.629 10.6668L31.6187 10.6586L31.6074 10.6505L31.5972 10.6433L31.5869 10.6361L31.5756 10.6279L31.5643 10.6207L31.5531 10.6136L31.5428 10.6064L31.5315 10.5992L31.5202 10.5921L31.5089 10.5849L31.4977 10.5777L31.4864 10.5706L31.4751 10.5634L31.4638 10.5562L31.4525 10.549L31.4412 10.5419L31.43 10.5357L31.4187 10.5296L31.4053 10.5224L19.7976 3.72158L19.7812 3.71154L19.7664 3.70335L19.751 3.69413L19.7356 3.68491L19.7205 3.67641L19.7051 3.66821L19.6902 3.66002L19.6749 3.65182L19.6595 3.64363L19.6441 3.63543L19.629 3.62723L19.6136 3.61904L19.5982 3.61084L19.5828 3.60265L19.5675 3.59445L19.5521 3.58626L19.5367 3.57806L19.521 3.57089L19.5056 3.5627L19.4902 3.55553L19.4748 3.54836L19.4594 3.54016L19.4435 3.53299L19.4282 3.52582L19.4128 3.51865L19.3968 3.51148L19.3814 3.50431L19.366 3.49816L19.3501 3.49099L19.3345 3.48382L19.3191 3.47665L19.3032 3.4705L19.2878 3.46436L19.2714 3.45821L19.2556 3.45104L19.2394 3.44489L19.223 3.43772L19.2066 3.43158L19.1907 3.42543L19.1748 3.41928L19.1587 3.41314L19.1423 3.40699L19.1259 3.40084L19.1105 3.3947L19.0951 3.38958L19.0797 3.38445L19.0633 3.37831L19.0469 3.37319L19.0315 3.36806L19.0151 3.36294L18.9987 3.35782L18.9833 3.3527L18.9669 3.34758L18.9504 3.34245L18.934 3.33733L18.9186 3.33221L18.9022 3.32709L18.8858 3.32197L18.8694 3.31684L18.853 3.31275L18.8366 3.30763L18.8202 3.30353L18.8038 3.29841L18.7873 3.29431L18.7709 3.29021L18.7545 3.28611L18.7381 3.28099L18.7217 3.27689L18.7053 3.2728L18.6889 3.26972L18.6725 3.26563L18.656 3.26153L18.6396 3.25743L18.6232 3.25436L18.6068 3.25026L18.5904 3.24719L18.574 3.24411L18.5576 3.24002L18.5412 3.23694L18.5247 3.23387L18.5083 3.2308L18.4919 3.22772L18.4755 3.22465L18.4591 3.22158L18.4417 3.2185L18.4252 3.21645L18.4088 3.21441L18.3924 3.21236L18.376 3.21031L18.3596 3.20724L18.3432 3.20416L18.3268 3.20211L18.3093 3.19904L18.2929 3.19699L18.2765 3.19392L18.2601 3.19187L18.2437 3.18982L18.2273 3.18777L18.2109 3.18572L18.1944 3.18367L18.177 3.18163L18.1606 3.1806L18.1442 3.17855L18.1278 3.1765L18.1114 3.17548L18.0949 3.17445L18.0785 3.17343L18.0621 3.17241L18.0457 3.17138L18.0283 3.17036L18.0108 3.16933L17.9944 3.16831L17.978 3.16728H17.9616L17.9452 3.16626L17.9288 3.16524H17.9113L17.8949 3.16421L17.8785 3.16319L17.8631 3.16216L17.8467 3.16114H17.8128L17.7964 3.16011H17.7636L17.7471 3.16698Z" fill="#C9177E"/> +<path d="M9.94092 30.7474V9.52002H14.3881V17.2521H21.7652V9.52002H26.2253V30.7474H21.7652V21.4658H14.3881V30.7474H9.94092Z" fill="white"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M73.436 25.5574V12.9922C73.436 11.3895 72.5861 9.90673 71.2025 9.0948L59.553 2.25945C57.8292 1.24807 55.6868 1.27092 53.9851 2.31887L44.1229 8.39207C42.0909 9.64336 40.8538 11.8569 40.8538 14.2408V26.5397C40.8538 28.5813 41.939 30.4702 43.7046 31.5008L54.4465 37.7711C55.8749 38.6049 57.638 38.6223 59.0834 37.8192L70.9769 31.2037C72.4948 30.3586 73.436 28.7595 73.436 27.0242V25.5552V25.5574Z" fill="#0594CB"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M56.8327 0.133723H56.8613L56.8866 0.13403H56.8894L56.915 0.134337H56.9178L56.9434 0.134747H56.9455L56.9711 0.135362H56.9742L56.9988 0.136079H57.0019L57.0265 0.136898H57.0296L57.0552 0.137923H57.0583L57.084 0.138947H57.087L57.1127 0.139971L57.1147 0.140176L57.1404 0.141201L57.1424 0.141508L57.1681 0.14284H57.1712L57.1968 0.144274L57.1989 0.144479L57.2245 0.145913H57.2266L57.2522 0.147654L57.2542 0.147859L57.2799 0.149601H57.283L57.3086 0.151649H57.3107L57.3353 0.153698L57.3384 0.154006L57.364 0.155849L57.3671 0.156157L57.3927 0.158206L57.3958 0.158513L57.4204 0.160562H57.4225L57.4481 0.16261H57.4512L57.4768 0.164659H57.4799L57.5056 0.166708H57.5086L57.5333 0.168757H57.5353L57.561 0.17183H57.564L57.5887 0.174903H57.5917L57.6174 0.177976H57.6205L57.6461 0.181049H57.6492L57.6748 0.184123H57.6779L57.7025 0.187196H57.7046L57.7292 0.190269H57.7323L57.7569 0.193342H57.76L57.7846 0.196415H57.7877L57.8133 0.199488H57.8154L57.841 0.202562H57.8441L57.8697 0.206659H57.8728L57.8974 0.210757H57.8995L57.9251 0.214854H57.9282L57.9528 0.218952H57.9559L57.9815 0.223049H57.9846L58.0102 0.227147H58.0133L58.0379 0.232269H58.04L58.0656 0.237391H58.0687L58.0933 0.241489H58.0964L58.121 0.24661L58.1241 0.247635L58.1498 0.252757L58.1528 0.253781L58.1785 0.258903L58.1816 0.259927L58.2062 0.265049H58.2082L58.2328 0.270171H58.2349L58.2605 0.275293H58.2636L58.2882 0.280415H58.2913L58.3159 0.286562H58.319L58.3436 0.292708L58.3457 0.293732L58.3703 0.299879L58.3734 0.300903L58.398 0.307049H58.4011L58.4257 0.313196L58.4277 0.31422L58.4524 0.320367L58.4544 0.321391L58.479 0.328562H58.4821L58.5067 0.334708L58.5098 0.335732L58.5344 0.341879H58.5375L58.5621 0.348025H58.5642L58.5888 0.354171L58.5919 0.355196L58.6165 0.361342L58.6196 0.362367L58.6442 0.369537L58.6462 0.370562L58.6709 0.377732H58.6739L58.6986 0.384903L58.7016 0.385928L58.7263 0.393098L58.7283 0.394123L58.7529 0.401293L58.756 0.402318L58.7806 0.409488L58.7837 0.410513L58.8083 0.417684L58.8114 0.418708L58.836 0.425879L58.8391 0.426903L58.8637 0.434074L58.8658 0.435098L58.8904 0.443293L58.8924 0.444318L58.917 0.452513H58.9201L58.9447 0.460708L58.9478 0.461732L58.9724 0.469928L58.9745 0.470952L58.9991 0.479147L59.0012 0.480171L59.0258 0.488367L59.0289 0.489391L59.0535 0.497586L59.0566 0.49861L59.0812 0.506806L59.0842 0.50783L59.1089 0.516025L59.1109 0.517049L59.1355 0.525245L59.1386 0.526269L59.1632 0.535489L59.1663 0.536513L59.1909 0.545732L59.194 0.546757L59.2176 0.555976L59.2207 0.557001L59.2453 0.56622L59.2484 0.567245L59.272 0.576464L59.275 0.577489L59.2997 0.586708L59.3027 0.587732L59.3263 0.597976L59.3294 0.599001L59.353 0.609245L59.3561 0.610269L59.3797 0.620513L59.3817 0.621537L59.4063 0.630757L59.4084 0.631781L59.432 0.642025L59.4351 0.643049L59.4597 0.653293L59.4617 0.654318L59.4853 0.664562L59.4874 0.665586L59.511 0.67583L59.5141 0.676854L59.5387 0.687098L59.5417 0.688123L59.5653 0.698367L59.5674 0.699391L59.591 0.710659L59.5941 0.711684L59.6177 0.721928L59.6197 0.722952L59.6433 0.73422L59.6454 0.735245L59.6689 0.746513L59.672 0.747537L59.6966 0.757781L59.6987 0.75983L59.7223 0.771098L59.7243 0.772123L59.7479 0.783391L59.75 0.784415L59.7736 0.795684L59.7767 0.796708L59.8002 0.807976L59.8033 0.809001L59.8269 0.820269L59.829 0.821293L59.8526 0.832562L59.8556 0.833586L59.8782 0.845879L59.8803 0.847927L59.9039 0.86022L59.9069 0.861245L59.9305 0.873537L59.9326 0.874562L59.9562 0.886854L59.9592 0.887879L59.9828 0.900171L59.9859 0.90222L60.0085 0.914513L60.0116 0.915537L60.0352 0.92783L60.0372 0.928854L60.0598 0.941147L60.0618 0.942171L60.0854 0.954464L60.0875 0.955489L60.11 0.967781L60.1131 0.968806L60.1357 0.982123L60.1377 0.983147L60.1603 0.996464L60.1624 0.998513L60.1849 1.01183L60.187 1.01388L60.2095 1.0272L60.2126 1.02924L60.2362 1.04256L71.8994 7.89368L71.9179 7.90495L71.9209 7.90598L71.9394 7.91724L71.9425 7.91929L71.9609 7.93056L71.963 7.93261L71.9815 7.94388L71.9835 7.9449L72.002 7.95617L72.004 7.95822L72.0225 7.96949L72.0245 7.97154L72.043 7.98281L72.0451 7.98383L72.0625 7.9951L72.0645 7.99612L72.083 8.00739L72.0851 8.00842L72.1025 8.01968L72.1046 8.02071L72.122 8.03198L72.124 8.033L72.1415 8.04529L72.1446 8.04632L72.162 8.05861L72.1641 8.05964L72.1825 8.07193L72.1856 8.07398L72.2205 8.09754L72.2256 8.10061L72.2615 8.1252L72.2666 8.12827L72.3015 8.15285L72.3056 8.15593L72.3405 8.18051L72.3456 8.18359L72.3805 8.20817L72.3856 8.21124L72.4195 8.23685L72.4236 8.23993L72.4574 8.26554L72.4615 8.26861L72.4954 8.29422L72.4995 8.29729L72.5333 8.3229L72.5374 8.327L72.5713 8.35363L72.5754 8.35773L72.6082 8.38437L72.6123 8.38744L72.6451 8.41407L72.6492 8.41715L72.6821 8.44378L72.6862 8.44788L72.719 8.47554L72.7231 8.47861L72.7559 8.50627L72.76 8.50934L72.7918 8.537L72.7959 8.54007L72.8277 8.56773L72.8318 8.57081L72.8636 8.59846L72.8677 8.60154L72.8985 8.63022L72.9026 8.63329L72.9334 8.66198L72.9375 8.66607L72.9683 8.69476L72.9724 8.69885L73.0021 8.72754L73.0062 8.73164L73.037 8.76134L73.0411 8.76544L73.0708 8.79515L73.075 8.79924L73.1047 8.82895L73.1088 8.83305L73.1385 8.86276L73.1416 8.86685L73.1714 8.89759L73.1755 8.90168L73.2042 8.93242L73.2083 8.93651L73.237 8.96725L73.2411 8.97134L73.2698 9.00207L73.2739 9.00617L73.3027 9.03793L73.3058 9.04203L73.3334 9.07378L73.3365 9.07788L73.3642 9.10964L73.3683 9.11373L73.396 9.14549L73.3991 9.14959L73.4258 9.18134L73.4288 9.18544L73.4565 9.2172L73.4606 9.22129L73.4873 9.25305L73.4904 9.25817L73.5171 9.29095L73.5201 9.29505L73.5458 9.32783L73.5489 9.33295L73.5745 9.36573L73.5776 9.36983L73.6032 9.40364L73.6063 9.40773L73.6309 9.44154L73.635 9.44563L73.6596 9.47944L73.6627 9.48354L73.6873 9.51734L73.6904 9.52144L73.715 9.55524L73.7181 9.55934L73.7417 9.59417L73.7448 9.59929L73.7684 9.63412L73.7715 9.63925L73.795 9.67407L73.7981 9.67817L73.8217 9.713L73.8248 9.71812L73.8474 9.75295L73.8504 9.75807L73.873 9.7929L73.8761 9.79803L73.8987 9.83388L73.9017 9.839L73.9243 9.87485L73.9274 9.87998L73.9489 9.91481L73.952 9.91993L73.9735 9.95578L73.9756 9.9609L73.9971 9.99676L74.0002 10.0009L74.0207 10.0367L74.0238 10.0418L74.0453 10.0787L74.0484 10.0838L74.0689 10.1207L74.072 10.1248L74.0915 10.1617L74.0936 10.1668L74.1141 10.2037L74.1161 10.2088L74.1356 10.2457L74.1387 10.2508L74.1572 10.2877L74.1592 10.2928L74.1787 10.3307L74.1807 10.3348L74.1992 10.3727L74.2013 10.3778L74.2197 10.4157L74.2218 10.4209L74.2392 10.4588L74.2413 10.4639L74.2597 10.5018L74.2618 10.5069L74.2792 10.5448L74.2823 10.5499L74.2987 10.5878L74.3008 10.593L74.3172 10.6319L74.3192 10.637L74.3356 10.6759L74.3387 10.681L74.3551 10.72L74.3572 10.7251L74.3736 10.764L74.3756 10.7691L74.391 10.8081L74.3931 10.8132L74.4085 10.8521L74.4105 10.8572L74.4249 10.8962L74.4269 10.9013L74.4413 10.9402L74.4433 10.9453L74.4577 10.9853L74.4598 10.9904L74.4731 11.0304L74.4751 11.0355L74.4885 11.0754L74.4905 11.0806L74.5039 11.1205L74.5059 11.1256L74.5193 11.1656L74.5213 11.1707L74.5336 11.2107L74.5346 11.2158L74.547 11.2557L74.549 11.2609L74.5613 11.3008L74.5623 11.3059L74.5736 11.3469L74.5757 11.352L74.587 11.392L74.589 11.3971L74.6003 11.4381L74.6023 11.4432L74.6126 11.4842L74.6136 11.4893L74.6239 11.5303L74.6249 11.5354L74.6352 11.5764L74.6362 11.5815L74.6465 11.6225L74.6475 11.6286L74.6567 11.6696L74.6588 11.6747L74.668 11.7167L74.669 11.7218L74.6782 11.7628L74.6793 11.7679L74.6885 11.8099L74.6895 11.815L74.6977 11.857L74.6988 11.8622L74.707 11.9042L74.708 11.9103L74.7152 11.9523V11.9585L74.7224 12.0005L74.7234 12.0056L74.7295 12.0476L74.7306 12.0537L74.7367 12.0957L74.7377 12.1019L74.7439 12.1439L74.7449 12.149L74.7511 12.191L74.7521 12.1971L74.7572 12.2402L74.7583 12.2463L74.7634 12.2883V12.2945L74.7685 12.3365L74.7695 12.3416L74.7737 12.3846L74.7747 12.3897L74.7788 12.4328V12.4389L74.7829 12.4819L74.7839 12.487L74.787 12.529L74.788 12.5352L74.7911 12.5782V12.5844L74.7931 12.6264V12.6305L74.7942 12.652V12.654L74.7952 12.6755V12.6786L74.7962 12.7001V12.7032L74.7972 12.7247V12.7278L74.7983 12.7493V12.7524L74.7993 12.7739V12.8015L74.8003 12.823V27.0908L74.7993 27.1133V27.1153L74.7983 27.1379V27.1666L74.7972 27.1891V27.1922L74.7962 27.2157V27.2178L74.7952 27.2403V27.2434L74.7942 27.2659V27.269L74.7931 27.2915L74.7921 27.2946L74.7911 27.3171V27.3202L74.7901 27.3438V27.3469L74.789 27.3694V27.3725L74.787 27.395L74.786 27.3981L74.7839 27.4216V27.4247L74.7829 27.4483V27.4513L74.7808 27.4749V27.478L74.7798 27.5005V27.5036L74.7778 27.5271V27.5302L74.7757 27.5528L74.7747 27.5558L74.7726 27.5784V27.5814L74.7706 27.605V27.607L74.7685 27.6296L74.7675 27.6327L74.7654 27.6552L74.7644 27.6583L74.7624 27.6808V27.6839L74.7593 27.7074V27.7105L74.7562 27.733V27.7361L74.7531 27.7587V27.7617L74.7501 27.7843L74.749 27.7873L74.746 27.8099L74.7449 27.813L74.7419 27.8355L74.7408 27.8386L74.7377 27.8611V27.8642L74.7347 27.8867V27.8898L74.7316 27.9123V27.9144L74.7285 27.9369V27.94L74.7254 27.9625V27.9656L74.7224 27.9881L74.7213 27.9912L74.7183 28.0137L74.7172 28.0168L74.7131 28.0393V28.0414L74.709 28.0639V28.067L74.7059 28.0895V28.0916L74.7018 28.1141L74.7008 28.1172L74.6967 28.1397V28.1428L74.6926 28.1653L74.6916 28.1684L74.6875 28.1899L74.6865 28.193L74.6813 28.2155V28.2186L74.6762 28.2411L74.6752 28.2432L74.6711 28.2657L74.67 28.2688L74.6659 28.2903L74.6649 28.2934L74.6598 28.3159L74.6588 28.318L74.6536 28.3405V28.3436L74.6485 28.3661V28.3682L74.6434 28.3907L74.6423 28.3938L74.6372 28.4153L74.6362 28.4173L74.6311 28.4399L74.63 28.443L74.6249 28.4655L74.6239 28.4686L74.6177 28.4901L74.6167 28.4931L74.6116 28.5147L74.6105 28.5167L74.6054 28.5392V28.5423L74.5993 28.5649L74.5982 28.5679L74.5931 28.5894L74.5921 28.5925L74.5859 28.614V28.6171L74.5798 28.6386L74.5788 28.6417L74.5726 28.6632V28.6663L74.5664 28.6878V28.6909L74.5603 28.7124L74.5593 28.7154L74.5531 28.7369L74.5521 28.74L74.5459 28.7615L74.5449 28.7636L74.5387 28.7851L74.5377 28.7882L74.5305 28.8097L74.5295 28.8128L74.5223 28.8343L74.5213 28.8373L74.5141 28.8589L74.5131 28.8619L74.5059 28.8834L74.5049 28.8855L74.4977 28.907L74.4967 28.9101L74.4895 28.9316L74.4885 28.9347L74.4813 28.9562L74.4803 28.9582L74.4731 28.9797L74.4721 28.9818L74.4649 29.0033L74.4639 29.0064L74.4567 29.0279L74.4557 29.031L74.4485 29.0525L74.4474 29.0555L74.4392 29.077L74.4382 29.0801L74.431 29.1016L74.43 29.1047L74.4228 29.1262L74.4218 29.1283L74.4136 29.1498L74.4126 29.1518L74.4044 29.1733L74.4033 29.1764L74.3951 29.1969L74.3941 29.2L74.3859 29.2215L74.3849 29.2235L74.3767 29.244L74.3756 29.2471L74.3674 29.2686L74.3664 29.2717L74.3582 29.2922L74.3572 29.2952L74.349 29.3157L74.3479 29.3188L74.3397 29.3393L74.3387 29.3424L74.3305 29.3629L74.3295 29.3659L74.3213 29.3864L74.3202 29.3895L74.311 29.411L74.31 29.4141L74.3008 29.4346L74.2997 29.4376L74.2905 29.4581L74.2895 29.4602L74.2802 29.4807L74.2792 29.4837L74.27 29.5042L74.269 29.5073L74.2597 29.5278L74.2587 29.5298L74.2495 29.5503L74.2484 29.5524L74.2392 29.5729L74.2372 29.5759L74.2279 29.5964L74.2269 29.5985L74.2166 29.6179L74.2156 29.621L74.2064 29.6415L74.2043 29.6435L74.1951 29.664L74.1941 29.6661L74.1838 29.6866L74.1828 29.6886L74.1736 29.7081L74.1725 29.7101L74.1623 29.7306L74.1602 29.7337L74.15 29.7531L74.1489 29.7562L74.1387 29.7757L74.1377 29.7777L74.1274 29.7982L74.1264 29.8003L74.1161 29.8197L74.1151 29.8218L74.1048 29.8423L74.1038 29.8453L74.0936 29.8648L74.0915 29.8679L74.0802 29.8873L74.0792 29.8894L74.0679 29.9099L74.0669 29.9119L74.0566 29.9314L74.0556 29.9345L74.0443 29.9539L74.0433 29.956L74.033 29.9765L74.032 29.9785L74.0207 29.998L74.0197 30.001L74.0084 30.0205L74.0064 30.0236L73.9961 30.043L73.994 30.0461L73.9828 30.0656L73.9807 30.0676L73.9694 30.0871L73.9684 30.0891L73.9571 30.1086L73.9551 30.1107L73.9438 30.1301L73.9417 30.1322L73.9305 30.1516L73.9294 30.1547L73.9181 30.1742L73.9171 30.1762L73.9058 30.1957L73.9048 30.1977L73.8935 30.2172L73.8925 30.2203L73.8802 30.2397L73.8781 30.2418L73.8658 30.2612L73.8638 30.2633L73.8515 30.2817L73.8494 30.2848L73.8371 30.3043L73.8351 30.3073L73.8238 30.3258L73.8227 30.3278L73.8104 30.3473L73.8094 30.3493L73.7971 30.3678L73.795 30.3698L73.7827 30.3883L73.7817 30.3913L73.7694 30.4098L73.7684 30.4129L73.7561 30.4313L73.755 30.4333L73.7427 30.4518L73.7417 30.4538L73.7294 30.4723L73.7284 30.4743L73.7161 30.4928L73.715 30.4958L73.7017 30.5143L73.6996 30.5163L73.6873 30.5348L73.6853 30.5368L73.673 30.5552L73.6709 30.5583L73.6576 30.5768L73.6555 30.5788L73.6422 30.5972L73.6412 30.5993L73.6278 30.6177L73.6258 30.6198L73.6125 30.6382L73.6114 30.6403L73.5981 30.6587L73.5971 30.6608L73.5837 30.6792L73.5817 30.6812L73.5673 30.6987L73.5653 30.7007L73.5519 30.7191L73.5499 30.7212L73.5366 30.7386L73.5345 30.7407L73.5212 30.7591L73.5191 30.7611L73.5047 30.7796L73.5027 30.7816L73.4894 30.799L73.4873 30.8011L73.474 30.8185L73.4719 30.8206L73.4586 30.838L73.4565 30.84L73.4422 30.8574L73.4401 30.8595L73.4258 30.8769L73.4247 30.879L73.4104 30.8964L73.4083 30.8984L73.394 30.9158L73.3919 30.9179L73.3776 30.9353L73.3755 30.9373L73.3611 30.9548L73.3601 30.9568L73.3458 30.9742L73.3437 30.9763L73.3293 30.9937L73.3283 30.9957L73.314 31.0131L73.3129 31.0152L73.2986 31.0326L73.2965 31.0347L73.2811 31.0521L73.2791 31.0541L73.2637 31.0705L73.2627 31.0726L73.2473 31.0889L73.2452 31.091L73.2309 31.1074L73.2288 31.1094L73.2134 31.1258L73.2114 31.1279L73.196 31.1443L73.1939 31.1463L73.1785 31.1627L73.1765 31.1648L73.1611 31.1811L73.1591 31.1832L73.1437 31.1996L73.1416 31.2016L73.1262 31.218L73.1242 31.2201L73.1088 31.2365L73.1067 31.2385L73.0903 31.2549L73.0883 31.257L73.0729 31.2733L73.0708 31.2754L73.0555 31.2918L73.0544 31.2938L73.038 31.3102L73.036 31.3123L73.0206 31.3287L73.0185 31.3307L73.0031 31.3471L73.0011 31.3491L72.9847 31.3655L72.9826 31.3676L72.9662 31.3829L72.9642 31.385L72.9477 31.4004L72.9457 31.4024L72.9293 31.4188L72.9272 31.4209L72.9108 31.4362L72.9088 31.4383L72.8924 31.4536L72.8903 31.4557L72.8739 31.471L72.8718 31.4731L72.8554 31.4885L72.8534 31.4905L72.8359 31.5069L72.8339 31.5089L72.8175 31.5243L72.8154 31.5264L72.799 31.5417L72.797 31.5438L72.7805 31.5591L72.7785 31.5612L72.7611 31.5766L72.759 31.5786L72.7416 31.594L72.7395 31.596L72.7221 31.6104L72.72 31.6124L72.7026 31.6278L72.7005 31.6288L72.6831 31.6431L72.681 31.6452L72.6636 31.6606L72.6616 31.6626L72.6441 31.677L72.6421 31.679L72.6246 31.6933L72.6226 31.6954L72.6051 31.7097L72.6031 31.7118L72.5856 31.7271L72.5836 31.7282L72.5662 31.7425L72.5641 31.7446L72.5467 31.7589L72.5446 31.761L72.5272 31.7753L72.5251 31.7773L72.5077 31.7917L72.5056 31.7937L72.4882 31.8081L72.4861 31.8091L72.4687 31.8234L72.4667 31.8255L72.4492 31.8398L72.4472 31.8419L72.4287 31.8562L72.4256 31.8583L72.4072 31.8726L72.4041 31.8747L72.3856 31.889L72.3836 31.891L72.3661 31.9054L72.3631 31.9064L72.3446 31.9208L72.3425 31.9218L72.3241 31.9361L72.321 31.9382L72.3025 31.9515L72.3005 31.9535L72.282 31.9669L72.28 31.9679L72.2615 31.9812L72.2594 31.9822L72.241 31.9955L72.2379 31.9966L72.2194 32.0109L72.2164 32.0119L72.1979 32.0252L72.1948 32.0263L72.1764 32.0396L72.1743 32.0416L72.1548 32.0549L72.1528 32.056L72.1333 32.0693L72.1302 32.0713L72.1107 32.0836L72.1087 32.0857L72.0902 32.099L72.0881 32.101L72.0697 32.1133L72.0676 32.1154L72.0481 32.1277L72.0461 32.1297L72.0276 32.142L72.0256 32.143L72.0061 32.1564L72.003 32.1584L71.9835 32.1707L71.9815 32.1717L71.962 32.184L71.9599 32.185L71.9404 32.1973L71.9374 32.1984L71.9179 32.2107L71.9158 32.2117L71.8963 32.224L71.8932 32.226L71.8738 32.2383L71.8717 32.2404L71.8522 32.2516L71.8502 32.2537L71.8307 32.266L71.8286 32.267L71.8091 32.2793L71.8071 32.2803L71.7876 32.2926L71.7855 32.2936L71.766 32.3059L71.763 32.308L71.7424 32.3203L71.7404 32.3213L71.7209 32.3336L71.7189 32.3346L71.6983 32.3469L71.6963 32.349L71.6758 32.3602L71.6727 32.3612L71.6522 32.3735L71.6501 32.3746L71.6306 32.3858L71.6286 32.3869L59.7325 39.0034L59.7315 39.0044L59.7131 39.0147L59.711 39.0157L59.6915 39.0259L59.6884 39.027L59.6689 39.0372L59.6669 39.0392L59.6474 39.0505L59.6443 39.0515L59.6248 39.0628L59.6228 39.0649L59.6033 39.0751L59.6002 39.0771L59.5807 39.0874L59.5787 39.0884L59.5582 39.0987L59.5561 39.0997L59.5366 39.1099L59.5346 39.111L59.5151 39.1202L59.513 39.1222L59.4925 39.1314L59.4894 39.1325L59.4699 39.1427L59.4679 39.1437L59.4474 39.154L59.4453 39.155L59.4258 39.1642L59.4228 39.1663L59.4022 39.1755L59.4002 39.1765L59.3807 39.1857L59.3776 39.1868L59.3571 39.196L59.354 39.197L59.3345 39.2062L59.3325 39.2072L59.312 39.2165L59.3099 39.2175L59.2894 39.2267L59.2863 39.2277L59.2658 39.2369L59.2627 39.238L59.2432 39.2472L59.2412 39.2482L59.2217 39.2574L59.2197 39.2585L59.1991 39.2677L59.1971 39.2687L59.1776 39.2769L59.1745 39.2779L59.154 39.2871L59.1509 39.2882L59.1304 39.2974L59.1284 39.2984L59.1078 39.3066L59.1048 39.3076L59.0842 39.3158L59.0822 39.3169L59.0617 39.325L59.0586 39.3261L59.0381 39.3343L59.036 39.3353L59.0155 39.3435L59.0135 39.3445L58.993 39.3527L58.9899 39.3537L58.9694 39.3609L58.9673 39.3619L58.9478 39.3701L58.9458 39.3711L58.9253 39.3793L58.9232 39.3804L58.9027 39.3875L58.8996 39.3886L58.8791 39.3957L58.876 39.3968L58.8555 39.4049L58.8534 39.406L58.8329 39.4131L58.8299 39.4142L58.8093 39.4224L58.8073 39.4234L58.7868 39.4306L58.7847 39.4316L58.7642 39.4388L58.7622 39.4398L58.7416 39.4469L58.7386 39.448L58.718 39.4541L58.716 39.4551L58.6955 39.4623L58.6924 39.4633L58.6719 39.4705L58.6688 39.4715L58.6483 39.4787L58.6452 39.4797L58.6247 39.4869L58.6216 39.4879L58.6001 39.4941L58.597 39.4951L58.5755 39.5023H58.5734L58.5519 39.5084L58.5478 39.5094L58.5067 39.5217L58.5016 39.5228L58.4595 39.535L58.4534 39.5361L58.4124 39.5473L58.4062 39.5484L58.3641 39.5596L58.359 39.5617L58.317 39.5729L58.3118 39.574L58.2698 39.5842L58.2646 39.5852L58.2226 39.5955L58.2164 39.5975L58.1744 39.6078L58.1682 39.6088L58.1262 39.619L58.12 39.6201L58.078 39.6293L58.0728 39.6303L58.0308 39.6395L58.0256 39.6406L57.9836 39.6498L57.9784 39.6508L57.9354 39.659L57.9302 39.66L57.8882 39.6672L57.8831 39.6682L57.84 39.6764L57.8348 39.6774L57.7918 39.6846L57.7866 39.6856L57.7435 39.6928L57.7384 39.6938L57.6964 39.7H57.6902L57.6481 39.7061L57.643 39.7071L57.601 39.7133H57.5958L57.5538 39.7194L57.5486 39.7205L57.5056 39.7256L57.5004 39.7266L57.4574 39.7317L57.4522 39.7328L57.4091 39.7379H57.404L57.3609 39.742L57.3548 39.743L57.3117 39.7471H57.3066L57.2635 39.7512H57.2584L57.2153 39.7543L57.2101 39.7553L57.1671 39.7573L57.1609 39.7584L57.1178 39.7604H57.1117L57.0686 39.7625L57.0634 39.763L57.0204 39.765H57.0214L56.9783 39.766H56.9732L56.9301 39.7681L56.887 39.7685H56.8809L56.8378 39.7695H56.7352L56.6921 39.7685H56.686L56.6429 39.7675H56.6377L56.5947 39.7661L56.5895 39.7651L56.5465 39.7641H56.5413L56.4982 39.7621H56.4931L56.45 39.76L56.4449 39.759L56.4018 39.7559H56.3967L56.3536 39.7528H56.3485L56.3054 39.7498L56.3003 39.7487L56.2572 39.7446H56.2521L56.209 39.7405L56.2038 39.7395L56.1608 39.7344L56.1556 39.7334L56.1125 39.7282L56.1074 39.7272L56.0654 39.7221H56.0602L56.0171 39.717H56.012L55.9689 39.7108L55.9638 39.7098L55.9207 39.7037L55.9156 39.7026L55.8735 39.6965L55.8684 39.6955L55.8264 39.6893L55.8212 39.6883L55.7781 39.6811L55.773 39.6801L55.7299 39.6729L55.7248 39.6719L55.6827 39.6637L55.6776 39.6627L55.6356 39.6545L55.6304 39.6535L55.5884 39.6453L55.5822 39.6442L55.5402 39.6361L55.535 39.635L55.493 39.6258L55.4878 39.6248L55.4448 39.6156L55.4396 39.6145L55.3976 39.6043L55.3924 39.6033L55.3504 39.593L55.3442 39.592L55.3022 39.5818L55.296 39.5807L55.254 39.5705L55.2488 39.5684L55.2068 39.5572L55.2016 39.5561L55.1596 39.5449L55.1545 39.5428L55.1124 39.5305L55.1073 39.5295L55.0662 39.5172L55.0601 39.5162L55.0191 39.5039L55.0139 39.5029L54.9729 39.4896L54.9678 39.4885L54.9278 39.4752L54.9247 39.4742L54.9031 39.467L54.9011 39.466L54.8806 39.4599L54.8785 39.4588L54.858 39.4517L54.856 39.4506L54.8354 39.4445L54.8324 39.4435L54.8118 39.4363L54.8098 39.4353L54.7893 39.4281L54.7862 39.4271L54.7657 39.4199L54.7626 39.4189L54.7421 39.4117L54.739 39.4107L54.7185 39.4035L54.7154 39.4025L54.6949 39.3943L54.6918 39.3933L54.6713 39.3861L54.6693 39.3851L54.6488 39.3779L54.6457 39.3769L54.6252 39.3687L54.6231 39.3677L54.6026 39.3595L54.5995 39.3584L54.579 39.3502L54.5759 39.3492L54.5554 39.341L54.5533 39.34L54.5328 39.3318L54.5298 39.3308L54.5092 39.3226L54.5062 39.3216L54.4856 39.3123L54.4826 39.3113L54.4621 39.3031L54.459 39.3021L54.4385 39.2939L54.4364 39.2919L54.4159 39.2837L54.4128 39.2826L54.3933 39.2744L54.3903 39.2734L54.3708 39.2652L54.3687 39.2642L54.3492 39.255L54.3461 39.254L54.3256 39.2447L54.3225 39.2437L54.302 39.2345L54.299 39.2335L54.2795 39.2242L54.2768 39.2232L54.2563 39.214L54.2542 39.213L54.2347 39.2038L54.2327 39.2027L54.2122 39.1935L54.2091 39.1915L54.1896 39.1822L54.1865 39.1812L54.166 39.172L54.164 39.171L54.1445 39.1607L54.1414 39.1587L54.1219 39.1495L54.1199 39.1484L54.0993 39.1382L54.0973 39.1362L54.0778 39.1259L54.0747 39.1249L54.0552 39.1146L54.0522 39.1136L54.0327 39.1034L54.0296 39.1013L54.0101 39.0911L54.008 39.0901L53.9886 39.0798L53.9865 39.0788L53.967 39.0685L53.965 39.0675L53.9455 39.0562L53.9424 39.0542L53.9229 39.044L53.9209 39.0429L53.9014 39.0327L53.8983 39.0306L53.8788 39.0194L53.8757 39.0173L53.8562 39.0061L53.8542 39.004L53.8347 38.9938L53.8316 38.9927L53.8121 38.9815L53.8101 38.9804L53.7906 38.9692L53.7885 38.9682L53.769 38.9569L53.766 38.9548L53.7475 38.9436L53.7465 38.9425L42.9983 32.6733L42.9962 32.6722L42.9737 32.6589L42.9706 32.6569L42.947 32.6425L42.9449 32.6415L42.9224 32.6282L42.9203 32.6262L42.8978 32.6118L42.8957 32.6108L42.8731 32.5975L42.8711 32.5964L42.8475 32.5821L42.8454 32.5811L42.8229 32.5678L42.8208 32.5667L42.7983 32.5524L42.7962 32.5514L42.7736 32.537L42.7716 32.536L42.749 32.5217L42.747 32.5196L42.7244 32.5053L42.7223 32.5042L42.6998 32.4889L42.6977 32.4879L42.6762 32.4735L42.6741 32.4715L42.6516 32.4561L42.6485 32.4541L42.6269 32.4397L42.6249 32.4387L42.6023 32.4233L42.6003 32.4213L42.5777 32.4069L42.5757 32.4049L42.5541 32.3905L42.5521 32.3895L42.5295 32.3742L42.5274 32.3721L42.5059 32.3567L42.5039 32.3547L42.4823 32.3393L42.4803 32.3383L42.4587 32.3229L42.4556 32.3209L42.4341 32.3055L42.432 32.3035L42.4105 32.2881L42.4074 32.2861L42.3859 32.2697L42.3838 32.2676L42.3623 32.2523L42.3602 32.2502L42.3387 32.2338L42.3366 32.2318L42.3151 32.2164L42.3131 32.2143L42.2925 32.198L42.2905 32.1959L42.2689 32.1795L42.2669 32.1775L42.2454 32.1611L42.2433 32.159L42.2218 32.1426L42.2197 32.1406L42.1992 32.1242L42.1961 32.1232L42.1756 32.1068L42.1725 32.1047L42.152 32.0883L42.15 32.0863L42.1294 32.0699L42.1274 32.0679L42.1069 32.0504L42.1048 32.0484L42.0843 32.032L42.0823 32.03L42.0617 32.0125L42.0597 32.0105L42.0392 31.9941L42.0371 31.9921L42.0166 31.9757L42.0146 31.9736L41.9943 31.9562L41.9923 31.9542L41.9718 31.9378L41.9697 31.9357L41.9492 31.9183L41.9472 31.9162L41.9266 31.8999L41.9246 31.8978L41.9041 31.8804L41.902 31.8794L41.8825 31.862L41.8805 31.8599L41.861 31.8425L41.8589 31.8404L41.8384 31.823L41.8364 31.821L41.8169 31.8036L41.8148 31.8015L41.7953 31.7841L41.7933 31.7821L41.7738 31.7636L41.7717 31.7616L41.7523 31.7441L41.7502 31.7421L41.7307 31.7247L41.7287 31.7226L41.7092 31.7052L41.7071 31.7032L41.6876 31.6858L41.6856 31.6837L41.6671 31.6653L41.6651 31.6642L41.6456 31.6458L41.6435 31.6438L41.6251 31.6263L41.623 31.6243L41.6045 31.6059L41.6025 31.6038L41.584 31.5854L41.582 31.5833L41.5635 31.5659L41.5615 31.5639L41.543 31.5454L41.5409 31.5434L41.5225 31.5249L41.5204 31.5229L41.502 31.5034L41.4999 31.5014L41.4825 31.4829L41.4814 31.4809L41.463 31.4614L41.4609 31.4594L41.4425 31.4409L41.4404 31.4389L41.423 31.4204L41.4209 31.4184L41.4025 31.4L41.4004 31.3979L41.383 31.3784L41.3809 31.3764L41.3625 31.3569L41.3604 31.3549L41.343 31.3354L41.3409 31.3334L41.3235 31.3139L41.3214 31.3119L41.304 31.2924L41.3019 31.2903L41.2845 31.2709L41.2824 31.2688L41.265 31.2494L41.263 31.2473L41.2455 31.2279L41.2435 31.2258L41.226 31.2063L41.224 31.2043L41.2076 31.1848L41.2055 31.1828L41.1881 31.1633L41.186 31.1613L41.1686 31.1418L41.1665 31.1398L41.1501 31.1203L41.1481 31.1182L41.1317 31.0988L41.1296 31.0967L41.1132 31.0762L41.1111 31.0742L41.0937 31.0537L41.0917 31.0517L41.0742 31.0312L41.0732 31.0291L41.0568 31.0097L41.0547 31.0076L41.0383 30.9871L41.0373 30.9851L41.0209 30.9646L41.0198 30.9625L41.0034 30.9421L41.0014 30.94L40.985 30.9195L40.9829 30.9175L40.9665 30.897L40.9655 30.8949L40.9501 30.8744L40.9491 30.8724L40.9327 30.8519L40.9306 30.8499L40.9152 30.8287L40.9132 30.8266L40.8978 30.8051L40.8968 30.803L40.8814 30.7826L40.8793 30.7805L40.8639 30.759L40.8619 30.7569L40.8465 30.7354L40.8444 30.7324L40.8291 30.7119L40.828 30.7098L40.8126 30.6893L40.8106 30.6873L40.7952 30.6658L40.7942 30.6637L40.7788 30.6422L40.7767 30.6402L40.7619 30.6197L40.7608 30.6176L40.7454 30.5961L40.7434 30.5941L40.728 30.5736L40.727 30.5715L40.7116 30.55L40.7095 30.5469L40.6952 30.5254L40.6942 30.5234L40.6798 30.5019L40.6777 30.4988L40.6634 30.4773L40.6616 30.4752L40.6473 30.4537L40.6463 30.4517L40.6319 30.4302L40.6298 30.4281L40.6155 30.4066L40.6145 30.4046L40.6001 30.383L40.5991 30.381L40.5847 30.3585L40.5837 30.3564L40.5693 30.3339L40.5683 30.3318L40.555 30.3103L40.5539 30.3083L40.5406 30.2857L40.5396 30.2837L40.5262 30.2611L40.5252 30.2591L40.5119 30.2376L40.5109 30.2355L40.4975 30.213L40.4965 30.2109L40.4832 30.1884L40.4811 30.1864L40.4688 30.1648L40.4667 30.1618L40.4534 30.1392L40.4524 30.1372L40.439 30.1147L40.438 30.1126L40.4247 30.0901L40.4237 30.088L40.4103 30.0655L40.4093 30.0624L40.396 30.0399L40.3939 30.0378L40.3816 30.0153L40.3806 30.0132L40.3683 29.9907L40.3672 29.9887L40.3539 29.9661L40.3529 29.9641L40.3406 29.9415L40.3395 29.9395L40.3272 29.9169L40.3262 29.9149L40.3139 29.8924L40.3129 29.8903L40.3006 29.8678L40.2995 29.8647L40.2872 29.8422L40.2862 29.8401L40.2739 29.8176L40.2718 29.8145L40.2606 29.792L40.2595 29.7899L40.2483 29.7674L40.2472 29.7643L40.2349 29.7408L40.2339 29.7377L40.2226 29.7141L40.2216 29.711L40.2103 29.6885L40.2093 29.6865L40.198 29.6629L40.197 29.6608L40.1857 29.6373L40.1847 29.6342L40.1734 29.6107L40.1723 29.6076L40.1611 29.584L40.16 29.5809L40.1488 29.5574L40.1477 29.5553L40.1375 29.5318L40.1364 29.5287L40.1252 29.5051L40.1241 29.5021L40.1128 29.4785L40.1108 29.4754L40.1005 29.4519L40.0995 29.4488L40.0893 29.4252L40.0882 29.4222L40.078 29.3986L40.0769 29.3966L40.0667 29.373L40.0657 29.3709L40.0554 29.3474L40.0544 29.3443L40.0441 29.3197L40.0431 29.3177L40.0328 29.2941L40.0318 29.291L40.0226 29.2675L40.0216 29.2654L40.0113 29.2419L40.0103 29.2398L40 29.2163L39.999 29.2132L39.9887 29.1886L39.9877 29.1866L39.9785 29.162L39.9774 29.1589L39.9682 29.1353L39.9672 29.1323L39.958 29.1087L39.9569 29.1056L39.9477 29.081L39.9467 29.079L39.9374 29.0544L39.9364 29.0513L39.9272 29.0268L39.9262 29.0237L39.9169 28.9991L39.9159 28.997L39.9067 28.9725L39.9056 28.9704L39.8964 28.9458L39.8954 28.9428L39.8872 28.9182L39.8861 28.9161L39.8779 28.8915L39.8769 28.8885L39.8677 28.8639L39.8667 28.8608L39.8585 28.8362L39.8574 28.8331L39.8492 28.8086L39.8482 28.8055L39.84 28.7809L39.839 28.7778L39.8308 28.7532L39.8297 28.7502L39.8215 28.7256L39.8205 28.7225L39.8123 28.6979V28.6948L39.8041 28.6692V28.6662L39.7959 28.6416L39.7949 28.6385L39.7866 28.6139L39.7856 28.6119L39.7774 28.5873L39.7764 28.5842L39.7692 28.5596L39.7682 28.5576L39.761 28.533L39.76 28.5299L39.7528 28.5053L39.7518 28.5023L39.7446 28.4777L39.7436 28.4746L39.7364 28.45L39.7354 28.448L39.7282 28.4224L39.7272 28.4193L39.721 28.3937L39.72 28.3906L39.7138 28.365L39.7128 28.3629L39.7056 28.3384L39.7046 28.3353L39.6984 28.3097V28.3066L39.6923 28.281V28.2779L39.6861 28.2523L39.6851 28.2492L39.6789 28.2236L39.6779 28.2206L39.6718 28.1949L39.6707 28.1919L39.6646 28.1663L39.6636 28.1642L39.6574 28.1386V28.1355L39.6512 28.1099L39.6502 28.1068L39.6441 28.0812L39.643 28.0782L39.6369 28.0526L39.6359 28.0495L39.6297 28.0239L39.6287 28.0218L39.6235 27.9962L39.6225 27.9931L39.6174 27.9675V27.9645L39.6123 27.9388L39.6112 27.9368L39.6061 27.9112L39.6051 27.9081L39.6 27.8825L39.5948 27.8569L39.5938 27.8538L39.5887 27.8282L39.5876 27.8251L39.5825 27.7995V27.7965L39.5774 27.7698V27.7668L39.5733 27.7401L39.5723 27.737L39.5682 27.7114V27.7084L39.5641 27.6827L39.563 27.6797L39.5589 27.6541L39.5579 27.652L39.5538 27.6264V27.6233L39.5497 27.5967V27.5947L39.5456 27.569L39.5415 27.5434L39.5405 27.5404L39.5374 27.5148V27.5117L39.5333 27.485L39.5323 27.482L39.5281 27.4553L39.5251 27.4287L39.524 27.4256L39.521 27.4V27.398L39.5169 27.3724L39.5138 27.3467V27.3437L39.5107 27.3181V27.315L39.5076 27.2894L39.5066 27.2873L39.5035 27.2617V27.2587L39.5005 27.233V27.23L39.4974 27.2033V27.2003L39.4953 27.1736V27.1708L39.4933 27.1441V27.1421L39.4902 27.1154L39.4892 27.1124L39.4871 27.0857L39.4861 27.0837L39.4851 27.0571V27.054L39.483 27.0273V27.0243L39.481 26.9976V26.9956L39.4789 26.969V26.9659L39.4769 26.9392V26.9362L39.4758 26.9095V26.9065L39.4738 26.8798V26.8768L39.4728 26.8501L39.4717 26.8235V26.8211L39.4707 26.7945L39.4697 26.7914V26.7617L39.4687 26.7351V26.733L39.4676 26.7064V26.7033L39.4666 26.6767V26.6736L39.4656 26.647V14.1733L39.4666 14.1426V14.1395L39.4676 14.109V14.1062L39.4687 14.0755V14.0727L39.4697 14.0424V14.0396L39.4707 14.0089V14.0061L39.4717 13.9754V13.9725L39.4728 13.942V13.9392L39.4738 13.9087V13.9056L39.4748 13.8752V13.8721L39.4769 13.8417V13.8389L39.4779 13.8082V13.8056L39.4789 13.7759V13.7739L39.4799 13.7442V13.7421L39.481 13.7124V13.7094L39.483 13.6786V13.6766L39.4851 13.6458V13.6438L39.4871 13.6131V13.61L39.4892 13.5803V13.5772L39.4922 13.5475L39.4933 13.5444L39.4953 13.5137V13.5116L39.4984 13.4819V13.4789L39.5015 13.4492V13.4439L39.5046 13.4136V13.4109L39.5076 13.3807V13.3777L39.5117 13.3473V13.3443L39.5158 13.3135V13.311L39.5189 13.2811L39.5199 13.278L39.523 13.2483L39.524 13.2459L39.5281 13.2162V13.2131L39.5323 13.1834L39.5333 13.1807L39.5374 13.1502L39.5384 13.1475L39.5425 13.1178V13.1147L39.5466 13.085V13.0819L39.5507 13.0522V13.0491L39.5548 13.0191V13.0162L39.5599 12.9865V12.9835L39.5651 12.9538L39.5661 12.9517L39.5712 12.922L39.5723 12.9189L39.5774 12.8892V12.8862L39.5825 12.8564V12.8534L39.5876 12.8237V12.821L39.5928 12.7913L39.5938 12.7882L39.5989 12.7585V12.7554L39.6041 12.7257L39.6051 12.7227L39.6102 12.693L39.6112 12.6899L39.6164 12.6602L39.6174 12.6571L39.6225 12.6274V12.6244L39.6276 12.5947L39.6287 12.5927L39.6348 12.563V12.5599L39.641 12.5302L39.642 12.5271L39.6482 12.4974L39.6492 12.4943L39.6553 12.4646V12.4615L39.6615 12.4329L39.6625 12.4298L39.6687 12.4001L39.6697 12.397L39.6769 12.3673V12.3642L39.6841 12.3345V12.3314L39.6912 12.3028L39.6923 12.2997L39.6995 12.27L39.7005 12.2679L39.7077 12.2393V12.2372L39.7148 12.2075L39.7159 12.2044L39.723 12.1747L39.7241 12.1716L39.7313 12.1419V12.1389L39.7384 12.1092L39.7395 12.1061L39.7477 12.0764V12.0733L39.7559 12.0446L39.7569 12.0426L39.7651 12.0139L39.7661 12.0108L39.7743 11.9821V11.9801L39.7825 11.9514L39.7836 11.9483L39.7918 11.9196L39.7928 11.9166L39.801 11.8879L39.802 11.8858L39.8102 11.8572L39.8113 11.8541L39.8195 11.8254L39.8205 11.8233L39.8297 11.7947L39.8308 11.7916L39.839 11.7629V11.7598L39.8482 11.7312L39.8492 11.7291L39.8585 11.7004V11.6984L39.8677 11.6697L39.8687 11.6676L39.8779 11.639L39.879 11.6369L39.8882 11.6082L39.8892 11.6052L39.8985 11.5775L39.8995 11.5754L39.9087 11.5478L39.9097 11.5457L39.92 11.5181L39.921 11.515L39.9313 11.4863L39.9323 11.4832L39.9426 11.4556L39.9436 11.4525L39.9538 11.4238L39.9549 11.4218L39.9651 11.3931L39.9662 11.39L39.9764 11.3613L39.9774 11.3583L39.9877 11.3306L39.9887 11.3286L39.999 11.2999L40 11.2978L40.0103 11.2692L40.0113 11.2671L40.0226 11.2394L40.0236 11.2364L40.0349 11.2087L40.0359 11.2056L40.0472 11.178L40.0482 11.1749L40.0595 11.1473L40.0605 11.1442L40.0718 11.1165L40.0728 11.1134L40.0841 11.0858L40.0851 11.0837L40.0964 11.0561L40.0975 11.053L40.1087 11.0253L40.1098 11.0223L40.1221 10.9946L40.1231 10.9926L40.1344 10.9659L40.1354 10.9639L40.1477 10.9372L40.1488 10.9342L40.16 10.9075L40.1611 10.9045L40.1734 10.8768L40.1744 10.8748L40.1867 10.8481L40.1877 10.8451L40.2 10.8184L40.2021 10.8164L40.2144 10.7897L40.2154 10.7877L40.2277 10.7611L40.2288 10.758L40.2411 10.7313L40.2421 10.7293L40.2544 10.7016L40.2554 10.6996L40.2688 10.6719L40.2698 10.6699L40.2831 10.6432L40.2842 10.6402L40.2965 10.6135L40.2975 10.6115L40.3098 10.5849L40.3108 10.5818L40.3242 10.5552L40.3252 10.5531L40.3385 10.5265L40.3395 10.5244L40.3529 10.4978L40.3549 10.4957L40.3693 10.4691L40.3713 10.4671L40.3847 10.4404L40.3857 10.4384L40.4001 10.4117L40.4011 10.4087L40.4144 10.382L40.4155 10.38L40.4288 10.3533L40.4308 10.3503L40.4442 10.3247L40.4452 10.3226L40.4585 10.296L40.4596 10.2929L40.4739 10.2663L40.4749 10.2632L40.4893 10.2376L40.4903 10.2355L40.5047 10.2099L40.5057 10.2069L40.5211 10.1802L40.5221 10.1782L40.5365 10.1526L40.5375 10.1505L40.5529 10.1249L40.5539 10.1218L40.5693 10.0952L40.5703 10.0932L40.5857 10.0675L40.5868 10.0645L40.6021 10.0389L40.6032 10.0368L40.6186 10.0112L40.6206 10.0092L40.636 9.98354L40.637 9.98149L40.6524 9.95588L40.6545 9.95281L40.6698 9.9272L40.6709 9.92515L40.6863 9.89954L40.6873 9.89749L40.7027 9.87188L40.7047 9.86983L40.7201 9.84525L40.7222 9.8432L40.7386 9.81759L40.7396 9.81554L40.755 9.78993L40.756 9.78788L40.7724 9.76227L40.774 9.76023L40.7894 9.73462L40.7914 9.73257L40.8078 9.70798L40.8088 9.70593L40.8253 9.68135L40.8273 9.6793L40.8437 9.65471L40.8458 9.65266L40.8622 9.62808L40.8632 9.62603L40.8796 9.60144L40.8817 9.5994L40.8981 9.57481L40.8991 9.57276L40.9155 9.54818L40.9165 9.54613L40.933 9.52154L40.934 9.51949L40.9514 9.49491L40.9535 9.49286L40.9699 9.46827L40.9709 9.46622L40.9884 9.44266L40.9894 9.44062L41.0068 9.41706L41.0078 9.41501L41.0253 9.39042L41.0263 9.38837L41.0437 9.36481L41.0448 9.36276L41.0622 9.33818L41.0643 9.33613L41.0817 9.31257L41.0838 9.31052L41.1012 9.28696L41.1032 9.28491L41.1217 9.26135L41.1227 9.2593L41.1402 9.23574L41.1412 9.23369L41.1586 9.21013L41.1607 9.20808L41.1792 9.18452L41.1812 9.18247L41.1986 9.15891L41.2007 9.15686L41.2192 9.1333L41.2202 9.13125L41.2386 9.10769L41.2407 9.10564L41.2592 9.08208L41.2612 9.08003L41.2807 9.05647L41.2828 9.05442L41.3012 9.03086L41.3022 9.02881L41.3207 9.00627L41.3228 9.00423L41.3412 8.98066L41.3433 8.97862L41.3617 8.95505L41.3628 8.95301L41.3823 8.92944L41.3843 8.9274L41.4028 8.90486L41.4048 8.90281L41.4243 8.88027L41.4264 8.87823L41.4459 8.85569L41.4479 8.85364L41.4674 8.8311L41.4684 8.82905L41.4879 8.80652L41.49 8.80447L41.5095 8.78193L41.5115 8.77988L41.531 8.75735L41.533 8.7553L41.5525 8.73276L41.5536 8.73071L41.5731 8.70818L41.5751 8.70613L41.5946 8.68462L41.5966 8.68257L41.6172 8.66003L41.6192 8.65798L41.6387 8.63544L41.6408 8.6334L41.6613 8.61086L41.6633 8.60881L41.6838 8.58627L41.6849 8.58422L41.7064 8.56271L41.7085 8.56066L41.729 8.53915L41.731 8.5371L41.7515 8.51559L41.7536 8.51354L41.7741 8.49203L41.7762 8.48998L41.7977 8.46847L41.7998 8.46642L41.8213 8.44491L41.8233 8.44286L41.8449 8.42135L41.8469 8.4193L41.8685 8.39881L41.8705 8.39676L41.891 8.37525L41.8921 8.3732L41.9136 8.35169L41.9157 8.34964L41.9372 8.32915L41.9393 8.3271L41.9608 8.30661L41.9629 8.30457L41.9844 8.28408L41.9864 8.28203L42.008 8.26154L42.01 8.25949L42.0326 8.23901L42.0347 8.23696L42.0562 8.21647L42.0583 8.21442L42.0798 8.19393L42.0818 8.19188L42.1044 8.1714L42.1065 8.16935L42.129 8.14886L42.1311 8.14681L42.1536 8.12632L42.1557 8.12427L42.1783 8.10379L42.1803 8.10174L42.2029 8.08227L42.2049 8.08022L42.2275 8.06076L42.2296 8.05871L42.2521 8.03925L42.2542 8.0372L42.2767 8.01774L42.2788 8.01569L42.3014 7.99623L42.3034 7.99418L42.327 7.97471L42.3291 7.97266L42.3516 7.9532L42.3537 7.95115L42.3762 7.93066L42.3783 7.92862L42.4019 7.90915L42.4039 7.9071L42.4275 7.88764L42.4296 7.88662L42.4532 7.86818L42.4552 7.86613L42.4788 7.84666L42.4809 7.84461L42.5045 7.82515L42.5065 7.8231L42.5301 7.80364L42.5322 7.80159L42.5558 7.78213L42.5578 7.78008L42.5814 7.76164L42.5835 7.76061L42.607 7.74218L42.6091 7.74013L42.6337 7.72169L42.6358 7.71964L42.6601 7.7012L42.6621 7.69915L42.6867 7.68071L42.6898 7.67866L42.7144 7.66023L42.7165 7.65818L42.7411 7.63974L42.7432 7.63769L42.7678 7.61925L42.7698 7.6172L42.7945 7.59876L42.7975 7.59774L42.8222 7.5793L42.8242 7.57827L42.8488 7.55983L42.8509 7.55779L42.8755 7.54037L42.8775 7.53832L42.9032 7.52091L42.9063 7.51988L42.9309 7.50247L42.9329 7.50042L42.9576 7.48301L42.9596 7.48198L42.9842 7.46457L42.9863 7.46252L43.0109 7.4451L43.0129 7.44305L43.0376 7.42564L43.0396 7.42462L43.0653 7.4072L43.0673 7.40618L43.0919 7.38876L43.094 7.38774L43.1186 7.37032L43.1207 7.3693L43.1463 7.35188L43.1484 7.34984L43.174 7.33242L43.1771 7.3314L43.2027 7.31501L43.2058 7.31296L43.2314 7.29657L43.2345 7.29554L43.2602 7.27915L43.2632 7.27813L43.2889 7.26174L43.2909 7.25969L43.3176 7.2433L43.3207 7.24227L43.3463 7.22588L43.3484 7.22383L43.374 7.20847L43.3751 7.20745L53.2384 1.13281L53.2394 1.13179L53.262 1.11847L53.264 1.11642L53.2866 1.1031L53.2897 1.10208L53.3122 1.08774L53.3143 1.08671L53.3379 1.0734L53.341 1.07237L53.3635 1.05905L53.3666 1.05701L53.3892 1.04369L53.3912 1.04164L53.4148 1.02832L53.4169 1.0273L53.4395 1.01398L53.4425 1.01193L53.4651 0.998615L53.4671 0.997591L53.4907 0.984274L53.4938 0.98325L53.5164 0.969932L53.5184 0.967884L53.5414 0.955591L53.5445 0.954567L53.5671 0.942274L53.5701 0.94125L53.5937 0.928957L53.5968 0.926908L53.6204 0.914615L53.6225 0.913591L53.646 0.901298L53.6481 0.900274L53.6717 0.887981L53.6737 0.885932L53.6973 0.874664L53.7004 0.872615L53.724 0.860323L53.7261 0.859298L53.7496 0.84803L53.7517 0.845981L53.7743 0.834713L53.7773 0.832664L53.8009 0.821396L53.804 0.820371L53.8276 0.808079L53.8307 0.807054L53.8543 0.795786L53.8574 0.794762L53.8809 0.783493L53.884 0.782469L53.9076 0.771201L53.9107 0.770176L53.9343 0.758908L53.9363 0.757884L53.9599 0.746615L53.963 0.745591L53.9866 0.734323L53.9897 0.733298L54.0133 0.723054L54.0164 0.72203L54.0399 0.710762L54.043 0.709737L54.0666 0.699493L54.0697 0.698469L54.0933 0.688225L54.0964 0.687201L54.12 0.676957L54.123 0.675932L54.1466 0.665689L54.1487 0.664664L54.1723 0.65442L54.1743 0.653396L54.1989 0.643152L54.202 0.642128L54.2256 0.631884L54.2287 0.630859L54.2523 0.62164L54.2554 0.620615L54.28 0.610371L54.2831 0.609347L54.3067 0.599103L54.3097 0.598079L54.3343 0.588859L54.3374 0.587835L54.362 0.578615L54.3651 0.577591L54.3887 0.568371L54.3918 0.567347L54.4164 0.558128L54.419 0.557103L54.4426 0.547884L54.4446 0.546859L54.4692 0.53764L54.4723 0.536615L54.4969 0.527396L54.5 0.526371L54.5246 0.517152H54.5277L54.5523 0.508957L54.5554 0.507932L54.58 0.499737L54.5831 0.498713L54.6077 0.490518L54.6098 0.489493L54.6344 0.481298L54.6375 0.480274L54.6621 0.472079L54.6652 0.471054L54.6898 0.462859L54.6918 0.461835L54.7165 0.45364L54.7195 0.452615L54.7441 0.445445L54.7462 0.44442L54.7708 0.436225L54.7729 0.435201L54.7975 0.42803L54.8006 0.427006L54.8252 0.419835L54.8283 0.41881L54.8529 0.410615L54.856 0.409591L54.8806 0.40242H54.8826L54.9072 0.395249L54.9103 0.394225L54.9349 0.387054H54.938L54.9626 0.379884H54.9657L54.9903 0.372713L54.9934 0.371689L55.018 0.364518L55.0201 0.363493L55.0447 0.356323L55.0478 0.355298L55.0724 0.348127L55.0755 0.347103L55.1001 0.340957L55.1032 0.339932L55.1278 0.332762L55.1309 0.331737L55.1555 0.325591L55.1586 0.324567L55.1832 0.31842H55.1863L55.2109 0.312274L55.214 0.311659L55.2386 0.305513L55.2417 0.304489L55.2663 0.298342L55.2694 0.297318L55.295 0.291171L55.297 0.290147L55.3227 0.284001L55.3258 0.282976L55.3504 0.277342L55.3535 0.276318L55.3781 0.270171L55.3812 0.269147L55.4058 0.264025L55.4089 0.263001L55.4335 0.257879L55.4355 0.256854L55.4612 0.251732H55.4642L55.4899 0.24661H55.493L55.5186 0.241489H55.5217L55.5463 0.236367L55.5494 0.235342L55.574 0.231245L55.5771 0.23022L55.6027 0.226123L55.6058 0.225098L55.6304 0.221001H55.6325L55.6571 0.215879L55.6602 0.214854L55.6848 0.210757H55.6879L55.7135 0.206659L55.7166 0.205635L55.7412 0.201537L55.7443 0.200513L55.7699 0.196415L55.773 0.195391L55.7987 0.192318H55.8017L55.8274 0.189245H55.8305L55.8551 0.185147H55.8582L55.8828 0.182074H55.8858L55.9115 0.177976H55.9146L55.9392 0.174903H55.9423L55.9669 0.17183H55.97L55.9946 0.168757H55.9977L56.0223 0.165684H56.0254L56.05 0.16261H56.0531L56.0787 0.159537H56.0818L56.1074 0.156464H56.1105L56.1351 0.153391H56.1382L56.1638 0.151342H56.1669L56.1926 0.149293H56.1956L56.2213 0.147245H56.2244L56.25 0.145196H56.2531L56.2787 0.143147H56.2818L56.3074 0.141098H56.3105L56.3351 0.13905H56.3382L56.3639 0.137001H56.3669L56.3926 0.134952H56.3957L56.4213 0.133928H56.4244L56.45 0.132903H56.4531L56.4788 0.130854H56.4818L56.5075 0.12983H56.5116L56.5372 0.128806H56.5403L56.5659 0.127781H56.569L56.5947 0.126757H56.5977L56.6234 0.125732H56.8285L56.8327 0.133723ZM56.8092 2.89958H56.7924L56.7757 2.89978H56.6565L56.6397 2.90081H56.623L56.6059 2.90183L56.5885 2.90285L56.5711 2.90388L56.5547 2.9049L56.5372 2.90593L56.5198 2.90695L56.5023 2.90798L56.4849 2.909L56.4675 2.91002L56.45 2.91105L56.4326 2.91207L56.4152 2.9131L56.3987 2.91412L56.3813 2.91617L56.3639 2.91822L56.3475 2.92027L56.331 2.92129L56.3136 2.92334L56.2972 2.92539L56.2797 2.92744L56.2623 2.92949L56.2449 2.93154L56.2285 2.93359L56.212 2.93563L56.1946 2.93768L56.1782 2.93973L56.1608 2.94281L56.1443 2.94485L56.1279 2.94793L56.1115 2.951L56.0951 2.95305L56.0787 2.95612L56.0623 2.9592L56.0459 2.96227L56.0295 2.96534L56.013 2.96842L55.9966 2.97149L55.9792 2.97456L55.9628 2.97763L55.9464 2.98173L55.93 2.98481L55.9135 2.9889L55.8971 2.99198L55.8797 2.99607L55.8633 3.00017L55.8469 3.00324L55.8305 3.00734L55.814 3.01144L55.7976 3.01554L55.7812 3.01963L55.7648 3.02373L55.7484 3.02783L55.732 3.03193L55.7166 3.03602L55.7002 3.04012L55.6838 3.04422L55.6674 3.04934L55.6509 3.05446L55.6345 3.05959L55.6181 3.06471L55.6017 3.06983L55.5853 3.07495L55.5699 3.08007L55.5535 3.0852L55.5381 3.09032L55.5217 3.09544L55.5053 3.10056L55.4889 3.10568L55.4725 3.11081L55.4571 3.11695L55.4417 3.1231L55.4253 3.12822L55.4089 3.13334L55.3935 3.13949L55.3771 3.14563L55.3617 3.15076L55.3453 3.1569L55.3299 3.16305L55.3145 3.1692L55.2981 3.17637L55.2827 3.18251L55.2663 3.18866L55.2509 3.19481L55.2345 3.20095L55.2181 3.20812L55.2016 3.21427L55.1863 3.22144L55.1709 3.22861L55.1555 3.23578L55.1401 3.24295L55.1247 3.25012L55.1093 3.25729L55.0939 3.26446L55.0786 3.27164L55.0632 3.27881L55.0478 3.28598L55.0324 3.29417L55.017 3.30237L55.0016 3.30954L54.9862 3.31773L54.9708 3.32593L54.9555 3.33412L54.9401 3.34232L54.9247 3.35051L54.9093 3.35871L54.8939 3.3669L54.8785 3.3751L54.8631 3.38329L54.8478 3.39149L54.8324 3.39968L54.817 3.40788L54.8016 3.41607L54.7862 3.42427L54.7708 3.43349L54.7554 3.44168L54.74 3.4509L54.7257 3.46012L54.7103 3.46934L54.6939 3.47959L44.8341 9.55125L44.8146 9.56354L44.7952 9.57481L44.7767 9.5871L44.7582 9.59837L44.7398 9.61066L44.7213 9.62296L44.7028 9.63525L44.6844 9.64754L44.6659 9.65983L44.6474 9.67213L44.629 9.68442L44.6105 9.69671L44.592 9.71003L44.5746 9.72232L44.5561 9.73564L44.5387 9.74793L44.5213 9.76125L44.5028 9.77354L44.4854 9.78584L44.4669 9.79915L44.4484 9.81247L44.431 9.82579L44.4136 9.8391L44.3961 9.85242L44.3787 9.86574L44.3612 9.87905L44.3438 9.89237L44.3264 9.90569L44.3089 9.91901L44.2915 9.93283L44.2751 9.94677L44.2587 9.96008L44.2412 9.9734L44.2238 9.98774L44.2063 10.0011L44.1899 10.0154L44.1735 10.0297L44.1571 10.0441L44.1407 10.0584L44.1243 10.0728L44.1079 10.0871L44.0915 10.1014L44.075 10.1168L44.0586 10.1312L44.0422 10.1455L44.0258 10.1598L44.0104 10.1752L43.994 10.1895L43.9776 10.2039L43.9622 10.2182L43.9458 10.2336L43.9294 10.249L43.913 10.2633L43.8976 10.2776L43.8822 10.293L43.8668 10.3084L43.8514 10.3237L43.836 10.3391L43.8207 10.3545L43.8053 10.3698L43.7899 10.3852L43.7745 10.4006L43.7591 10.4159L43.7437 10.4313L43.7294 10.4477L43.715 10.4631L43.6996 10.4794L43.6842 10.4958L43.6699 10.5122L43.6555 10.5276L43.6411 10.544L43.6268 10.5604L43.6124 10.5768L43.5981 10.5932L43.5837 10.6095L43.5693 10.6259L43.555 10.6423L43.5406 10.6587L43.5273 10.6751L43.5129 10.6915L43.4996 10.7089L43.4862 10.7253L43.4729 10.7417L43.4596 10.7581L43.4452 10.7755L43.4319 10.7919L43.4185 10.8083L43.4052 10.8257L43.3919 10.8431L43.3785 10.8605L43.3652 10.8779L43.3519 10.8954L43.3385 10.9117L43.3252 10.9292L43.3129 10.9466L43.3006 10.964L43.2872 10.9814L43.2749 10.9988L43.2626 11.0173L43.2503 11.0347L43.238 11.0521L43.2257 11.0695L43.2134 11.0869L43.2011 11.1043L43.1888 11.1228L43.1765 11.1412L43.1642 11.1596L43.1518 11.1781L43.1395 11.1965L43.1272 11.215L43.1159 11.2334L43.1036 11.2508L43.0913 11.2693L43.08 11.2867L43.0688 11.3051L43.0575 11.3235L43.0462 11.342L43.0349 11.3604L43.0236 11.3789L43.0123 11.3973L43.0011 11.4157L42.9898 11.4342L42.9785 11.4526L42.9682 11.4721L42.9569 11.4905L42.9457 11.51L42.9354 11.5294L42.9251 11.5489L42.9139 11.5674L42.9036 11.5858L42.8933 11.6053L42.8831 11.6237L42.8728 11.6421L42.8626 11.6616L42.8523 11.6811L42.8431 11.7005L42.8328 11.72L42.8226 11.7394L42.8133 11.7589L42.8041 11.7774L42.7949 11.7968L42.7846 11.8163L42.7754 11.8357L42.7661 11.8552L42.7569 11.8747L42.7477 11.8941L42.7385 11.9136L42.7302 11.9341L42.721 11.9535L42.7118 11.973L42.7036 11.9925L42.6954 12.013L42.6872 12.0335L42.679 12.0529L42.6707 12.0734L42.6615 12.0939L42.6533 12.1134L42.6451 12.1328L42.6369 12.1533L42.6287 12.1728L42.6205 12.1933L42.6123 12.2137L42.6041 12.2342L42.5959 12.2547L42.5887 12.2752L42.5805 12.2957L42.5733 12.3162L42.5661 12.3367L42.5589 12.3572L42.5518 12.3776L42.5446 12.3981L42.5374 12.4186L42.5302 12.4391L42.523 12.4596L42.5159 12.4801L42.5087 12.5006L42.5015 12.5211L42.4943 12.5415L42.4882 12.562L42.482 12.5825L42.475 12.604L42.4689 12.6245L42.4627 12.645L42.4566 12.6665L42.4504 12.687L42.4443 12.7075L42.4381 12.728L42.4324 12.7495L42.4262 12.771L42.42 12.7925L42.4149 12.813L42.4088 12.8335L42.403 12.855L42.3969 12.8765L42.3917 12.898L42.3866 12.9195L42.3815 12.94L42.3763 12.9615L42.3712 12.9831L42.3661 13.0046L42.361 13.0261L42.3565 13.0476L42.3524 13.0691L42.3483 13.0906L42.3442 13.1121L42.3401 13.1336L42.336 13.1552L42.3309 13.1767L42.3268 13.1982L42.3227 13.2197L42.3186 13.2412L42.3145 13.2627L42.3114 13.2842L42.3073 13.3057L42.3032 13.3273L42.3001 13.3488L42.296 13.3703L42.2929 13.3918L42.2888 13.4133L42.2858 13.4358L42.2827 13.4584L42.2796 13.4799L42.2765 13.5014L42.2735 13.5229L42.2704 13.5444L42.2673 13.5659L42.2642 13.5875L42.2618 13.61L42.2597 13.6315L42.2566 13.654L42.2546 13.6755L42.2525 13.6971L42.2505 13.7196L42.2484 13.7411L42.2464 13.7636L42.2443 13.7852L42.2423 13.8077L42.2402 13.8292L42.2382 13.8507L42.2361 13.8733L42.2341 13.8958L42.233 13.9183L42.232 13.9398L42.231 13.9624L42.23 13.9849L42.2289 14.0075L42.2279 14.03V14.0525L42.2269 14.074L42.2259 14.0955L42.2248 14.1171V14.1396L42.2242 14.1621V26.5849L42.2252 26.6033V26.6392L42.2263 26.6576V26.6935L42.2273 26.7109L42.2283 26.7294L42.2294 26.7468L42.2304 26.7652L42.2314 26.7836L42.2324 26.8011L42.2335 26.8195L42.2345 26.8379L42.2365 26.8553L42.2376 26.8738L42.2386 26.8912L42.2406 26.9086L42.2427 26.926L42.2437 26.9434L42.2458 26.9609L42.2478 26.9783L42.2499 26.9957L42.2519 27.0131L42.254 27.0315L42.256 27.049L42.2581 27.0664L42.2601 27.0838L42.2622 27.1012L42.2642 27.1186L42.2673 27.136L42.2704 27.1534L42.2724 27.1709L42.2755 27.1883L42.2786 27.2057L42.2806 27.2241L42.2837 27.2415L42.2868 27.259L42.2899 27.2764L42.2929 27.2938L42.296 27.3112L42.2991 27.3286L42.3022 27.346L42.3053 27.3634L42.3086 27.3809L42.3127 27.3983L42.3158 27.4157L42.3199 27.4331L42.324 27.4505L42.3276 27.4679L42.3317 27.4854L42.3358 27.5028L42.3399 27.5202L42.344 27.5376L42.3481 27.555L42.3522 27.5714L42.3563 27.5888L42.361 27.6062L42.3651 27.6236L42.3702 27.6411L42.3743 27.6574L42.3794 27.6749L42.3846 27.6913L42.3892 27.7087L42.3943 27.7251L42.3994 27.7414L42.4035 27.7589L42.4087 27.7763L42.4138 27.7927L42.4189 27.8101L42.424 27.8275L42.4292 27.8439L42.4353 27.8603L42.4405 27.8777L42.4456 27.8941L42.4507 27.9105L42.4558 27.9269L42.462 27.9443L42.4682 27.9607L42.4743 27.9771L42.4805 27.9934L42.4866 28.0098L42.4928 28.0262L42.4989 28.0426L42.5051 28.06L42.5112 28.0764L42.5174 28.0928L42.5235 28.1092L42.5297 28.1266L42.5367 28.143L42.5433 28.1594L42.5505 28.1758L42.5577 28.1922L42.5649 28.2086L42.5721 28.225L42.5792 28.2413L42.5854 28.2577L42.5926 28.2741L42.5998 28.2905L42.6069 28.3069L42.6141 28.3233L42.6213 28.3397L42.6285 28.3561L42.6357 28.3714L42.6428 28.3878L42.65 28.4032L42.6572 28.4186L42.6654 28.4339L42.6736 28.4503L42.6818 28.4667L42.69 28.4821L42.6972 28.4974L42.7054 28.5128L42.7136 28.5282L42.7218 28.5435L42.73 28.5589L42.7382 28.5743L42.7464 28.5896L42.7547 28.605L42.7629 28.6204L42.7711 28.6357L42.7793 28.6511L42.7885 28.6665L42.7967 28.6818L42.8059 28.6972L42.8152 28.7126L42.8244 28.7279L42.8336 28.7423L42.8429 28.7576L42.8521 28.772L42.8613 28.7874L42.8706 28.8027L42.8798 28.8181L42.889 28.8334L42.8983 28.8488L42.9085 28.8632L42.9178 28.8785L42.927 28.8939L42.9367 28.9082L42.946 28.9226L42.9562 28.9369L42.9655 28.9523L42.9747 28.9666L42.9849 28.981L42.9946 28.9963L43.0048 29.0107L43.0141 29.025L43.0243 29.0394L43.0336 29.0537L43.0438 29.068L43.0541 29.0824L43.0643 29.0967L43.0746 29.1111L43.0853 29.1254L43.0955 29.1397L43.1068 29.1541L43.1171 29.1674L43.1273 29.1817L43.1376 29.1961L43.1489 29.2104L43.1602 29.2248L43.1714 29.2381L43.1827 29.2524L43.194 29.2668L43.2053 29.2811L43.2166 29.2944L43.2279 29.3077L43.2381 29.3221L43.2504 29.3354L43.2617 29.3487L43.273 29.362L43.2843 29.3753L43.2956 29.3887L43.3068 29.402L43.3191 29.4153L43.3315 29.4286L43.3438 29.4419L43.3561 29.4542L43.3684 29.4675L43.3807 29.4809L43.392 29.4942L43.4043 29.5065L43.4166 29.5188L43.4289 29.5321L43.4412 29.5454L43.4535 29.5577L43.4658 29.57L43.4781 29.5823L43.4905 29.5946L43.5028 29.6079L43.5161 29.6212L43.5284 29.6335L43.5407 29.6458L43.5541 29.6581L43.5664 29.6704L43.5797 29.6827L43.593 29.695L43.6053 29.7073L43.6187 29.7195L43.632 29.7308L43.6453 29.7431L43.6587 29.7544L43.672 29.7667L43.6854 29.779L43.6987 29.7902L43.712 29.8015L43.7254 29.8138L43.7387 29.8251L43.752 29.8374L43.7654 29.8496L43.7787 29.8609L43.7931 29.8722L43.8074 29.8834L43.8208 29.8947L43.8351 29.906L43.8495 29.9173L43.8638 29.9285L43.8782 29.9398L43.8926 29.9511L43.9069 29.9623L43.9213 29.9736L43.9356 29.9849L43.949 29.9951L43.9633 30.0054L43.9777 30.0166L43.9921 30.0269L44.0064 30.0371L44.0208 30.0473L44.0351 30.0586L44.0495 30.0689L44.0639 30.0791L44.0782 30.0893L44.0926 30.1006L44.1069 30.1109L44.1213 30.1211L44.1367 30.1313L44.1521 30.1416L44.1664 30.1518L44.1808 30.1621L44.1952 30.1723L44.2106 30.1815L44.2259 30.1918L44.2403 30.202L44.2557 30.2123L44.2711 30.2215L44.2865 30.2317L44.3019 30.242L44.3172 30.2512L44.3326 30.2604L44.348 30.2696L44.3634 30.2799L44.3788 30.2891L44.3952 30.2993L55.1342 36.5676L55.1475 36.5748L55.1598 36.5819L55.1721 36.5891L55.1844 36.5953L55.1957 36.6024L55.207 36.6086L55.2183 36.6147L55.2306 36.6219L55.2429 36.628L55.2552 36.6342L55.2675 36.6403L55.2798 36.6465L55.2921 36.6526L55.3044 36.6588L55.3167 36.6649L55.329 36.6711L55.3414 36.6762L55.3537 36.6823L55.366 36.6874L55.3783 36.6936L55.3906 36.6997L55.4029 36.7059L55.4152 36.711L55.4275 36.7172L55.4398 36.7223L55.4521 36.7274L55.4645 36.7335L55.4768 36.7387L55.4891 36.7438L55.5014 36.7499L55.5137 36.7551L55.526 36.7602L55.5383 36.7653L55.5506 36.7704L55.5629 36.7755L55.5752 36.7807L55.5875 36.7858L55.5999 36.7909L55.6132 36.796L55.6255 36.8001L55.6388 36.8053L55.6511 36.8093L55.6635 36.8134L55.6758 36.8186L55.6881 36.8227L55.7004 36.8268L55.7127 36.8319L55.725 36.836L55.7373 36.8401L55.7507 36.8442L55.763 36.8483L55.7742 36.8524L55.8009 36.8606L55.8266 36.8688L55.8522 36.877L55.8778 36.8841L55.9035 36.8913L55.9291 36.8985L55.9548 36.9046L55.9804 36.9118L56.0061 36.9179L56.0317 36.9241L56.0574 36.9302L56.083 36.9364L56.1087 36.9415L56.1353 36.9466L56.161 36.9517L56.1866 36.9569L56.2123 36.962L56.2379 36.9661L56.2646 36.9702L56.2912 36.9743L56.3179 36.9784L56.3446 36.9825L56.3713 36.9855L56.3969 36.9886L56.4236 36.9917L56.4502 36.9948L56.4769 36.9968L56.5025 36.9989L56.5292 37.0019L56.5559 37.004L56.5826 37.006L56.6082 37.0081L56.6339 37.0091L56.6595 37.0101L56.6862 37.0112L56.7128 37.0122L56.7395 37.0132H56.8195L56.8462 37.0122H56.8729L56.8995 37.0112L56.9262 37.0101L56.9518 37.0091L56.9785 37.0071L57.0052 37.005L57.0319 37.003L57.0585 37.0009L57.0852 36.9989L57.1119 36.9968L57.1385 36.9937L57.1642 36.9907L57.1909 36.9876L57.2165 36.9845L57.2432 36.9814L57.2698 36.9784L57.2955 36.9743L57.3222 36.9702L57.3478 36.9661L57.3734 36.961L57.3991 36.9558L57.4247 36.9517L57.4514 36.9466L57.477 36.9415L57.5027 36.9364L57.5294 36.9302L57.555 36.9241L57.5817 36.9179L57.6073 36.9118L57.633 36.9046L57.6586 36.8974L57.6843 36.8903L57.7099 36.8831L57.7355 36.8749L57.7622 36.8667L57.7735 36.8636L57.7868 36.8595L57.7991 36.8554L57.8115 36.8514L57.8238 36.8473L57.8371 36.8432L57.8494 36.8391L57.8617 36.835L57.874 36.8309L57.8874 36.8257L57.8997 36.8206L57.912 36.8165L57.9253 36.8124L57.9376 36.8083L57.9499 36.8042L57.9622 36.8001L57.9746 36.795L57.9869 36.7899L57.9992 36.7858L58.0115 36.7807L58.0238 36.7755L58.0361 36.7704L58.0484 36.7653L58.0607 36.7602L58.0741 36.7551L58.0864 36.7499L58.0987 36.7448L58.111 36.7387L58.1233 36.7335L58.1356 36.7284L58.1479 36.7233L58.1602 36.7182L58.1725 36.712L58.1848 36.7059L58.1971 36.7008L58.2095 36.6956L58.2218 36.6905L58.2341 36.6854L58.2464 36.6793L58.2577 36.6731L58.27 36.667L58.2823 36.6608L58.2946 36.6547L58.3059 36.6485L58.3182 36.6424L58.3305 36.6362L58.3428 36.6291L58.3541 36.6229L58.3664 36.6168L58.3777 36.6096L58.39 36.6024L58.4033 36.5953L70.2942 29.9818L70.3086 29.9746L70.3209 29.9674L70.3332 29.9603L70.3466 29.9531L70.3589 29.9459L70.3712 29.9377L70.3835 29.9295L70.3958 29.9224L70.4081 29.9152L70.4204 29.908L70.4327 29.8998L70.445 29.8927L70.4573 29.8845L70.4697 29.8773L70.482 29.8691L70.4943 29.8609L70.5056 29.8527L70.5179 29.8445L70.5302 29.8363L70.5425 29.8281L70.5548 29.8199L70.5661 29.8117L70.5774 29.8035L70.5897 29.7954L70.602 29.7872L70.6143 29.779L70.6256 29.7708L70.6369 29.7626L70.6481 29.7544L70.6594 29.7462L70.6707 29.738L70.682 29.7298L70.6933 29.7206L70.7046 29.7124L70.7158 29.7042L70.7271 29.696L70.7384 29.6878L70.7497 29.6786L70.761 29.6693L70.7723 29.6601L70.7835 29.6509L70.7948 29.6427L70.8061 29.6335L70.8174 29.6243L70.8277 29.6161L70.8379 29.6069L70.8482 29.5976L70.8595 29.5884L70.8697 29.5792L70.88 29.57L70.8902 29.5608L70.9005 29.5515L70.9107 29.5423L70.921 29.5331L70.9313 29.5229L70.9415 29.5136L70.9518 29.5034L70.962 29.4942L70.9723 29.485L70.9825 29.4757L70.9928 29.4655L71.0031 29.4553L71.0133 29.446L71.0226 29.4368L71.0328 29.4266L71.0431 29.4163L71.0533 29.4061L71.0636 29.3958L71.0728 29.3856L71.082 29.3753L71.0913 29.3651L71.1015 29.3549L71.1108 29.3446L71.12 29.3344L71.1292 29.3241L71.1385 29.3139L71.1477 29.3036L71.1569 29.2934L71.1662 29.2832L71.1764 29.2729L71.1857 29.2627L71.1949 29.2524L71.2041 29.2422L71.2134 29.2319L71.2226 29.2217L71.2318 29.2114L71.241 29.2012L71.2503 29.191L71.2595 29.1807L71.2677 29.1694L71.2769 29.1582L71.2852 29.1479L71.2944 29.1367L71.3026 29.1254L71.3108 29.1141L71.319 29.1029L71.3272 29.0916L71.3354 29.0803L71.3436 29.0691L71.3518 29.0578L71.36 29.0465L71.3682 29.0353L71.3764 29.024L71.3847 29.0127L71.3929 29.0014L71.4011 28.9892L71.4093 28.9779L71.4175 28.9666L71.4257 28.9553L71.4339 28.9441L71.4421 28.9328L71.4503 28.9205L71.4585 28.9093L71.4667 28.898L71.4749 28.8867L71.4831 28.8754L71.4903 28.8632L71.4975 28.8519L71.5047 28.8396L71.5119 28.8283L71.519 28.816L71.5262 28.8037L71.5344 28.7914L71.5416 28.7792L71.5488 28.7679L71.556 28.7556L71.5631 28.7433L71.5703 28.731L71.5775 28.7187L71.5837 28.7064L71.5908 28.6941L71.598 28.6818L71.6052 28.6695L71.6124 28.6573L71.6196 28.645L71.6267 28.6327L71.6339 28.6204L71.6411 28.6081L71.6473 28.5958L71.6544 28.5835L71.6616 28.5712L71.6678 28.5589L71.6739 28.5466L71.6801 28.5343L71.6862 28.522L71.6924 28.5097L71.6985 28.4974L71.7047 28.4841L71.7109 28.4718L71.716 28.4585L71.7221 28.4462L71.7283 28.4329L71.7334 28.4206L71.7396 28.4083L71.7447 28.396L71.7509 28.3837L71.757 28.3704L71.7621 28.3581L71.7683 28.3448L71.7745 28.3315L71.7796 28.3182L71.7847 28.3049L71.7898 28.2915L71.795 28.2782L71.8001 28.2649L71.8063 28.2516L71.8114 28.2383L71.8165 28.226L71.8216 28.2127L71.8268 28.1993L71.8319 28.186L71.837 28.1727L71.8422 28.1604L71.8463 28.1471L71.8514 28.1348L71.8565 28.1215L71.8616 28.1082L71.8657 28.0949L71.8699 28.0815L71.874 28.0682L71.8791 28.0549L71.8832 28.0416L71.8883 28.0283L71.8924 28.016L71.8965 28.0027L71.9006 27.9893L71.9047 27.976L71.9088 27.9627L71.9129 27.9494L71.917 27.9351L71.9211 27.9217L71.9252 27.9084L71.9283 27.8951L71.9324 27.8818L71.9355 27.8685L71.9396 27.8552L71.9427 27.8408L71.9468 27.8275L71.9499 27.8142L71.9529 27.8009L71.956 27.7875L71.9591 27.7742L71.9622 27.7609L71.9652 27.7466L71.9683 27.7333L71.9714 27.7199L71.9745 27.7066L71.9776 27.6933L71.9806 27.679L71.9837 27.6646L71.9868 27.6503L71.9888 27.6359L71.9919 27.6226L71.995 27.6093L71.9981 27.596L72.0012 27.5816L72.0032 27.5673L72.0053 27.553L72.0073 27.5386L72.0094 27.5243L72.0114 27.5099L72.0135 27.4956L72.0155 27.4823L72.0176 27.4679L72.0196 27.4536L72.0217 27.4393L72.0237 27.4249L72.0247 27.4116L72.0258 27.3973L72.0278 27.3829L72.0299 27.3696L72.0319 27.3553L72.033 27.3409L72.034 27.3266L72.035 27.3122L72.036 27.2979L72.0381 27.2835L72.0391 27.2692L72.0401 27.2559L72.0412 27.2415L72.0422 27.2272L72.0432 27.2129L72.0442 27.1985L72.0453 27.1842V27.1698L72.0463 27.1555L72.0473 27.1412L72.0483 27.1268L72.0494 27.1125V27.0274L72.0504 27.0111V12.9932L72.0494 12.9789V12.9269L72.0483 12.9136L72.0473 12.9008L72.0463 12.888V12.8619L72.0453 12.8488V12.8229L72.0442 12.8117L72.0422 12.7842L72.0401 12.7586L72.0381 12.733L72.035 12.707L72.033 12.6814L72.0299 12.6558L72.0268 12.6304L72.0237 12.6048L72.0206 12.5793L72.0176 12.5539L72.0135 12.5285L72.0094 12.5031L72.0053 12.4775L72.0012 12.4524L71.997 12.4278L71.9919 12.4033L71.9878 12.3787L71.9827 12.3541L71.9776 12.3295L71.9724 12.3049L71.9663 12.2803L71.9601 12.2557L71.954 12.2312L71.9478 12.2066L71.9417 12.182L71.9355 12.1574L71.9283 12.1338L71.9211 12.1103L71.914 12.0857L71.9068 12.0611L71.8986 12.0375L71.8914 12.014L71.8832 11.9894L71.875 11.9658L71.8668 11.9423L71.8586 11.9187L71.8493 11.8952L71.8401 11.8716L71.8309 11.848L71.8216 11.8245L71.8124 11.8009L71.8032 11.7784L71.7929 11.7548L71.7827 11.7323L71.7724 11.7097L71.7621 11.6872L71.7509 11.6647L71.7406 11.6421L71.7293 11.6196L71.718 11.5971L71.7068 11.5745L71.6955 11.552L71.6832 11.5305L71.6708 11.5079L71.6596 11.4854L71.6473 11.4639L71.6349 11.4424L71.6226 11.4209L71.6093 11.3994L71.597 11.3778L71.5837 11.3563L71.5703 11.3348L71.557 11.3143L71.5426 11.2938L71.5283 11.2723L71.5149 11.2518L71.5016 11.2314L71.4872 11.2109L71.4729 11.1904L71.4575 11.1699L71.4431 11.1494L71.4277 11.1299L71.4124 11.1094L71.397 11.09L71.3816 11.0695L71.3652 11.05L71.3488 11.0306L71.3334 11.0111L71.317 10.9916L71.3005 10.9722L71.2841 10.9537L71.2667 10.9353L71.2493 10.9158L71.2318 10.8964L71.2144 10.8779L71.1969 10.8595L71.1795 10.8411L71.161 10.8226L71.1426 10.8052L71.1251 10.7868L71.1067 10.7694L71.0882 10.7519L71.0697 10.7345L71.0513 10.7171L71.0328 10.6997L71.0133 10.6823L70.9949 10.6649L70.9764 10.6474L70.9569 10.6311L70.9374 10.6147L70.9179 10.5983L70.8984 10.5819L70.8779 10.5655L70.8584 10.5491L70.8389 10.5337L70.8184 10.5184L70.7979 10.503L70.7774 10.4876L70.7569 10.4723L70.7353 10.4579L70.7138 10.4436L70.6933 10.4293L70.6717 10.4149L70.6492 10.3995L70.6389 10.3924L70.6287 10.3852L70.6174 10.378L70.6061 10.3709L70.5958 10.3637L70.5845 10.3565L70.5733 10.3494L70.562 10.3422L70.5507 10.336L70.5394 10.3299L70.5281 10.3227L70.5179 10.3155L70.5066 10.3084L70.4932 10.3012L58.8608 3.4593L58.8444 3.45008L58.829 3.44086L58.8136 3.43267L58.7983 3.42447L58.7839 3.41628L58.7695 3.40808L58.7542 3.39989L58.7388 3.39169L58.7234 3.3835L58.708 3.3753L58.6926 3.36711L58.6772 3.35891L58.6618 3.35072L58.6464 3.34355L58.6311 3.33638L58.6157 3.32921L58.6003 3.32204L58.5849 3.31384L58.5695 3.30667L58.5541 3.29847L58.5387 3.2913L58.5233 3.28311L58.508 3.27594L58.4926 3.26877L58.4772 3.2616L58.4618 3.25442L58.4464 3.24725L58.431 3.24008L58.4146 3.23291L58.3992 3.22574L58.3838 3.21857L58.3674 3.2114L58.352 3.20423L58.3367 3.19808L58.3213 3.19091L58.3059 3.18477L58.2905 3.17862L58.2751 3.17247L58.2597 3.16633L58.2443 3.16018L58.2289 3.15403L58.2136 3.14789L58.1982 3.14174L58.1818 3.1356L58.1653 3.12945L58.15 3.12433L58.1336 3.11818L58.1182 3.11203L58.1018 3.10691L58.0853 3.10179L58.0689 3.09564L58.0525 3.09052L58.0371 3.0854L58.0217 3.08028L58.0053 3.07516L57.9899 3.07003L57.9735 3.06491L57.9571 3.05979L57.9407 3.05467L57.9243 3.05057L57.9079 3.04647L57.8915 3.04238L57.8751 3.03828L57.8586 3.03418L57.8422 3.02906L57.8258 3.02496L57.8094 3.02086L57.793 3.01677L57.7766 3.01267L57.7602 3.0096L57.7438 3.0055L57.7273 3.0014L57.7109 2.9973L57.6945 2.99321L57.6781 2.98911L57.6617 2.98603L57.6453 2.98194L57.6289 2.97784L57.6114 2.97477L57.595 2.97169L57.5786 2.96862L57.5622 2.96555L57.5458 2.96247L57.5294 2.9594L57.513 2.95633L57.4965 2.95325L57.4801 2.95018L57.4627 2.94711L57.4452 2.94403L57.4288 2.94096L57.4124 2.93891L57.396 2.93686L57.3796 2.93379L57.3632 2.93174L57.3468 2.92867L57.3293 2.92662L57.3129 2.92457L57.2965 2.92252L57.2801 2.92047L57.2637 2.91843L57.2473 2.9174L57.2298 2.91535L57.2134 2.9133L57.196 2.91228L57.1796 2.91023L57.1621 2.90921L57.1457 2.90818L57.1293 2.90716L57.1119 2.90613L57.0955 2.90408L57.079 2.90306L57.0626 2.90203L57.0462 2.90101L57.0288 2.89999L57.0124 2.89896H56.996L56.9785 2.89794H56.9375L56.9211 2.89691L56.9047 2.89589L56.8872 2.89486H56.8205L56.8092 2.89958Z" fill="#0083C0"/> +<path d="M48.9628 10.205H53.3006V21.6954C53.3006 23.5188 53.3507 24.7005 53.4512 25.2408C53.6246 26.1091 53.945 26.7126 54.5977 27.2384C55.2505 27.7639 56.0128 27.9131 57.145 27.9131C58.2953 27.9131 58.6804 27.7352 59.2646 27.2383C59.8483 26.7404 60.2002 26.2682 60.3192 25.5439C60.4371 24.8197 60.6341 23.6191 60.6341 21.9401V10.2048H64.9711V21.3482C64.9711 23.895 64.8613 25.6941 64.6418 26.7457C64.4223 27.7974 64.0181 28.685 63.4293 29.4086C62.8405 30.1322 62.0527 30.7085 61.0669 31.1377C60.0801 31.5672 58.7938 31.7818 57.2049 31.7818C55.2877 31.7818 53.8331 31.5478 52.8432 31.0801C51.8523 30.6121 51.0696 30.0042 50.4942 29.2566C49.9187 28.5088 49.5402 27.725 49.3576 26.905C49.0929 25.6895 48.9596 23.895 48.9596 21.5216V10.2051L48.9628 10.205Z" fill="white"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M112.772 25.5572V13.0284C112.772 11.4063 111.902 9.90856 110.492 9.10369C107.455 7.37042 102.087 4.30719 98.832 2.44925C97.137 1.48182 95.0509 1.50374 93.3768 2.50662C90.6552 4.13673 86.4574 6.6513 83.5314 8.40373C81.4586 9.64529 80.1901 11.8826 80.1901 14.296V26.5406C80.1901 28.5822 81.2753 30.4711 83.041 31.5017L93.7829 37.772C95.2113 38.6058 96.9744 38.6232 98.4198 37.8201L110.313 31.2046C111.831 30.3595 112.773 28.7614 112.773 27.0261V25.5561L112.772 25.5572Z" fill="#33BA91"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M96.1666 0.355713H96.1945L96.2193 0.35602H96.2221L96.247 0.35643H96.2498L96.2748 0.357454H96.2776L96.3025 0.358479H96.3053L96.3303 0.359503H96.3332L96.358 0.360528H96.3609L96.3857 0.361552H96.3886L96.4136 0.362576H96.4164L96.4413 0.363601H96.4441L96.469 0.364625L96.4719 0.365649L96.4968 0.366674L96.4999 0.367698L96.5255 0.369747H96.5286L96.5543 0.371796H96.5573L96.583 0.373845L96.586 0.374869L96.6107 0.376918H96.6137L96.6384 0.378967H96.6414L96.6661 0.381015L96.6691 0.38204L96.6938 0.383064L96.6968 0.384088L96.7215 0.386137H96.7245L96.7492 0.388186H96.7522L96.7768 0.390235H96.7799L96.8045 0.392284H96.8076L96.8322 0.394332L96.8353 0.395357L96.861 0.397406L96.864 0.39843L96.8887 0.401503H96.8917L96.9164 0.403552L96.9194 0.404576L96.944 0.407649H96.9471L96.9717 0.410723H96.9748L97.0005 0.413796H97.0035L97.0282 0.416869L97.0312 0.417893L97.0559 0.420967H97.0589L97.0836 0.42404H97.0866L97.1113 0.427113L97.1143 0.428137L97.1389 0.432235L97.142 0.433259L97.1666 0.437357L97.1697 0.438381L97.1943 0.442479L97.1974 0.443503L97.222 0.447601H97.2251L97.2497 0.451698L97.2528 0.452723L97.2774 0.45682L97.2805 0.457845L97.3051 0.461942L97.3082 0.462967L97.3328 0.467064L97.3359 0.468089L97.3605 0.472186L97.3636 0.47321L97.3882 0.478332H97.3913L97.4159 0.483454L97.419 0.484479L97.4436 0.488576H97.4467L97.4713 0.492674L97.4744 0.493698L97.499 0.497796L97.5021 0.49882L97.5267 0.503942L97.5298 0.504967L97.5544 0.510089H97.5564L97.5811 0.51521H97.5841L97.6088 0.520332L97.6118 0.521357L97.6365 0.526479L97.6395 0.527503L97.6642 0.532625L97.6672 0.533649L97.6918 0.538771L97.6949 0.539796L97.7195 0.544918H97.7216L97.7462 0.551064L97.7493 0.552089L97.7739 0.558235L97.777 0.559259L97.8016 0.565406L97.8047 0.56643L97.8293 0.572576H97.8314L97.856 0.578723L97.8591 0.579747L97.8837 0.585893L97.8867 0.586918L97.9114 0.594088H97.9144L97.9391 0.600235H97.9421L97.9668 0.607406L97.9688 0.60843L97.9934 0.614576L97.9965 0.615601L98.0211 0.622771H98.0242L98.0488 0.629942L98.0519 0.630967L98.0765 0.638137L98.0796 0.639162L98.1042 0.646332L98.1073 0.647357L98.1319 0.654527H98.135L98.1596 0.662723L98.1627 0.663747L98.1873 0.670918L98.1904 0.671942L98.214 0.680137L98.2171 0.681162L98.2417 0.688333H98.2447L98.2694 0.695503L98.2724 0.696528L98.2971 0.704723L98.3001 0.705747L98.3248 0.713942L98.3268 0.714967L98.3514 0.723162L98.3545 0.724186L98.3781 0.732381L98.3812 0.733406L98.4048 0.741601L98.4078 0.742625L98.4314 0.75082L98.4345 0.751845L98.4581 0.76004L98.4612 0.761064L98.4848 0.769259L98.4879 0.770284L98.5115 0.779503L98.5145 0.780528L98.5381 0.788723L98.5412 0.789747L98.5648 0.798967L98.5679 0.799991L98.5915 0.80921L98.5935 0.810235L98.6171 0.819454L98.6202 0.820479L98.6438 0.829698L98.6469 0.830723L98.6704 0.839942L98.6735 0.840967L98.6971 0.850186L98.7002 0.85121L98.7238 0.86043L98.7269 0.861454L98.7505 0.870674L98.7525 0.871698L98.7761 0.881942L98.7782 0.882967L98.8018 0.892186L98.8048 0.893211L98.8284 0.903454L98.8315 0.904479L98.8551 0.914723L98.8582 0.915747L98.8818 0.925991L98.8838 0.927015L98.9074 0.937259L98.9105 0.938284L98.9341 0.948528L98.9371 0.949552L98.9607 0.959796L98.9628 0.961845L98.9864 0.972089L98.9895 0.973113L99.012 0.983357L99.0151 0.984381L99.0387 0.99565L99.0418 0.996674L99.0644 1.00794L99.0674 1.00897L99.09 1.02024L99.0931 1.02126L99.1167 1.03253L99.1187 1.03355L99.1423 1.04482L99.1444 1.04584L99.1669 1.05711L99.17 1.05814L99.1926 1.06941L99.1956 1.07043L99.2182 1.0817L99.2213 1.08272L99.2439 1.09502L99.2469 1.09604L99.2705 1.10731L99.2736 1.10936L99.2962 1.12063L99.2982 1.12165L99.3208 1.13394L99.3239 1.13599L99.3464 1.14828L99.3485 1.14931L99.3711 1.1616L99.3731 1.16263L99.3957 1.17492L99.3977 1.17594L99.4203 1.18823L99.4234 1.19028L99.4459 1.20258L99.449 1.20463L99.4716 1.21692L99.4736 1.21897L99.4962 1.23126L99.4983 1.23331L99.5208 1.24663L99.5239 1.24765L99.5465 1.26097L111.199 7.90926L111.219 7.92053L111.222 7.92155L111.241 7.93282L111.245 7.93385L111.263 7.94511L111.266 7.94716L111.285 7.95843L111.287 7.96048L111.306 7.97175L111.309 7.97277L111.329 7.98404L111.332 7.98506L111.35 7.99633L111.353 7.99838L111.372 8.00965L111.374 8.01067L111.392 8.02194L111.394 8.02297L111.413 8.03526L111.415 8.03628L111.434 8.04755L111.437 8.0496L111.456 8.06087L111.459 8.06292L111.476 8.07419L111.478 8.07521L111.497 8.08648L111.5 8.0875L111.518 8.09877L111.52 8.10082L111.539 8.11209L111.542 8.11414L111.56 8.12643L111.563 8.12746L111.581 8.13975L111.584 8.14077L111.603 8.15306L111.605 8.15409L111.623 8.16638L111.625 8.16741L111.643 8.1797L111.646 8.18072L111.663 8.19302L111.665 8.19507L111.683 8.20736L111.686 8.20941L111.703 8.2217L111.705 8.22272L111.723 8.23502L111.725 8.23604L111.742 8.24833L111.745 8.25038L111.763 8.2637L111.766 8.26575L111.783 8.27804L111.786 8.28009L111.804 8.29341L111.806 8.29443L111.823 8.30775L111.825 8.3098L111.844 8.32311L111.846 8.32414L111.863 8.33746L111.865 8.3395L111.883 8.35282L111.885 8.35487L111.902 8.36819L111.904 8.36921L111.922 8.38253L111.924 8.38458L111.941 8.39789L111.943 8.39994L111.96 8.41326L111.962 8.41531L111.979 8.42863L111.981 8.42965L111.997 8.44399L112 8.44604L112.017 8.46038L112.019 8.46243L112.036 8.47575L112.038 8.4778L112.055 8.49111L112.057 8.49316L112.073 8.5075L112.075 8.50853L112.093 8.52287L112.096 8.52492L112.129 8.55155L112.133 8.55565L112.166 8.58433L112.17 8.58843L112.202 8.61609L112.206 8.62019L112.237 8.64887L112.243 8.65297L112.274 8.68165L112.279 8.68575L112.31 8.71546L112.315 8.71955L112.346 8.74926L112.35 8.75336L112.381 8.78306L112.385 8.78716L112.416 8.81687L112.42 8.82097L112.451 8.85068L112.455 8.85477L112.486 8.8855L112.49 8.8896L112.52 8.92033L112.524 8.92443L112.553 8.95516L112.558 8.95926L112.587 8.98999L112.591 8.99409L112.62 9.02585L112.624 9.02994L112.653 9.06067L112.657 9.06477L112.686 9.09653L112.689 9.10063L112.718 9.13238L112.722 9.1375L112.749 9.16926L112.753 9.17336L112.781 9.20614L112.785 9.21126L112.813 9.24404L112.817 9.24814L112.844 9.28092L112.848 9.28502L112.875 9.3178L112.878 9.32189L112.904 9.35468L112.907 9.35877L112.934 9.39258L112.938 9.39668L112.965 9.43048L112.968 9.43458L112.993 9.46838L112.997 9.4735L113.022 9.50731L113.025 9.51243L113.051 9.54726L113.054 9.55238L113.079 9.58721L113.082 9.59131L113.106 9.62614L113.109 9.63024L113.133 9.66506L113.136 9.67019L113.161 9.70502L113.164 9.70911L113.187 9.74394L113.19 9.74907L113.214 9.78492L113.217 9.79004L113.241 9.82589L113.244 9.83102L113.266 9.86687L113.269 9.87097L113.292 9.90682L113.295 9.91194L113.318 9.94882L113.321 9.95394L113.343 9.9898L113.346 9.99389L113.368 10.0308L113.371 10.0359L113.393 10.0717L113.396 10.0758L113.416 10.1127L113.419 10.1178L113.441 10.1547L113.444 10.1598L113.464 10.1967L113.466 10.2008L113.487 10.2377L113.49 10.2428L113.509 10.2797L113.512 10.2848L113.531 10.3227L113.534 10.3278L113.554 10.3657L113.557 10.3709L113.576 10.4088L113.578 10.4139L113.597 10.4518L113.6 10.4569L113.618 10.4948L113.621 10.4999L113.64 10.5378L113.642 10.543L113.659 10.5809L113.662 10.586L113.68 10.6239L113.682 10.63L113.699 10.669L113.701 10.6741L113.718 10.713L113.72 10.7192L113.736 10.7581L113.738 10.7632L113.755 10.8021L113.757 10.8073L113.772 10.8472L113.774 10.8523L113.79 10.8923L113.792 10.8974L113.807 10.9374L113.809 10.9425L113.824 10.9824L113.826 10.9876L113.841 11.0275L113.843 11.0326L113.857 11.0726L113.859 11.0787L113.874 11.1187L113.876 11.1238L113.889 11.1637L113.891 11.1689L113.904 11.2088L113.906 11.2139L113.919 11.2549L113.921 11.26L113.933 11.3L113.935 11.3051L113.947 11.3461L113.95 11.3512L113.962 11.3922L113.964 11.3973L113.976 11.4383L113.977 11.4444L113.989 11.4854L113.99 11.4905L114.001 11.5315L114.003 11.5366L114.014 11.5786L114.015 11.5848L114.025 11.6268L114.026 11.6319L114.037 11.6739L114.038 11.68L114.047 11.722L114.048 11.7272L114.057 11.7692L114.058 11.7753L114.067 11.8173L114.069 11.8224L114.077 11.8644L114.079 11.8706L114.087 11.9126L114.088 11.9187L114.095 11.9597L114.096 11.9638L114.1 11.9863V11.9894L114.104 12.0109L114.105 12.014L114.109 12.0355L114.11 12.0386L114.113 12.0601L114.114 12.0621L114.117 12.0837L114.118 12.0857L114.121 12.1072L114.122 12.1103L114.126 12.1318L114.127 12.1349L114.13 12.1564L114.131 12.1584L114.134 12.1799V12.183L114.137 12.2045L114.138 12.2076L114.14 12.2291L114.141 12.2312L114.144 12.2516V12.2547L114.148 12.2762V12.2793L114.151 12.3008V12.3029L114.153 12.3244V12.3275L114.156 12.349L114.157 12.352L114.159 12.3736V12.3766L114.162 12.3971V12.3992L114.164 12.4207L114.165 12.4237L114.167 12.4453V12.4483L114.169 12.4698V12.4729L114.171 12.4944V12.4965L114.173 12.518L114.174 12.5211L114.176 12.5426L114.177 12.5446L114.179 12.5661L114.18 12.5702L114.182 12.5917V12.5948L114.183 12.6163L114.184 12.6194L114.185 12.6409V12.643L114.186 12.6645V12.6676L114.188 12.6901V12.6932L114.189 12.7147L114.19 12.7177L114.191 12.7393V12.7413L114.192 12.7628V12.7659L114.193 12.7884V12.7915L114.194 12.813V12.8161L114.195 12.8386V12.8417L114.196 12.8632V12.8909L114.197 12.9124V12.939L114.198 12.9605V27.1381L114.197 27.1606V27.2159L114.196 27.2395V27.2426L114.195 27.2651V27.2682L114.194 27.2917V27.2948L114.193 27.3174V27.3204L114.192 27.343V27.346L114.191 27.3696L114.19 27.3727L114.189 27.3952V27.3973L114.186 27.4208V27.4229L114.184 27.4464V27.4495L114.182 27.4731V27.4761L114.18 27.4997V27.5028L114.179 27.5263V27.5294L114.177 27.5519V27.555L114.175 27.5776V27.5806L114.173 27.6032V27.6062L114.171 27.6288L114.17 27.6318L114.168 27.6554L114.167 27.6585L114.165 27.681V27.6841L114.163 27.7066L114.162 27.7097L114.159 27.7322V27.7353L114.157 27.7578L114.156 27.7609L114.153 27.7835V27.7865L114.15 27.8091V27.8121L114.146 27.8357V27.8388L114.143 27.8613V27.8644L114.14 27.8869V27.89L114.137 27.9125L114.136 27.9166L114.133 27.9392V27.9412L114.13 27.9637L114.129 27.9678L114.126 27.9914L114.125 27.9945L114.122 28.017L114.121 28.0191L114.118 28.0416L114.117 28.0447L114.113 28.0672V28.0703L114.109 28.0928L114.107 28.0959L114.103 28.1184V28.1205L114.099 28.143V28.1451L114.095 28.1676L114.094 28.1707L114.09 28.1932V28.1963L114.086 28.2188V28.2219L114.082 28.2444V28.2475L114.078 28.27L114.077 28.2731L114.073 28.2957L114.072 28.2977L114.066 28.3202L114.065 28.3233L114.061 28.3458L114.06 28.3479L114.055 28.3694V28.3725L114.05 28.395L114.049 28.3981L114.044 28.4206V28.4237L114.039 28.4462V28.4483L114.034 28.4698L114.033 28.4718L114.027 28.4934L114.026 28.4954L114.021 28.5179V28.521L114.015 28.5436L114.014 28.5466L114.009 28.5681V28.5712L114.003 28.5938L114.002 28.5968L113.997 28.6183L113.996 28.6204L113.99 28.6419V28.645L113.983 28.6675V28.6706L113.977 28.6921L113.976 28.6941L113.97 28.7157V28.7187L113.964 28.7402L113.963 28.7433L113.957 28.7658L113.956 28.7689L113.95 28.7904L113.948 28.7935L113.942 28.815L113.941 28.8171L113.935 28.8386L113.934 28.8417L113.928 28.8632L113.927 28.8652L113.921 28.8867L113.92 28.8898L113.914 28.9113L113.913 28.9144L113.906 28.9349V28.9369L113.899 28.9584L113.898 28.9615L113.891 28.983L113.89 28.9861L113.883 29.0076L113.882 29.0107L113.875 29.0322L113.874 29.0353L113.865 29.0568L113.864 29.0588L113.857 29.0803L113.856 29.0834L113.849 29.1039L113.848 29.1059L113.841 29.1275L113.84 29.1305L113.833 29.152L113.832 29.1541L113.824 29.1756L113.823 29.1787L113.815 29.2002L113.813 29.2022L113.805 29.2237L113.804 29.2268L113.796 29.2483L113.795 29.2514L113.786 29.2719L113.785 29.2739L113.777 29.2944L113.776 29.2965L113.768 29.317L113.767 29.32L113.759 29.3405L113.758 29.3426L113.75 29.3631L113.748 29.3661L113.74 29.3877L113.739 29.3907L113.731 29.4112L113.73 29.4143L113.722 29.4358L113.721 29.4389L113.712 29.4594L113.711 29.4614L113.701 29.4829L113.7 29.486L113.691 29.5065L113.69 29.5096L113.681 29.53L113.679 29.5321L113.671 29.5526L113.669 29.5546L113.66 29.5751L113.659 29.5782L113.65 29.5987L113.649 29.6017L113.64 29.6222L113.638 29.6253L113.628 29.6458L113.627 29.6478L113.618 29.6683L113.617 29.6714L113.608 29.6919L113.606 29.695L113.596 29.7155L113.595 29.7175L113.584 29.737L113.583 29.74L113.573 29.7605L113.572 29.7636L113.562 29.7841L113.561 29.7872L113.551 29.8066L113.549 29.8087L113.539 29.8292L113.538 29.8312L113.528 29.8517L113.527 29.8548L113.517 29.8742L113.516 29.8763L113.505 29.8958L113.503 29.8978L113.492 29.9173L113.491 29.9193L113.481 29.9398L113.48 29.9418L113.468 29.9613L113.467 29.9634L113.457 29.9838L113.456 29.9859L113.445 30.0064L113.444 30.0095L113.433 30.0299L113.432 30.032L113.42 30.0515L113.419 30.0535L113.408 30.073L113.407 30.075L113.396 30.0945L113.395 30.0965L113.383 30.116L113.381 30.118L113.37 30.1375L113.369 30.1406L113.358 30.16L113.356 30.1621L113.344 30.1816L113.343 30.1846L113.332 30.2041L113.331 30.2061L113.32 30.2256L113.319 30.2277L113.307 30.2471L113.306 30.2492L113.294 30.2686L113.293 30.2707L113.281 30.2891L113.28 30.2912L113.267 30.3106L113.265 30.3127L113.254 30.3321L113.252 30.3352L113.24 30.3537L113.239 30.3557L113.226 30.3752L113.224 30.3782L113.212 30.3977L113.211 30.3997L113.199 30.4182L113.197 30.4213L113.184 30.4407L113.183 30.4438L113.171 30.4622L113.17 30.4643L113.158 30.4827L113.157 30.4848L113.144 30.5032L113.142 30.5063L113.13 30.5247L113.128 30.5268L113.116 30.5452L113.115 30.5473L113.101 30.5657L113.1 30.5678L113.088 30.5862L113.086 30.5882L113.072 30.6067L113.07 30.6087L113.057 30.6272L113.055 30.6302L113.042 30.6487L113.04 30.6507L113.027 30.6692L113.025 30.6722L113.012 30.6897L113.01 30.6917L112.997 30.7101L112.996 30.7122L112.982 30.7306L112.98 30.7327L112.967 30.7511L112.965 30.7532L112.951 30.7716L112.95 30.7737L112.937 30.7911L112.935 30.7931L112.922 30.8105L112.921 30.8126L112.907 30.831L112.905 30.8341L112.891 30.8515L112.89 30.8536L112.876 30.871L112.873 30.873L112.859 30.8904L112.857 30.8935L112.843 30.9109L112.841 30.913L112.827 30.9304L112.825 30.9324L112.811 30.9498L112.809 30.9529L112.794 30.9703L112.792 30.9724L112.778 30.9898L112.776 30.9918L112.761 31.0093L112.759 31.0113L112.744 31.0287L112.742 31.0308L112.728 31.0482L112.726 31.0502L112.711 31.0677L112.709 31.0697L112.694 31.0871L112.692 31.0902L112.678 31.1076L112.677 31.1097L112.662 31.126L112.66 31.1281L112.645 31.1445L112.643 31.1465L112.628 31.1629L112.626 31.165L112.611 31.1814L112.609 31.1834L112.593 31.1998L112.591 31.2018L112.576 31.2182L112.574 31.2213L112.559 31.2377L112.557 31.2398L112.541 31.2561L112.539 31.2582L112.524 31.2746L112.522 31.2766L112.506 31.293L112.504 31.2951L112.488 31.3115L112.487 31.3135L112.471 31.3299L112.469 31.3319L112.453 31.3483L112.451 31.3514L112.434 31.3678L112.432 31.3698L112.417 31.3862L112.415 31.3883L112.399 31.4047L112.396 31.4067L112.38 31.4231L112.378 31.4252L112.362 31.4405L112.36 31.4426L112.343 31.459L112.341 31.461L112.325 31.4774L112.323 31.4795L112.306 31.4948L112.304 31.4969L112.288 31.5122L112.285 31.5143L112.268 31.5297L112.266 31.5317L112.25 31.5471L112.248 31.5491L112.231 31.5645L112.229 31.5665L112.213 31.5819L112.211 31.5839L112.193 31.5993L112.191 31.6014L112.175 31.6167L112.173 31.6188L112.155 31.6331L112.153 31.6352L112.136 31.6505L112.134 31.6526L112.116 31.6679L112.114 31.669L112.097 31.6833L112.095 31.6854L112.077 31.7007L112.075 31.7028L112.058 31.7181L112.056 31.7192L112.038 31.7335L112.036 31.7356L112.019 31.7509L112.017 31.7519L112 31.7663L111.997 31.7673L111.98 31.7817L111.978 31.7837L111.961 31.798L111.958 31.7991L111.941 31.8134L111.939 31.8155L111.922 31.8298L111.92 31.8318L111.901 31.8462L111.899 31.8482L111.882 31.8626L111.879 31.8646L111.861 31.879L111.859 31.881L111.842 31.8954L111.839 31.8974L111.821 31.9118L111.819 31.9138L111.801 31.9271L111.798 31.9292L111.78 31.9435L111.778 31.9456L111.759 31.9589L111.757 31.9599L111.739 31.9732L111.737 31.9753L111.718 31.9896L111.716 31.9917L111.698 32.005L111.696 32.006L111.677 32.0193L111.675 32.0214L111.657 32.0347L111.655 32.0357L111.636 32.049L111.634 32.05L111.615 32.0634L111.613 32.0654L111.594 32.0787L111.592 32.0798L111.574 32.0931L111.572 32.0941L111.553 32.1074L111.551 32.1095L111.532 32.1217L111.529 32.1238L111.51 32.1371L111.508 32.1392L111.489 32.1525L111.486 32.1545L111.466 32.1678L111.464 32.1699L111.445 32.1832L111.443 32.1853L111.424 32.1976L111.422 32.1986L111.403 32.2109L111.4 32.2129L111.381 32.2252L111.378 32.2273L111.358 32.2396L111.356 32.2406L111.337 32.2529L111.335 32.2549L111.315 32.2672L111.313 32.2682L111.294 32.2805L111.292 32.2826L111.272 32.2949L111.27 32.2959L111.251 32.3082L111.249 32.3102L111.229 32.3225L111.226 32.3236L111.206 32.3348L111.202 32.3369L111.183 32.3492L111.18 32.3512L111.159 32.3625L111.157 32.3645L111.137 32.3758L111.134 32.3768L111.113 32.3891L111.11 32.3912L111.091 32.4024L111.089 32.4045L111.068 32.4168L111.065 32.4188L111.046 32.4301L111.045 32.4311L99.1495 39.0466L99.1485 39.0477L99.13 39.0579L99.1269 39.0589L99.1074 39.0702L99.1044 39.0712L99.0849 39.0825L99.0818 39.0835L99.0623 39.0938L99.0602 39.0958L99.0408 39.1071L99.0387 39.1081L99.0192 39.1183L99.0161 39.1194L98.9966 39.1296L98.9936 39.1306L98.9741 39.1409L98.972 39.1419L98.9525 39.1521L98.9495 39.1532L98.93 39.1634L98.9269 39.1655L98.9074 39.1757L98.9053 39.1767L98.8859 39.187L98.8828 39.188L98.8623 39.1982L98.8592 39.1993L98.8387 39.2085L98.8366 39.2105L98.8171 39.2198L98.8141 39.2208L98.7935 39.23L98.7905 39.231L98.771 39.2402L98.7689 39.2413L98.7494 39.2505L98.7464 39.2515L98.7258 39.2607L98.7228 39.2618L98.7033 39.271L98.7002 39.272L98.6807 39.2812L98.6776 39.2822L98.6571 39.2904L98.654 39.2915L98.6345 39.3007L98.6325 39.3017L98.613 39.3109L98.6099 39.3119L98.5894 39.3212L98.5863 39.3222L98.5668 39.3314L98.5638 39.3324L98.5433 39.3406L98.5412 39.3417L98.5207 39.3509L98.5176 39.3519L98.4981 39.3601L98.495 39.3611L98.4745 39.3693L98.4714 39.3714L98.4509 39.3796L98.4489 39.3806L98.4284 39.3888L98.4253 39.3898L98.4048 39.398L98.4027 39.399L98.3822 39.4072L98.3801 39.4082L98.3596 39.4164L98.3566 39.4175L98.336 39.4257L98.334 39.4267L98.3135 39.4349L98.3104 39.4359L98.2899 39.4441L98.2868 39.4451L98.2663 39.4523L98.2632 39.4533L98.2427 39.4605L98.2396 39.4615L98.2191 39.4687L98.216 39.4697L98.1955 39.4769L98.1935 39.4779L98.1729 39.4851L98.1699 39.4861L98.1493 39.4933L98.1463 39.4943L98.1258 39.5015L98.1237 39.5025L98.1032 39.5097L98.1001 39.5107L98.0796 39.5178L98.0765 39.5189L98.056 39.525L98.0529 39.526L98.0314 39.5322H98.0293L98.0088 39.5383L98.0057 39.5394L97.9842 39.5465H97.9739L97.9524 39.5527L97.9483 39.5537L97.9073 39.566L97.9021 39.568L97.8601 39.5803L97.8549 39.5814L97.8129 39.5937L97.8078 39.5957L97.7657 39.607L97.7606 39.608L97.7185 39.6193L97.7124 39.6203L97.6703 39.6305L97.6652 39.6316L97.6231 39.6418L97.6177 39.6428L97.5756 39.652L97.5695 39.6531L97.5274 39.6623L97.5223 39.6633L97.4802 39.6725L97.4741 39.6736L97.4318 39.6828L97.4257 39.6838L97.3836 39.693L97.3785 39.694L97.3364 39.7022L97.3313 39.7043L97.2882 39.7125L97.2831 39.7135L97.241 39.7207L97.2359 39.7217L97.1928 39.7289L97.1877 39.7299L97.1446 39.736L97.1395 39.7371L97.0964 39.7432H97.0912L97.0482 39.7494L97.042 39.7504L97 39.7565H96.9948L96.9517 39.7627L96.9456 39.7637L96.9025 39.7688L96.8974 39.7698L96.8543 39.775L96.8481 39.776L96.8051 39.7801H96.7999L96.7568 39.7842H96.7517L96.7086 39.7883L96.7025 39.7893L96.6594 39.7924L96.6543 39.7934L96.6112 39.7965H96.605L96.5619 39.7985H96.5568L96.5137 39.8016L96.5086 39.8026L96.4655 39.8047L96.4604 39.8057L96.4173 39.8078H96.4111L96.3681 39.8098H96.3629L96.3199 39.8108H96.3147L96.2716 39.8118H96.2665L96.2234 39.8129H96.1209L96.0778 39.8118H96.0716L96.0296 39.8108H96.0193L95.9762 39.8098H95.9701L95.927 39.8088H95.9167L95.8736 39.8067H95.8685L95.8254 39.8047H95.8203L95.7772 39.8026H95.7711L95.728 39.7996L95.7218 39.7985L95.6787 39.7955H95.6736L95.6305 39.7924H95.6254L95.5823 39.7883L95.5772 39.7873L95.5351 39.7832L95.5298 39.7821L95.4867 39.778H95.4816L95.4385 39.7729H95.4323L95.3893 39.7678H95.3841L95.3411 39.7617L95.3349 39.7606L95.2918 39.7545L95.2867 39.7535L95.2436 39.7463L95.2375 39.7453L95.1944 39.7381L95.1882 39.7371L95.1451 39.7299L95.14 39.7289L95.0979 39.7207L95.0918 39.7197L95.0487 39.7115L95.0436 39.7104L95.0005 39.7022L94.9954 39.7012L94.9523 39.692L94.9461 39.691L94.9041 39.6818L94.8979 39.6807L94.8548 39.6715L94.8497 39.6705L94.8076 39.6613L94.8025 39.6602L94.7605 39.65L94.7553 39.649L94.7133 39.6387L94.7081 39.6367L94.6661 39.6264L94.661 39.6254L94.6189 39.6141L94.6138 39.6131L94.5717 39.6018L94.5666 39.6008L94.5245 39.5885L94.5194 39.5875L94.4773 39.5752L94.4722 39.5732L94.4312 39.5609L94.4261 39.5598L94.385 39.5465L94.3799 39.5455L94.3378 39.5322L94.3327 39.5301L94.2917 39.5168L94.2876 39.5158L94.266 39.5086L94.263 39.5076L94.2424 39.5004L94.2394 39.4994L94.2188 39.4922L94.2158 39.4912L94.1952 39.484L94.1922 39.483L94.1717 39.4758L94.1696 39.4748L94.1491 39.4677L94.146 39.4666L94.1255 39.4595L94.1234 39.4584L94.1029 39.4513L94.1009 39.4502L94.0804 39.4431L94.0783 39.442L94.0578 39.4349L94.0557 39.4338L94.0352 39.4257L94.0322 39.4246L94.0116 39.4175L94.0086 39.4164L93.988 39.4082L93.986 39.4072L93.9655 39.399L93.9624 39.398L93.9419 39.3898L93.9398 39.3888L93.9193 39.3806L93.9173 39.3796L93.8967 39.3714L93.8947 39.3703L93.8742 39.3621L93.8721 39.3611L93.8516 39.3529L93.8485 39.3519L93.828 39.3437L93.826 39.3427L93.8065 39.3335L93.8034 39.3324L93.7829 39.3232L93.7798 39.3212L93.7603 39.313L93.7583 39.3119L93.7388 39.3038L93.7367 39.3027L93.7162 39.2935L93.7131 39.2925L93.6936 39.2833L93.6906 39.2822L93.6711 39.273L93.669 39.272L93.6485 39.2628L93.6454 39.2618L93.6259 39.2525L93.6229 39.2515L93.6034 39.2423L93.6003 39.2413L93.5808 39.232L93.5777 39.231L93.5572 39.2218L93.5541 39.2208L93.5336 39.2105L93.5305 39.2095L93.51 39.2003L93.507 39.1993L93.4875 39.189L93.4844 39.188L93.4649 39.1788L93.4628 39.1777L93.4433 39.1675L93.4403 39.1665L93.4208 39.1562L93.4177 39.1552L93.3982 39.145L93.3962 39.1439L93.3767 39.1337L93.3736 39.1327L93.3541 39.1224L93.351 39.1214L93.3315 39.1112L93.3295 39.1101L93.31 39.0999L93.3079 39.0979L93.2885 39.0876L93.2864 39.0866L93.2669 39.0763L93.2638 39.0753L93.2443 39.064L93.2423 39.063L93.2228 39.0528L93.2208 39.0507L93.2013 39.0395L93.1992 39.0384L93.1797 39.0272L93.1766 39.0261L93.1572 39.0149L93.1551 39.0128L93.1356 39.0016L93.1336 39.0005L93.1151 38.9903L93.1141 38.9893L82.3433 32.7149L82.3423 32.7138L82.3197 32.7005L82.3177 32.6995L82.2951 32.6862L82.292 32.6852L82.2695 32.6708L82.2674 32.6698L82.2438 32.6555L82.2407 32.6544L82.2182 32.6411L82.2161 32.6401L82.1936 32.6258L82.1905 32.6237L82.1679 32.6094L82.1659 32.6083L82.1433 32.594L82.1412 32.5919L82.1187 32.5776L82.1156 32.5756L82.093 32.5612L82.0899 32.5602L82.0674 32.5458L82.0653 32.5438L82.0428 32.5295L82.0397 32.5274L82.0171 32.512L82.0151 32.51L81.9925 32.4946L81.9904 32.4926L81.9679 32.4782L81.9658 32.4772L81.9443 32.4618L81.9422 32.4598L81.9207 32.4444L81.9186 32.4424L81.8971 32.427L81.8951 32.425L81.8725 32.4096L81.8704 32.4086L81.8489 32.3932L81.8468 32.3912L81.8253 32.3758L81.8232 32.3748L81.8017 32.3594L81.7997 32.3574L81.7781 32.342L81.7761 32.341L81.7545 32.3256L81.7525 32.3246L81.7309 32.3092L81.7289 32.3072L81.7073 32.2908L81.7053 32.2887L81.6837 32.2734L81.6817 32.2713L81.6601 32.2549L81.6581 32.2529L81.6376 32.2365L81.6355 32.2344L81.615 32.218L81.613 32.216L81.5924 32.2006L81.5904 32.1986L81.5689 32.1822L81.5658 32.1801L81.5453 32.1637L81.5432 32.1627L81.5217 32.1463L81.5196 32.1443L81.4991 32.1279L81.497 32.1258L81.4765 32.1095L81.4745 32.1074L81.454 32.091L81.4509 32.089L81.4304 32.0726L81.4283 32.0705L81.4078 32.0531L81.4058 32.0511L81.3852 32.0337L81.3832 32.0316L81.3627 32.0152L81.3606 32.0132L81.3401 31.9958L81.3381 31.9937L81.3175 31.9763L81.3155 31.9742L81.296 31.9568L81.2939 31.9558L81.2734 31.9384L81.2714 31.9363L81.2519 31.9189L81.2498 31.9169L81.2293 31.8995L81.2273 31.8974L81.2078 31.88L81.2057 31.8779L81.1862 31.8605L81.1842 31.8585L81.1637 31.8411L81.1616 31.839L81.1421 31.8216L81.1401 31.8196L81.1206 31.8021L81.1185 31.8001L81.099 31.7827L81.097 31.7806L81.0785 31.7622L81.0765 31.7601L81.058 31.7417L81.056 31.7397L81.0365 31.7212L81.0344 31.7192L81.0149 31.7017L81.0129 31.6997L80.9934 31.6823L80.9913 31.6802L80.9718 31.6618L80.9698 31.6598L80.9513 31.6423L80.9493 31.6403L80.9308 31.6218L80.9298 31.6208L80.9113 31.6024L80.9093 31.6003L80.8908 31.5819L80.8888 31.5798L80.8703 31.5614L80.8682 31.5594L80.8498 31.5409L80.8477 31.5389L80.8293 31.5204L80.8272 31.5184L80.8098 31.4999L80.8077 31.4979L80.7893 31.4784L80.7872 31.4764L80.7687 31.4579L80.7667 31.4559L80.7482 31.4375L80.7462 31.4354L80.7287 31.4159L80.7267 31.4139L80.7082 31.3955L80.7062 31.3934L80.6887 31.3739L80.6867 31.3719L80.6692 31.3524L80.6672 31.3504L80.6497 31.3309L80.6477 31.3289L80.6303 31.3094L80.6282 31.3074L80.6108 31.2879L80.6087 31.2858L80.5913 31.2664L80.5892 31.2643L80.5718 31.2449L80.5697 31.2428L80.5533 31.2234L80.5523 31.2213L80.5349 31.2008L80.5328 31.1988L80.5154 31.1793L80.5133 31.1773L80.4969 31.1578L80.4959 31.1558L80.4784 31.1363L80.4774 31.1342L80.461 31.1148L80.459 31.1127L80.4425 31.0922L80.4405 31.0902L80.4241 31.0697L80.422 31.0677L80.4056 31.0472L80.4046 31.0451L80.3882 31.0257L80.3861 31.0226L80.3697 31.0031L80.3677 31.0011L80.3512 30.9806L80.3492 30.9785L80.3338 30.958L80.3318 30.956L80.3153 30.9355L80.3133 30.9335L80.2979 30.913L80.2958 30.9109L80.2794 30.8894L80.2774 30.8874L80.262 30.8669L80.2599 30.8648L80.2446 30.8443L80.2425 30.8423L80.2271 30.8208L80.2251 30.8187L80.2097 30.7982L80.2076 30.7962L80.1922 30.7754L80.1902 30.7723L80.1748 30.7508L80.1738 30.7488L80.1584 30.7283L80.1563 30.7262L80.142 30.7047L80.1399 30.7027L80.1256 30.6812L80.1235 30.6791L80.1081 30.6582L80.1071 30.6562L80.0917 30.6357L80.0897 30.6326L80.0743 30.6111L80.0733 30.609L80.0589 30.5875L80.0568 30.5855L80.0425 30.564L80.0415 30.5609L80.0271 30.5394L80.025 30.5373L80.0107 30.5158L80.0086 30.5138L79.9943 30.4923L79.9922 30.4902L79.9779 30.4687L79.9758 30.4666L79.9614 30.4451L79.9604 30.4431L79.9461 30.4216L79.945 30.4195L79.9307 30.398L79.9286 30.3949L79.9143 30.3724L79.9132 30.3704L79.8989 30.3478L79.8978 30.3458L79.8845 30.3243L79.8835 30.3222L79.8702 30.2997L79.8691 30.2976L79.8558 30.2751L79.8537 30.272L79.8404 30.2505L79.8394 30.2484L79.826 30.2259L79.824 30.2228L79.8107 30.2013L79.8096 30.1993L79.7973 30.1778L79.7953 30.1757L79.7819 30.1532L79.7799 30.1511L79.7665 30.1286L79.7655 30.1255L79.7522 30.103L79.7512 30.0999L79.7388 30.0774L79.7378 30.0753L79.7255 30.0528L79.7245 30.0507L79.7112 30.0282L79.7101 30.0262L79.6978 30.0036L79.6968 30.0016L79.6835 29.979L79.6814 29.976L79.6691 29.9534L79.6681 29.9514L79.6558 29.9288L79.6542 29.9268L79.6419 29.9043L79.6409 29.9022L79.6296 29.8786L79.6286 29.8766L79.6163 29.8541L79.6152 29.852L79.6029 29.8295L79.6019 29.8264L79.5896 29.8028L79.5886 29.8008L79.5773 29.7783L79.5763 29.7752L79.564 29.7526L79.5629 29.7506L79.5516 29.7281L79.5506 29.7255L79.5393 29.7019L79.5383 29.6999L79.527 29.6763L79.526 29.6743L79.5147 29.6507L79.5137 29.6476L79.5024 29.6241L79.5014 29.622L79.4901 29.5985L79.4891 29.5954L79.4778 29.5718L79.4757 29.5688L79.4645 29.5452L79.4634 29.5421L79.4532 29.5186L79.4511 29.5155L79.4409 29.4919L79.4398 29.4889L79.4296 29.4653L79.4285 29.4622L79.4183 29.4387L79.4173 29.4356L79.407 29.412L79.406 29.409L79.3957 29.3854L79.3947 29.3823L79.3844 29.3588L79.3834 29.3567L79.3732 29.3332L79.3721 29.3311L79.3619 29.3065L79.3608 29.3045L79.3516 29.2809L79.3506 29.2778L79.3403 29.2533L79.3393 29.2512L79.329 29.2266L79.328 29.2235L79.3178 29.199L79.3167 29.1959L79.3075 29.1713L79.3065 29.1693L79.2972 29.1457L79.2962 29.1426L79.287 29.118L79.286 29.115L79.2767 29.0914L79.2757 29.0893L79.2665 29.0648L79.2654 29.0622L79.2562 29.0376L79.2552 29.0345L79.246 29.01L79.2449 29.0069L79.2357 28.9833L79.2347 28.9803L79.2254 28.9557L79.2244 28.9536L79.2152 28.929L79.2142 28.927L79.2049 28.9024V28.9004L79.1957 28.8758L79.1947 28.8727L79.1854 28.8481L79.1844 28.8461L79.1762 28.8215L79.1752 28.8194L79.167 28.7948L79.1659 28.7928L79.1577 28.7682L79.1567 28.7651L79.1485 28.7405L79.1475 28.7385L79.1403 28.7139L79.1393 28.7108L79.1321 28.6863L79.1311 28.6832L79.1229 28.6586L79.1218 28.6555L79.1147 28.6309L79.1136 28.6279L79.1065 28.6033L79.1054 28.6002L79.0972 28.5746V28.5715L79.09 28.5469L79.089 28.5439L79.0818 28.5183L79.0808 28.5152L79.0736 28.4906L79.0726 28.4875L79.0654 28.4629L79.0644 28.4599L79.0572 28.4353V28.4322L79.05 28.4066L79.049 28.4035L79.0418 28.3779L79.0408 28.3748L79.0346 28.3503L79.0336 28.3482L79.0264 28.3226L79.0254 28.3195L79.0193 28.2939V28.2919L79.0131 28.2663L79.0121 28.2632L79.0059 28.2376V28.2345L78.9998 28.2089V28.2068L78.9936 28.1812L78.9926 28.1782L78.9864 28.1525V28.1495L78.9803 28.1239L78.9793 28.1218L78.9731 28.0962L78.9721 28.0931L78.9659 28.0675L78.9649 28.0644L78.9587 28.0388L78.9577 28.0368L78.9526 28.0112V28.0009L78.9475 27.9753V27.9723L78.9423 27.9466L78.9413 27.9436L78.9362 27.918L78.9351 27.9159L78.93 27.8903L78.929 27.8872L78.9239 27.8616L78.9228 27.8585L78.9177 27.8329L78.9167 27.8299L78.9116 27.8043L78.9105 27.8012L78.9064 27.7756V27.7725L78.9023 27.7469L78.9013 27.7438L78.8972 27.7182V27.7151L78.8931 27.6885L78.8921 27.6864L78.888 27.6598L78.8869 27.6567L78.8828 27.6301V27.627L78.8787 27.6014L78.8777 27.5984L78.8746 27.5727L78.8741 27.5707L78.87 27.5441L78.869 27.541L78.8659 27.5144V27.5113L78.8628 27.4846V27.4781L78.8597 27.4515L78.8587 27.4484L78.8556 27.4228V27.4197L78.8526 27.3931V27.39L78.8495 27.3644V27.3623L78.8464 27.3357L78.8454 27.3326L78.8433 27.306L78.8423 27.3029L78.8394 27.2763L78.8384 27.2732L78.8364 27.2466L78.8353 27.2435L78.8333 27.2169L78.8323 27.2138L78.8302 27.1872V27.1841L78.8282 27.1585V27.1554L78.8261 27.1288V27.1257L78.8241 27.0991V27.096L78.822 27.0694V27.0714L78.8199 27.0448V27.0417L78.8189 27.0151V27.012L78.8169 26.9854V26.9823L78.8158 26.9556V26.9526L78.8148 26.9259V26.9229L78.8128 26.8962V26.8932L78.8117 26.8665V26.8563L78.8107 26.8296V26.8276L78.8097 26.801V26.7979L78.8087 26.7713V26.761L78.8076 26.7344V26.7318L78.8066 26.7052V26.7021L78.8056 26.6755V26.6724L78.8046 26.6458V14.2235L78.8056 14.1917V14.1559L78.8066 14.1252V14.0883L78.8076 14.0576L78.8087 14.0268V14.0237L78.8097 13.993V13.9899L78.8117 13.9592V13.9569L78.8128 13.9251V13.922L78.8148 13.8903V13.8872L78.8158 13.8565V13.8537L78.8179 13.823V13.8199L78.8199 13.7892V13.7861L78.822 13.7554V13.7523L78.8241 13.7215V13.7185L78.8261 13.6877V13.6847L78.8282 13.6539V13.6509L78.8312 13.6201L78.8323 13.6171L78.8343 13.5863V13.5833L78.8374 13.5525L78.8384 13.5499L78.8415 13.5191V13.5163L78.8439 13.4855V13.4835L78.8469 13.4527V13.4497L78.85 13.4189V13.4159L78.8531 13.3851V13.3831L78.8572 13.3524V13.3493L78.8613 13.3186V13.3155L78.8654 13.2847V13.2827L78.8685 13.252V13.2489L78.8726 13.2192V13.2161L78.8767 13.1864V13.1844L78.8808 13.1547V13.1526L78.8859 13.1219V13.1188L78.89 13.0891L78.891 13.086L78.8951 13.0553V13.0522L78.8997 13.0215L78.9007 13.0194L78.9048 12.9897V12.9877L78.9099 12.958L78.9109 12.9549L78.9161 12.925V12.9229L78.9212 12.8932L78.9222 12.8902L78.9273 12.8604L78.9284 12.8574L78.9335 12.8266V12.8236L78.9397 12.7937L78.9407 12.7906L78.9458 12.7609L78.9468 12.7583L78.952 12.7286L78.953 12.7266L78.9591 12.6969L78.9602 12.6938L78.9663 12.6641V12.661L78.9725 12.6313L78.9735 12.6282L78.9797 12.5985L78.9807 12.5965L78.9868 12.5668L78.9879 12.5641L78.994 12.5344V12.5313L79.0012 12.5016V12.4996L79.0084 12.4698L79.0094 12.4668L79.0156 12.4371L79.0166 12.434L79.0238 12.4043V12.4022L79.031 12.3725V12.3695L79.0381 12.3397V12.3367L79.0453 12.307L79.0463 12.3039L79.0535 12.2742L79.0545 12.2721L79.0617 12.2424L79.0628 12.2394L79.0699 12.2097L79.071 12.2066L79.0792 12.1769L79.0798 12.1738L79.088 12.1451L79.089 12.142L79.0972 12.1123L79.0982 12.1103L79.1065 12.0816L79.1075 12.0796L79.1157 12.0498L79.1167 12.0468L79.1249 12.0181V12.016L79.1331 11.9863L79.1341 11.9833L79.1424 11.9546L79.1434 11.9515L79.1516 11.9218L79.1526 11.9197L79.1618 11.8911L79.1629 11.888L79.1721 11.8593L79.1731 11.8573L79.1824 11.8286L79.1834 11.8255L79.1926 11.7968V11.7948L79.2019 11.7661L79.2029 11.764L79.2131 11.7354L79.2142 11.7323L79.2234 11.7036L79.2244 11.7005L79.2347 11.6718V11.6698L79.2439 11.6411L79.2449 11.638L79.2542 11.6094L79.2552 11.6063L79.2644 11.5776L79.2654 11.5745L79.2757 11.5458L79.2767 11.5438L79.287 11.5151L79.288 11.5131L79.2983 11.4844L79.2993 11.4823L79.3096 11.4547L79.3106 11.4516L79.3219 11.4229L79.3229 11.4209L79.3331 11.3932L79.3342 11.3901L79.3444 11.3615L79.3455 11.3594L79.3557 11.3307L79.3567 11.3277L79.367 11.299L79.368 11.2959L79.3793 11.2672L79.3803 11.2652L79.3916 11.2375L79.3926 11.2355L79.4039 11.2078L79.405 11.2057L79.4162 11.1781L79.4173 11.175L79.4285 11.1474L79.4296 11.1453L79.4409 11.1177L79.4419 11.1146L79.4542 11.0859L79.4552 11.0838L79.4665 11.0562L79.4686 11.0531L79.4809 11.0255L79.4819 11.0234L79.4942 10.9957L79.4952 10.9927L79.5075 10.965L79.5086 10.963L79.5209 10.9353L79.5219 10.9333L79.5342 10.9056L79.5352 10.9036L79.5475 10.8759L79.5486 10.8738L79.5609 10.8462L79.5619 10.8431L79.5742 10.8155L79.5752 10.8134L79.5875 10.7868L79.5886 10.7837L79.6019 10.7571L79.6029 10.755L79.6163 10.7284L79.6173 10.7253L79.6306 10.6977L79.6317 10.6946L79.645 10.6679L79.646 10.6659L79.6593 10.6393L79.6604 10.6362L79.6737 10.6085L79.6747 10.6065L79.6881 10.5798L79.6901 10.5778L79.7035 10.5501L79.7045 10.5481L79.7178 10.5215L79.7188 10.5184L79.7332 10.4917L79.7342 10.4897L79.7476 10.4631L79.7486 10.46L79.763 10.4334L79.764 10.4313L79.7783 10.4047L79.7794 10.4016L79.7937 10.375L79.7948 10.3729L79.8091 10.3463L79.8112 10.3442L79.8255 10.3186L79.8266 10.3166L79.8409 10.2899L79.843 10.2879L79.8573 10.2623L79.8584 10.2602L79.8737 10.2336L79.8748 10.2316L79.8901 10.2049L79.8912 10.2018L79.9055 10.1752L79.9076 10.1732L79.923 10.1465L79.924 10.1445L79.9394 10.1189L79.9414 10.1168L79.9568 10.0912L79.9579 10.0881L79.9732 10.0625L79.9753 10.0605L79.9907 10.0349L79.9917 10.0328L80.0071 10.0072L80.0081 10.0052L80.0235 9.97955L80.0252 9.9775L80.0406 9.95189L80.0417 9.94985L80.057 9.92424L80.0581 9.92219L80.0745 9.89658L80.0755 9.89453L80.0919 9.86892L80.094 9.86585L80.1094 9.84024L80.1114 9.83819L80.1278 9.81258L80.1289 9.81053L80.1453 9.78492L80.1473 9.78185L80.1637 9.75624L80.1648 9.75419L80.1812 9.7296L80.1832 9.72755L80.1996 9.70297L80.2007 9.70092L80.2181 9.67633L80.2191 9.67326L80.2355 9.64867L80.2376 9.6456L80.254 9.61999L80.256 9.61794L80.2735 9.59336L80.2755 9.59131L80.293 9.56672L80.295 9.56467L80.3125 9.54009L80.3135 9.53804L80.3309 9.51346L80.333 9.51141L80.3504 9.48682L80.3525 9.48477L80.3699 9.46121L80.3709 9.45916L80.3884 9.43458L80.3904 9.43253L80.4089 9.40794L80.4099 9.40589L80.4274 9.38233L80.4284 9.38029L80.4468 9.35672L80.4489 9.35365L80.4663 9.32907L80.4684 9.32702L80.4869 9.30243L80.4879 9.30038L80.5063 9.27682L80.5084 9.27477L80.5269 9.25121L80.5289 9.24916L80.5474 9.22458L80.5484 9.22253L80.5669 9.19897L80.5689 9.19692L80.5874 9.17233L80.5894 9.17028L80.6087 9.14672L80.6108 9.14467L80.6292 9.12111L80.6313 9.11907L80.6508 9.0955L80.6518 9.09346L80.6713 9.06989L80.6733 9.06785L80.6928 9.04428L80.6949 9.04224L80.7144 9.01867L80.7164 9.01663L80.7359 8.99409L80.738 8.99204L80.7575 8.96848L80.7595 8.96643L80.779 8.94389L80.7811 8.94185L80.8005 8.91931L80.8026 8.91726L80.8231 8.89472L80.8252 8.89267L80.8457 8.86911L80.8477 8.86707L80.8672 8.84453L80.8682 8.84248L80.8888 8.81994L80.8908 8.81789L80.9113 8.79536L80.9134 8.79331L80.9339 8.77077L80.9349 8.76872L80.9554 8.74619L80.9575 8.74414L80.978 8.7216L80.979 8.72058L80.9995 8.69907L81.0016 8.69599L81.0221 8.67346L81.0242 8.67141L81.0447 8.64989L81.0467 8.64785L81.0683 8.62633L81.0703 8.62428L81.0919 8.60175L81.0939 8.5997L81.1155 8.57819L81.1175 8.57614L81.139 8.5536L81.1411 8.55155L81.1616 8.53004L81.1637 8.52799L81.1852 8.50648L81.1873 8.50443L81.2088 8.48292L81.2108 8.48087L81.2324 8.45936L81.2344 8.45731L81.256 8.4358L81.258 8.43375L81.2796 8.41224L81.2816 8.41121L81.3032 8.3897L81.3052 8.38765L81.3268 8.36614L81.3288 8.36409L81.3514 8.34258L81.3534 8.34053L81.376 8.32004L81.3781 8.31799L81.4006 8.2975L81.4027 8.29545L81.4252 8.27497L81.4273 8.27292L81.4499 8.25243L81.4519 8.25038L81.4745 8.22989L81.4765 8.22785L81.4991 8.20736L81.5011 8.20531L81.5237 8.18482L81.5258 8.18277L81.5483 8.16228L81.5504 8.16024L81.573 8.14077L81.575 8.13872L81.5976 8.11926L81.5996 8.11721L81.6222 8.09672L81.6242 8.09467L81.6478 8.07521L81.6499 8.07316L81.6735 8.0537L81.6755 8.05165L81.6981 8.03219L81.7002 8.03014L81.7237 8.01067L81.7258 8.00863L81.7484 7.98814L81.7504 7.98609L81.774 7.96663L81.7761 7.96458L81.7997 7.94511L81.8017 7.94307L81.8253 7.9236L81.8273 7.92155L81.852 7.90209L81.854 7.90106L81.8776 7.88263L81.8797 7.88058L81.9043 7.86214L81.9063 7.86009L81.9299 7.84063L81.933 7.83858L81.9576 7.81911L81.9597 7.81706L81.9833 7.79863L81.9853 7.7976L82.0099 7.77916L82.012 7.77711L82.0356 7.75867L82.0387 7.75663L82.0633 7.73819L82.0653 7.73614L82.0899 7.7177L82.092 7.71565L82.1166 7.69721L82.1187 7.69516L82.1433 7.67672L82.1453 7.6757L82.17 7.65828L82.172 7.65726L82.1966 7.63882L82.1987 7.63677L82.2233 7.61833L82.2254 7.61628L82.25 7.59785L82.252 7.5958L82.2777 7.57838L82.2797 7.57633L82.3043 7.55892L82.3064 7.55687L82.332 7.53946L82.3341 7.53843L82.3597 7.52102L82.3618 7.51897L82.3874 7.50155L82.3905 7.50053L82.4157 7.48311L82.4188 7.48106L82.4445 7.46365L82.4465 7.4616L82.4722 7.44419L82.4742 7.44316L82.4999 7.42575L82.5029 7.4237L82.5286 7.40731L82.5306 7.40628L82.5563 7.38989L82.5583 7.38785L82.584 7.37146L82.586 7.36941L82.6127 7.35199L82.6147 7.35097L82.6414 7.33458L82.6435 7.33355L82.6691 7.31716L82.6712 7.31614L82.6978 7.29975L82.6999 7.2977L82.7266 7.28131L82.7286 7.28028L82.7553 7.26389L82.7573 7.26185L82.784 7.24545L82.7871 7.24443L82.8127 7.22906L82.8148 7.22804L92.6623 1.3337H92.6639L92.6854 1.32141L92.6885 1.31936L92.71 1.30706L92.7121 1.30604L92.7346 1.29375L92.7367 1.29272L92.7593 1.28043L92.7613 1.27838L92.7839 1.26609L92.7859 1.26404L92.8085 1.25072L92.8105 1.2497L92.8331 1.23741L92.8352 1.23536L92.8577 1.22306L92.8598 1.22102L92.8823 1.20872L92.8844 1.20667L92.907 1.19438L92.909 1.19336L92.9316 1.18106L92.9347 1.18004L92.9572 1.16775L92.9593 1.16672L92.9818 1.15545L92.9849 1.15443L93.0075 1.14316L93.0095 1.14214L93.0321 1.13087L93.0342 1.12882L93.0567 1.11653L93.0598 1.1155L93.0824 1.10423L93.0855 1.10321L93.108 1.09194L93.1111 1.09092L93.1347 1.07965L93.1367 1.07863L93.1593 1.06736L93.1614 1.06531L93.185 1.05506L93.187 1.05302L93.2106 1.04175L93.2127 1.0397L93.2352 1.02945L93.2383 1.02843L93.2619 1.01716L93.2639 1.01614L93.2875 1.00589L93.2906 1.00487L93.3132 0.993601L93.3163 0.992576L93.3398 0.982332L93.3429 0.981308L93.3665 0.97004L93.3686 0.969015L93.3922 0.957747L93.3942 0.956723L93.4178 0.946479L93.4199 0.945454L93.4435 0.935211L93.4465 0.934186L93.4701 0.923942L93.4722 0.922918L93.4958 0.912674L93.4988 0.911649L93.5224 0.901406L93.5245 0.900381L93.5481 0.891162L93.5512 0.890137L93.5747 0.879893L93.5778 0.878869L93.6014 0.869649L93.6035 0.868625L93.6271 0.858381L93.6291 0.857357L93.6527 0.848137L93.6548 0.847113L93.6784 0.836869L93.6814 0.835845L93.705 0.826625L93.7081 0.825601L93.7317 0.817406L93.7338 0.816381L93.7573 0.807162L93.7594 0.806137L93.783 0.797942L93.7861 0.796918L93.8097 0.788723H93.8117L93.8353 0.779503L93.8384 0.778479L93.862 0.769259L93.865 0.768235L93.8886 0.76004L93.8917 0.759015L93.9163 0.75082L93.9184 0.749796L93.942 0.741601L93.9451 0.740576L93.9687 0.732381L93.9707 0.731357L93.9943 0.723162L93.9964 0.722137L94.021 0.713942L94.023 0.712918L94.0466 0.704723L94.0497 0.703698L94.0733 0.696528L94.0764 0.695503L94.1 0.688333L94.103 0.687308L94.1266 0.679113L94.1297 0.678089L94.1543 0.670918L94.1564 0.669893L94.181 0.662723L94.1841 0.661698L94.2077 0.654527L94.2107 0.653503L94.2354 0.646332L94.2384 0.645308L94.2631 0.638137L94.2661 0.637113L94.2897 0.629942H94.2918L94.3164 0.623796L94.3184 0.622771L94.3431 0.616625L94.3461 0.615601L94.3708 0.60843L94.3738 0.607406L94.3974 0.601259L94.3995 0.600235L94.4241 0.594088L94.4272 0.593064L94.4518 0.586918H94.4549L94.4795 0.580771L94.4826 0.579747L94.5072 0.573601L94.5103 0.572576L94.5339 0.56643L94.5369 0.565406L94.5616 0.559259L94.5646 0.558235L94.5893 0.552089L94.5913 0.551064L94.6159 0.544918L94.619 0.543893L94.6436 0.537747H94.6467L94.6713 0.532625L94.6744 0.531601L94.699 0.526479L94.7021 0.525454L94.7267 0.519308H94.7298L94.7544 0.514186L94.7575 0.513162L94.7821 0.50804L94.7852 0.507015L94.8098 0.501893H94.8118L94.8365 0.496771L94.8395 0.495747L94.8642 0.490625L94.8672 0.489601L94.8919 0.485503L94.8939 0.484479L94.9185 0.480381L94.9216 0.479357L94.9462 0.475259L94.9493 0.474235L94.9739 0.470137H94.977L95.0016 0.46604L95.0047 0.465015L95.0293 0.460918L95.0324 0.459893L95.057 0.455796H95.0601L95.0847 0.451698H95.0878L95.1124 0.447601H95.1155L95.1401 0.443503H95.1432L95.1678 0.44043L95.1709 0.439406L95.1955 0.436332H95.1975L95.2222 0.433259H95.2252L95.2509 0.430186L95.2529 0.429162L95.2776 0.426088H95.2806L95.3053 0.423015H95.3083L95.3329 0.419942H95.336L95.3617 0.416869H95.3647L95.3894 0.41482H95.3924L95.4171 0.411747H95.4201L95.4448 0.409698H95.4478L95.4725 0.407649L95.4755 0.406625L95.5002 0.404576H95.5032L95.5279 0.402528H95.5309L95.5555 0.400479H95.5586L95.5832 0.39843L95.5863 0.397406L95.6109 0.395357H95.613L95.6376 0.393308H95.6407L95.6663 0.391259H95.6694L95.694 0.38921H95.6961L95.7207 0.387162H95.7227L95.7474 0.386137H95.7504L95.7751 0.385113H95.7781L95.8038 0.384088H95.8079L95.8325 0.38204H95.8356L95.8602 0.381015H95.8633L95.8879 0.379991H95.891L95.9156 0.378967H95.9741L95.9987 0.377942H96.1649L96.1666 0.355713ZM96.144 3.12157L96.1276 3.12177H96.111L96.0946 3.12198L96.0782 3.12228L96.0618 3.12331L96.0454 3.12433L96.0289 3.12536L96.0125 3.12638L95.9961 3.12741L95.9797 3.12843L95.9633 3.12945L95.9469 3.13048L95.9305 3.1315L95.9141 3.13253L95.8976 3.13355L95.8812 3.13458L95.8648 3.1356L95.8484 3.13663L95.832 3.13867L95.8156 3.14072L95.7992 3.14175L95.783 3.14277L95.7665 3.14482L95.7501 3.14687L95.7337 3.14892L95.7173 3.15097L95.7011 3.15302L95.6847 3.15506L95.6683 3.15711L95.6522 3.15916L95.6358 3.16121L95.6193 3.16326L95.6031 3.16633L95.5867 3.16838L95.5703 3.17145L95.5539 3.17453L95.5375 3.1776L95.5211 3.17965L95.5047 3.18272L95.4883 3.1858L95.4718 3.18887L95.4554 3.19194L95.439 3.19502L95.4226 3.19809L95.4062 3.20116L95.3898 3.20424L95.3734 3.20731L95.357 3.21038L95.3405 3.21345L95.3241 3.21755L95.3077 3.22165L95.2913 3.22575L95.2749 3.22984L95.2585 3.23394L95.2421 3.23804L95.2256 3.24111L95.2092 3.24521L95.1928 3.24931L95.1764 3.25341L95.16 3.2575L95.1446 3.2616L95.1282 3.2657L95.1118 3.2698L95.0954 3.27389L95.079 3.27902L95.0636 3.28414L95.0482 3.28824L95.0318 3.29336L95.0154 3.29848L94.999 3.3036L94.9825 3.30872L94.9661 3.31282L94.9507 3.31794L94.9343 3.32306L94.9179 3.32819L94.9015 3.33331L94.8861 3.33843L94.8697 3.34355L94.8533 3.34867L94.8379 3.3538L94.8225 3.35892L94.8071 3.36404L94.7917 3.37019L94.7753 3.37633L94.7589 3.38248L94.7435 3.38863L94.7281 3.39477L94.7128 3.40092L94.6974 3.40706L94.682 3.41321L94.6666 3.41936L94.6512 3.4255L94.6358 3.43165L94.6204 3.4378L94.6051 3.44394L94.5897 3.45009L94.5743 3.45624L94.5589 3.46341L94.5435 3.47058L94.5281 3.47775L94.5127 3.48492L94.4984 3.49209L94.483 3.49926L94.4676 3.50643L94.4522 3.5136L94.4368 3.52077L94.4214 3.52794L94.406 3.53511L94.3907 3.54228L94.3753 3.55048L94.3599 3.55765L94.3445 3.56482L94.3291 3.57302L94.3137 3.58019L94.2983 3.58736L94.283 3.59555L94.2686 3.60375L94.2542 3.61092L94.2399 3.61911L94.2245 3.62731L94.2101 3.6355L94.1958 3.6437L94.1814 3.65189L94.166 3.66009L94.1506 3.66828L94.1363 3.67648L94.1219 3.68467L94.1065 3.69287L94.0922 3.70106L94.0757 3.71028L84.2333 9.60565L84.2128 9.61794L84.1933 9.63024L84.1738 9.64253L84.1543 9.65482L84.1349 9.66711L84.1154 9.67838L84.0969 9.69067L84.0784 9.70297L84.06 9.71526L84.0415 9.72755L84.022 9.73985L84.0036 9.75214L83.9851 9.76443L83.9666 9.77775L83.9482 9.79004L83.9297 9.80336L83.9112 9.81565L83.8928 9.82897L83.8743 9.84229L83.8558 9.8556L83.8374 9.86892L83.8189 9.88224L83.8015 9.89555L83.783 9.90887L83.7656 9.92219L83.7471 9.9355L83.7286 9.94882L83.7112 9.96214L83.6927 9.97546L83.6753 9.9898L83.6579 10.0031L83.6404 10.0164L83.623 10.0308L83.6055 10.0441L83.5881 10.0574L83.5707 10.0717L83.5532 10.0861L83.5368 10.1004L83.5194 10.1148L83.503 10.1291L83.4866 10.1435L83.4701 10.1578L83.4537 10.1732L83.4373 10.1875L83.4199 10.2018L83.4035 10.2172L83.3871 10.2316L83.3706 10.2459L83.3542 10.2602L83.3378 10.2756L83.3214 10.291L83.305 10.3063L83.2886 10.3217L83.2732 10.3371L83.2568 10.3524L83.2404 10.3678L83.225 10.3832L83.2096 10.3985L83.1942 10.4139L83.1788 10.4293L83.1634 10.4446L83.148 10.461L83.1327 10.4764L83.1173 10.4917L83.1019 10.5081L83.0865 10.5245L83.0721 10.5409L83.0578 10.5573L83.0424 10.5737L83.028 10.5901L83.0126 10.6065L82.9973 10.6229L82.9829 10.6382L82.9685 10.6546L82.9542 10.671L82.9398 10.6874L82.9255 10.7038L82.9111 10.7202L82.8967 10.7366L82.8824 10.753L82.868 10.7694L82.8536 10.7857L82.8393 10.8021L82.8249 10.8185L82.8116 10.8359L82.7972 10.8534L82.7829 10.8708L82.7695 10.8872L82.7562 10.9046L82.7418 10.922L82.7285 10.9384L82.7152 10.9558L82.7018 10.9732L82.6885 10.9906L82.6752 11.008L82.6629 11.0255L82.6495 11.0429L82.6372 11.0603L82.6239 11.0777L82.6105 11.0951L82.5972 11.1125L82.5839 11.1299L82.5716 11.1484L82.5592 11.1658L82.5459 11.1832L82.5336 11.2017L82.5213 11.2201L82.509 11.2385L82.4967 11.257L82.4844 11.2754L82.4721 11.2938L82.4597 11.3123L82.4474 11.3307L82.4351 11.3492L82.4228 11.3676L82.4105 11.386L82.3992 11.4045L82.3879 11.4229L82.3767 11.4414L82.3654 11.4598L82.3541 11.4782L82.3428 11.4967L82.3315 11.5151L82.3202 11.5336L82.309 11.553L82.2977 11.5715L82.2864 11.5899L82.2761 11.6083L82.2648 11.6278L82.2536 11.6473L82.2433 11.6657L82.232 11.6852L82.2218 11.7046L82.2115 11.7241L82.2012 11.7436L82.191 11.763L82.1807 11.7825L82.1705 11.8019L82.1602 11.8214L82.15 11.8409L82.1407 11.8603L82.1315 11.8798L82.1223 11.8993L82.113 11.9187L82.1038 11.9382L82.0946 11.9587L82.0853 11.9781L82.0761 11.9976L82.0669 12.0171L82.0576 12.0376L82.0484 12.057L82.0392 12.0765L82.0299 12.097L82.0207 12.1164L82.0125 12.1369L82.0043 12.1574L81.9961 12.1769L81.9879 12.1974L81.9797 12.2178L81.9715 12.2383L81.9633 12.2578L81.9551 12.2783L81.9469 12.2988L81.9386 12.3193L81.9315 12.3397L81.9243 12.3602L81.9161 12.3807L81.9079 12.4012L81.8997 12.4217L81.8925 12.4422L81.8843 12.4627L81.8771 12.4832L81.8699 12.5037L81.8627 12.5252L81.8556 12.5457L81.8484 12.5661L81.8412 12.5866L81.834 12.6071L81.8268 12.6286L81.8197 12.6491L81.8125 12.6706L81.8053 12.6911L81.7991 12.7116L81.793 12.7331L81.7868 12.7546L81.7807 12.7751L81.7745 12.7966L81.7684 12.8181L81.7632 12.8397L81.7581 12.8612L81.752 12.8827L81.7468 12.9042L81.7407 12.9257L81.7355 12.9472L81.7304 12.9687L81.7253 12.9902L81.7202 13.0117L81.715 13.0333L81.7099 13.0548L81.7048 13.0763L81.6996 13.0978L81.6955 13.1193L81.6904 13.1408L81.6863 13.1623L81.6812 13.1838L81.676 13.2054L81.6719 13.2269L81.6678 13.2484L81.6627 13.2699L81.6586 13.2924L81.6545 13.3139L81.6504 13.3355L81.6463 13.357L81.6422 13.3785L81.6381 13.4L81.635 13.4215L81.6319 13.443L81.6289 13.4645L81.6258 13.4871L81.6217 13.5086L81.6186 13.5301L81.6155 13.5516L81.6124 13.5731L81.6094 13.5946L81.6063 13.6161L81.6032 13.6387L81.6012 13.6612L81.5981 13.6827L81.596 13.7053L81.593 13.7268L81.5909 13.7493L81.5889 13.7718L81.5868 13.7934L81.5847 13.8159L81.5827 13.8384L81.5806 13.861L81.5786 13.8835L81.5765 13.906L81.5745 13.9286L81.5724 13.9511L81.5714 13.9737L81.5704 13.9962L81.5683 14.0187L81.5673 14.0413L81.5663 14.0638L81.5653 14.0863L81.5642 14.1089L81.5632 14.1304V14.1529L81.5622 14.1755V14.2205L81.5612 14.2431V26.6546L81.5622 26.673L81.5632 26.6915L81.5642 26.7099L81.5653 26.7273L81.5663 26.7458L81.5673 26.7642L81.5683 26.7826L81.5694 26.8011L81.5704 26.8185L81.5714 26.8369L81.5724 26.8543L81.5735 26.8728L81.5745 26.8912L81.5755 26.9086L81.5765 26.926L81.5776 26.9435L81.5786 26.9619L81.5806 26.9793L81.5827 26.9967L81.5847 27.0141L81.5868 27.0316L81.5889 27.05L81.5909 27.0684L81.593 27.0858L81.595 27.1043L81.5971 27.1217L81.5991 27.1391L81.6022 27.1565L81.6053 27.1739L81.6083 27.1924L81.6104 27.2098L81.6124 27.2282L81.6155 27.2457L81.6186 27.2631L81.6217 27.2805L81.6248 27.2979L81.6278 27.3153L81.6309 27.3327L81.634 27.3512L81.6371 27.3686L81.6401 27.386L81.6432 27.4034L81.6463 27.4208L81.6494 27.4382L81.6535 27.4557L81.6576 27.472L81.6617 27.4884L81.6658 27.5069L81.6699 27.5243L81.674 27.5417L81.6781 27.5591L81.6822 27.5765L81.6863 27.5929L81.6904 27.6103L81.6945 27.6267L81.6986 27.6441L81.7037 27.6616L81.7078 27.679L81.713 27.6964L81.7181 27.7138L81.7222 27.7312L81.7273 27.7476L81.7325 27.765L81.7376 27.7824L81.7427 27.7988L81.7479 27.8162L81.753 27.8337L81.7581 27.8511L81.7632 27.8685L81.7684 27.8859L81.7735 27.9023L81.7786 27.9197L81.7838 27.9371L81.7889 27.9535L81.795 27.9699L81.8012 27.9863L81.8073 28.0037L81.8125 28.0201L81.8186 28.0365L81.8248 28.0539L81.8309 28.0703L81.8371 28.0867L81.8432 28.1031L81.8494 28.1195L81.8566 28.1358L81.8627 28.1522L81.8699 28.1686L81.8761 28.185L81.8822 28.2014L81.8884 28.2178L81.8956 28.2342L81.9027 28.2506L81.9099 28.267L81.9171 28.2834L81.9243 28.2997L81.9315 28.3161L81.9376 28.3325L81.9448 28.3489L81.952 28.3643L81.9592 28.3807L81.9663 28.3971L81.9745 28.4135L81.9817 28.4288L81.9889 28.4442L81.9971 28.4606L82.0053 28.477L82.0125 28.4923L82.0207 28.5077L82.0289 28.5231L82.0371 28.5395L82.0453 28.5548L82.0535 28.5702L82.0617 28.5866L82.0699 28.6019L82.0782 28.6173L82.0864 28.6327L82.0946 28.648L82.1028 28.6634L82.111 28.6788L82.1192 28.6941L82.1284 28.7095L82.1376 28.7249L82.1459 28.7402L82.1541 28.7556L82.1633 28.771L82.1725 28.7863L82.1818 28.8017L82.191 28.816L82.2002 28.8314L82.2095 28.8468L82.2187 28.8621L82.2279 28.8765L82.2382 28.8908L82.2474 28.9062L82.2566 28.9216L82.2659 28.9369L82.2751 28.9513L82.2854 28.9656L82.2956 28.981L82.3059 28.9953L82.3161 29.0107L82.3254 29.025L82.3346 29.0404L82.3449 29.0547L82.3551 29.0691L82.3654 29.0834L82.3756 29.0977L82.3859 29.1121L82.3961 29.1264L82.4064 29.1408L82.4177 29.1551L82.4279 29.1695L82.4382 29.1828L82.4495 29.1971L82.4597 29.2115L82.47 29.2248L82.4813 29.2381L82.4926 29.2524L82.5039 29.2657L82.5151 29.2791L82.5254 29.2924L82.5367 29.3057L82.548 29.319L82.5582 29.3334L82.5695 29.3467L82.5808 29.36L82.5921 29.3733L82.6034 29.3866L82.6146 29.3999L82.6259 29.4133L82.6382 29.4266L82.6495 29.4399L82.6608 29.4532L82.6731 29.4665L82.6844 29.4798L82.6967 29.4932L82.709 29.5065L82.7203 29.5198L82.7326 29.5321L82.7449 29.5454L82.7562 29.5577L82.7685 29.57L82.7808 29.5833L82.7931 29.5966L82.8054 29.6099L82.8177 29.6222L82.8301 29.6345L82.8424 29.6468L82.8547 29.6591L82.868 29.6714L82.8803 29.6837L82.8926 29.696L82.906 29.7083L82.9183 29.7206L82.9316 29.7329L82.9439 29.7452L82.9573 29.7564L82.9706 29.7687L82.9839 29.78L82.9973 29.7923L83.0106 29.8046L83.0239 29.8158L83.0373 29.8271L83.0506 29.8384L83.0639 29.8497L83.0773 29.8609L83.0906 29.8722L83.105 29.8845L83.1193 29.8958L83.1327 29.907L83.146 29.9183L83.1593 29.9296L83.1727 29.9408L83.187 29.9521L83.2004 29.9634L83.2137 29.9746L83.227 29.9859L83.2414 29.9972L83.2547 30.0074L83.2691 30.0187L83.2835 30.0289L83.2978 30.0392L83.3122 30.0494L83.3265 30.0607L83.3409 30.0719L83.3553 30.0822L83.3696 30.0935L83.384 30.1037L83.3983 30.1139L83.4137 30.1252L83.4281 30.1355L83.4424 30.1457L83.4578 30.1559L83.4732 30.1662L83.4876 30.1764L83.5019 30.1857L83.5173 30.1949L83.5317 30.2041L83.5471 30.2143L83.5614 30.2236L83.5768 30.2338L83.5922 30.243L83.6076 30.2533L83.623 30.2625L83.6384 30.2717L83.6538 30.2809L83.6691 30.2901L83.6845 30.2994L83.6999 30.3086L83.7174 30.3188L94.4573 36.5891L94.4707 36.5963L94.483 36.6024L94.4953 36.6096L94.5076 36.6168L94.5199 36.6229L94.5312 36.6291L94.5435 36.6362L94.5558 36.6424L94.5681 36.6496L94.5804 36.6557L94.5917 36.6618L94.604 36.668L94.6163 36.6752L94.6286 36.6813L94.641 36.6875L94.6533 36.6936L94.6645 36.6997L94.6769 36.7059L94.6892 36.712L94.7015 36.7182L94.7138 36.7243L94.7261 36.7305L94.7384 36.7356L94.7507 36.7418L94.763 36.7469L94.7753 36.752L94.7876 36.7571L94.8 36.7622L94.8123 36.7674L94.8246 36.7725L94.8369 36.7776L94.8492 36.7827L94.8615 36.7878L94.8738 36.793L94.8861 36.7981L94.8995 36.8032L94.9118 36.8083L94.9241 36.8135L94.9364 36.8186L94.9487 36.8237L94.961 36.8278L94.9733 36.8319L94.9856 36.837L94.999 36.8421L95.0113 36.8473L95.0236 36.8514L95.0359 36.8555L95.0492 36.8596L95.0615 36.8637L95.0738 36.8678L95.0861 36.8718L95.0974 36.8749L95.1241 36.8831L95.1497 36.8913L95.1754 36.8995L95.201 36.9077L95.2267 36.9149L95.2523 36.922L95.278 36.9292L95.3036 36.9354L95.3293 36.9415L95.3549 36.9477L95.3805 36.9538L95.4062 36.9599L95.4318 36.9651L95.4575 36.9712L95.4841 36.9763L95.5108 36.9815L95.5365 36.9856L95.5631 36.9897L95.5888 36.9938L95.6144 36.9978L95.6401 37.0019L95.6667 37.006L95.6924 37.0101L95.7191 37.0132L95.7447 37.0163L95.7703 37.0194L95.797 37.0214L95.8227 37.0235L95.8493 37.0255L95.875 37.0276L95.9016 37.0296L95.9283 37.0306L95.955 37.0317L95.9817 37.0327L96.0083 37.0337L96.034 37.0347L96.0606 37.0358H96.0873L96.114 37.0368H96.1407L96.1663 37.0358H96.193L96.2196 37.0347L96.2463 37.0337L96.272 37.0327L96.2986 37.0317L96.3253 37.0306L96.352 37.0296L96.3786 37.0276L96.4043 37.0255L96.4309 37.0235L96.4566 37.0204L96.4833 37.0173L96.5089 37.0142L96.5356 37.0112L96.5623 37.0081L96.5879 37.004L96.6146 36.9999L96.6402 36.9958L96.6659 36.9917L96.6915 36.9876L96.7171 36.9835L96.7438 36.9784L96.7705 36.9733L96.7961 36.9681L96.8218 36.962L96.8484 36.9558L96.8751 36.9497L96.9008 36.9436L96.9274 36.9374L96.9531 36.9302L96.9787 36.9231L97.0044 36.9159L97.03 36.9087L97.0557 36.9016L97.0823 36.8934L97.0946 36.8903L97.108 36.8862L97.1203 36.8821L97.1326 36.878L97.1449 36.8739L97.1572 36.8698L97.1695 36.8657L97.1818 36.8616L97.1941 36.8575L97.2064 36.8524L97.2188 36.8483L97.2311 36.8442L97.2434 36.8391L97.2557 36.835L97.268 36.8298L97.2803 36.8258L97.2926 36.8217L97.3059 36.8176L97.3183 36.8135L97.3306 36.8083L97.3429 36.8032L97.3552 36.7981L97.3675 36.793L97.3798 36.7878L97.3921 36.7827L97.4044 36.7776L97.4167 36.7725L97.429 36.7674L97.4414 36.7612L97.4537 36.7551L97.466 36.7499L97.4783 36.7448L97.4906 36.7387L97.5029 36.7325L97.5152 36.7264L97.5275 36.7202L97.5398 36.7151L97.5521 36.709L97.5644 36.7028L97.5768 36.6967L97.5891 36.6916L97.6014 36.6854L97.6137 36.6793L97.625 36.6731L97.6373 36.667L97.6496 36.6608L97.6619 36.6547L97.6742 36.6475L97.6855 36.6414L97.6978 36.6352L97.7101 36.628L97.7234 36.6209L109.615 30.0074L109.629 30.0002L109.641 29.9931L109.653 29.9859L109.667 29.9787L109.679 29.9716L109.691 29.9644L109.704 29.9572L109.716 29.95L109.728 29.9429L109.741 29.9357L109.753 29.9275L109.765 29.9203L109.777 29.9121L109.79 29.9039L109.802 29.8968L109.814 29.8896L109.826 29.8824L109.837 29.8742L109.849 29.866L109.861 29.8578L109.872 29.8497L109.884 29.8415L109.896 29.8333L109.908 29.8251L109.919 29.8179L109.931 29.8097L109.944 29.8015L109.956 29.7933L109.967 29.7851L109.979 29.7769L109.99 29.7687L110.001 29.7595L110.013 29.7513L110.025 29.7421L110.035 29.7339L110.046 29.7247L110.057 29.7165L110.069 29.7073L110.08 29.698L110.091 29.6888L110.102 29.6806L110.112 29.6714L110.123 29.6622L110.134 29.653L110.146 29.6437L110.157 29.6345L110.167 29.6253L110.179 29.6161L110.19 29.6069L110.2 29.5977L110.21 29.5884L110.222 29.5792L110.232 29.57L110.242 29.5608L110.252 29.5505L110.263 29.5413L110.273 29.5321L110.284 29.5229L110.294 29.5137L110.305 29.5044L110.315 29.4952L110.325 29.486L110.335 29.4757L110.346 29.4665L110.356 29.4563L110.366 29.446L110.377 29.4358L110.387 29.4256L110.397 29.4153L110.406 29.4061L110.417 29.3958L110.426 29.3856L110.435 29.3754L110.444 29.3651L110.453 29.3549L110.463 29.3446L110.472 29.3344L110.481 29.3241L110.491 29.3129L110.501 29.3026L110.51 29.2924L110.519 29.2821L110.528 29.2719L110.538 29.2617L110.547 29.2504L110.556 29.2401L110.565 29.2289L110.574 29.2186L110.584 29.2074L110.592 29.1971L110.601 29.1869L110.61 29.1766L110.619 29.1654L110.628 29.1551L110.637 29.1438L110.645 29.1336L110.653 29.1234L110.662 29.1121L110.67 29.1008L110.678 29.0896L110.687 29.0783L110.696 29.067L110.704 29.0557L110.712 29.0445L110.72 29.0332L110.728 29.0219L110.737 29.0107L110.745 28.9984L110.753 28.9871L110.761 28.9758L110.769 28.9646L110.777 28.9533L110.784 28.942L110.792 28.9297L110.8 28.9185L110.807 28.9072L110.816 28.8949L110.824 28.8837L110.831 28.8714L110.839 28.8591L110.846 28.8478L110.853 28.8365L110.861 28.8253L110.868 28.813L110.876 28.8007L110.883 28.7894L110.89 28.7771L110.898 28.7648L110.904 28.7525L110.91 28.7402L110.917 28.729L110.923 28.7167L110.93 28.7044L110.938 28.6921L110.944 28.6798L110.951 28.6675L110.957 28.6552L110.963 28.6429L110.969 28.6306L110.976 28.6183L110.982 28.606L110.988 28.5927L110.994 28.5804L111 28.5681L111.006 28.5548L111.012 28.5425L111.019 28.5302L111.025 28.5169L111.03 28.5046L111.036 28.4923L111.042 28.479L111.047 28.4657L111.053 28.4534L111.058 28.4401L111.063 28.4278L111.069 28.4155L111.074 28.4022L111.08 28.3889L111.085 28.3766L111.091 28.3633L111.097 28.3499L111.102 28.3366L111.108 28.3243L111.113 28.312L111.118 28.2987L111.123 28.2854L111.128 28.2731L111.134 28.2598L111.139 28.2465L111.144 28.2332L111.148 28.2198L111.153 28.2065L111.158 28.1932L111.163 28.1809L111.168 28.1676L111.174 28.1543L111.178 28.141L111.182 28.1277L111.187 28.1143L111.191 28.101L111.196 28.0877L111.2 28.0744L111.204 28.0611L111.208 28.0478L111.214 28.0334L111.218 28.0201L111.222 28.0068L111.226 27.9935L111.23 27.9812L111.234 27.9678L111.238 27.9535L111.241 27.9402L111.245 27.9279L111.249 27.9136L111.253 27.8992L111.256 27.8859L111.259 27.8716L111.263 27.8582L111.266 27.8439L111.27 27.8306L111.273 27.8162L111.276 27.8029L111.279 27.7896L111.282 27.7763L111.285 27.763L111.288 27.7497L111.292 27.7363L111.295 27.722L111.297 27.7087L111.3 27.6943L111.303 27.68L111.306 27.6657L111.309 27.6523L111.311 27.638L111.313 27.6237L111.316 27.6103L111.318 27.596L111.32 27.5817L111.322 27.5683L111.324 27.555L111.326 27.5407L111.328 27.5263L111.33 27.513L111.333 27.4987L111.335 27.4843L111.337 27.471L111.339 27.4567L111.341 27.4423L111.343 27.428L111.345 27.4147L111.347 27.3993L111.348 27.385L111.35 27.3717L111.351 27.3583L111.353 27.344L111.354 27.3297L111.355 27.3153L111.356 27.301L111.357 27.2866L111.358 27.2723L111.359 27.2579V27.2282L111.36 27.2139L111.361 27.1996L111.362 27.1852L111.363 27.1709L111.364 27.1576L111.365 27.1422L111.366 27.1278V27.1135L111.367 27.0992V12.9626L111.366 12.9493V12.9317L111.365 12.9184V12.8928L111.364 12.8795L111.363 12.8662L111.362 12.8529L111.361 12.8395L111.36 12.8262L111.359 12.8129L111.358 12.7996L111.357 12.7863L111.356 12.773L111.355 12.7607L111.354 12.7474L111.353 12.7351L111.352 12.7228L111.351 12.7105L111.349 12.6972L111.348 12.6828L111.347 12.6705L111.346 12.6572L111.344 12.6439L111.342 12.6306L111.341 12.6183L111.339 12.605L111.337 12.5927L111.335 12.5794L111.333 12.566L111.33 12.5537L111.328 12.5415L111.326 12.5292L111.324 12.5169L111.322 12.5046L111.32 12.4923L111.318 12.48L111.316 12.4687L111.311 12.4421L111.306 12.4165L111.301 12.3919L111.295 12.3663L111.288 12.3417L111.283 12.3171L111.277 12.2915L111.271 12.2659L111.265 12.2413L111.258 12.2167L111.25 12.1921L111.243 12.1675L111.236 12.143L111.228 12.1184L111.22 12.0938L111.213 12.0692L111.205 12.0446L111.197 12.02L111.188 11.9955L111.18 11.9719L111.172 11.9473L111.163 11.9237L111.154 11.9002L111.145 11.8766L111.136 11.8531L111.126 11.8295L111.116 11.8059L111.107 11.7824L111.097 11.7588L111.086 11.7353L111.076 11.7127L111.065 11.6892L111.054 11.6666L111.042 11.6441L111.031 11.6207L111.019 11.5982L111.007 11.5746L110.995 11.5521L110.983 11.5296L110.97 11.507L110.958 11.4849L110.946 11.4624L110.932 11.4398L110.919 11.4183L110.906 11.3968L110.892 11.3753L110.879 11.3527L110.865 11.3312L110.85 11.3097L110.836 11.2882L110.822 11.2667L110.807 11.2452L110.793 11.2247L110.778 11.2042L110.762 11.1837L110.747 11.1632L110.731 11.1427L110.715 11.1223L110.7 11.1023L110.684 11.0818L110.668 11.0623L110.651 11.0418L110.635 11.0224L110.619 11.0029L110.602 10.9835L110.585 10.964L110.567 10.9445L110.55 10.9261L110.532 10.9077L110.515 10.8882L110.498 10.8697L110.48 10.8513L110.463 10.8329L110.444 10.8144L110.426 10.796L110.408 10.7786L110.39 10.7601L110.37 10.7427L110.351 10.7253L110.331 10.7079L110.313 10.6905L110.293 10.6731L110.274 10.6567L110.253 10.6393L110.244 10.6311L110.234 10.6218L110.224 10.6137L110.213 10.6055L110.203 10.5973L110.193 10.5891L110.183 10.5809L110.173 10.5727L110.163 10.5645L110.153 10.5563L110.143 10.5481L110.132 10.5399L110.122 10.5317L110.112 10.5245L110.102 10.5174L110.091 10.5092L110.081 10.502L110.07 10.4948L110.06 10.4866L110.048 10.4784L110.038 10.4713L110.027 10.4631L110.016 10.4549L110.005 10.4477L109.994 10.4405L109.984 10.4334L109.972 10.4262L109.962 10.419L109.951 10.4118L109.94 10.4047L109.928 10.3975L109.917 10.3903L109.906 10.3832L109.895 10.376L109.884 10.3688L109.873 10.3627L109.862 10.3555L109.85 10.3483L109.839 10.3412L109.828 10.334L109.816 10.3278L109.805 10.3207L109.794 10.3135L109.782 10.3063L98.1369 3.65077L98.1205 3.64155L98.1051 3.63335L98.0897 3.62516L98.0754 3.61696L98.06 3.60877L98.0456 3.60057L98.0303 3.59238L98.0149 3.58418L97.9995 3.57599L97.9841 3.56779L97.9687 3.5596L97.9533 3.55243L97.9379 3.54525L97.9236 3.53737L97.9082 3.5302L97.8928 3.52303L97.8774 3.51585L97.862 3.50868L97.8466 3.50151L97.8312 3.49434L97.8159 3.48717L97.8015 3.48L97.7861 3.47283L97.7707 3.46566L97.7553 3.45849L97.74 3.45234L97.7246 3.44517L97.7092 3.43903L97.6938 3.43185L97.6784 3.42571L97.662 3.41956L97.6466 3.41342L97.6312 3.40727L97.6158 3.40112L97.6004 3.39498L97.5851 3.38883L97.5697 3.38268L97.5543 3.37654L97.5389 3.37039L97.5225 3.36527L97.5071 3.36015L97.4917 3.35503L97.4763 3.3499L97.4609 3.34478L97.4445 3.33966L97.4281 3.33454L97.4127 3.32942L97.3973 3.32429L97.382 3.31917L97.3666 3.31405L97.3512 3.30893L97.3348 3.30381L97.3184 3.2994L97.3019 3.29428L97.2866 3.28916L97.2701 3.28404L97.2537 3.27891L97.2373 3.27482L97.2209 3.26969L97.2055 3.2656L97.1891 3.2615L97.1737 3.25638L97.1573 3.25228L97.1413 3.24818L97.1249 3.24408L97.1085 3.23999L97.0926 3.23589L97.0762 3.23179L97.0608 3.22769L97.0454 3.22462L97.029 3.22073L97.0126 3.21765L96.9962 3.21458L96.9808 3.21048L96.9644 3.20741L96.9479 3.20331L96.9315 3.20024L96.9161 3.19717L96.8997 3.19409L96.8833 3.19102L96.8669 3.18795L96.8505 3.18487L96.8341 3.1818L96.8177 3.17893L96.8013 3.17658L96.7848 3.1735L96.7684 3.17145L96.752 3.16838L96.7366 3.16633L96.7202 3.16428L96.7038 3.16224L96.6874 3.15916L96.671 3.15609L96.6546 3.15404L96.6382 3.15199L96.6217 3.14994L96.6053 3.14789L96.5889 3.14584L96.5725 3.1438L96.5561 3.14175L96.5397 3.14072L96.5243 3.13867L96.5079 3.13765L96.4915 3.1356L96.4751 3.13355L96.4586 3.1315L96.4422 3.13048L96.4258 3.12843L96.4094 3.12741L96.393 3.12638H96.3766L96.3602 3.12536L96.3438 3.12433L96.3273 3.12331L96.3109 3.12228L96.2945 3.12126L96.2781 3.12024H96.2617L96.2453 3.11921L96.2289 3.11819H96.196L96.1796 3.11716H96.1304L96.144 3.12157Z" fill="#00A88A"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M152.077 25.6254V13.0964C152.077 11.4744 151.206 9.97663 149.796 9.17177L138.136 2.51712C136.441 1.54969 134.355 1.57161 132.681 2.57449L122.836 8.4717C120.763 9.71428 119.494 11.9505 119.494 14.365V26.6085C119.494 28.6512 120.58 30.5401 122.345 31.5707C125.417 33.3644 130.246 36.1825 133.086 37.841C134.514 38.6748 136.278 38.6933 137.723 37.8891L149.616 31.2746C151.134 30.4305 152.075 28.8315 152.075 27.0961V25.6261L152.077 25.6254Z" fill="#EBB951"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M135.471 0.423503H135.499L135.524 0.42381H135.526L135.55 0.42422H135.553L135.578 0.424629H135.581L135.606 0.425142H135.608L135.632 0.425859H135.634L135.659 0.426576H135.661L135.686 0.4276H135.689L135.713 0.428625H135.717L135.741 0.429649H135.744L135.769 0.430878H135.772L135.797 0.431903H135.799L135.823 0.432927H135.825L135.85 0.433951H135.853L135.878 0.434976H135.881L135.906 0.436H135.909L135.934 0.438049H135.937L135.962 0.439073H135.965L135.989 0.441122H135.992L136.017 0.443171H136.02L136.045 0.44522H136.048L136.072 0.447268H136.076L136.1 0.449317H136.102L136.127 0.451366H136.13L136.155 0.454439H136.157L136.181 0.456488H136.184L136.209 0.458537H136.212L136.237 0.46161H136.24L136.264 0.464683L136.267 0.465707L136.292 0.468781H136.295L136.32 0.471854H136.323L136.348 0.474927H136.35L136.375 0.478H136.378L136.403 0.481073H136.405L136.429 0.484147H136.433L136.457 0.48722H136.459L136.484 0.490293H136.487L136.511 0.49439H136.515L136.539 0.497464L136.541 0.498488L136.566 0.502586H136.569L136.594 0.506683L136.597 0.507707L136.621 0.511805H136.624L136.649 0.515903H136.652L136.677 0.52H136.68L136.704 0.524098H136.707L136.732 0.528195H136.735L136.76 0.533317L136.763 0.534342L136.787 0.538439H136.791L136.815 0.543561L136.818 0.544586L136.843 0.549707L136.846 0.550732L136.871 0.555854L136.874 0.556878L136.898 0.562L136.901 0.563025L136.926 0.568147L136.929 0.569171L136.954 0.574293H136.957L136.981 0.579415H136.983L137.008 0.585561H137.011L137.036 0.590683L137.039 0.591707L137.062 0.597854L137.064 0.598878L137.089 0.605025H137.092L137.117 0.611171L137.12 0.612195L137.143 0.618342L137.146 0.619366L137.17 0.625512L137.173 0.626537L137.198 0.632683H137.201L137.224 0.638829H137.228L137.252 0.646H137.254L137.279 0.653171H137.282L137.306 0.660342L137.31 0.661366L137.334 0.668537H137.337L137.361 0.675707H137.364L137.388 0.682878L137.391 0.683903L137.414 0.691073L137.417 0.692098L137.441 0.699269L137.444 0.700293L137.468 0.707464L137.471 0.708488L137.494 0.716683L137.496 0.717707L137.52 0.724878L137.523 0.725903L137.548 0.734098L137.55 0.735122L137.574 0.743317L137.577 0.744342L137.602 0.752537L137.605 0.753561L137.629 0.761756H137.631L137.654 0.769951L137.657 0.770976L137.681 0.779171L137.683 0.780195L137.707 0.78839L137.709 0.789415L137.732 0.79761L137.735 0.798634L137.759 0.806829L137.762 0.807854L137.786 0.816049L137.788 0.817073L137.811 0.826293L137.813 0.827317L137.837 0.835512L137.84 0.836537L137.863 0.845756L137.866 0.846781L137.889 0.856L137.892 0.857025L137.916 0.866244L137.918 0.867269L137.941 0.876488L137.945 0.877512L137.968 0.886732L137.97 0.887756L137.994 0.896976L137.997 0.898L138.02 0.90722L138.023 0.908244L138.047 0.917464L138.05 0.918488L138.074 0.927708L138.076 0.929756L138.099 0.938976L138.101 0.94L138.125 0.94922L138.127 0.950244L138.151 0.960488L138.154 0.961512L138.177 0.971756L138.179 0.972781L138.203 0.983025L138.205 0.984049L138.228 0.994293L138.23 0.995317L138.253 1.00659L138.255 1.00761L138.279 1.01785L138.281 1.01888L138.304 1.02912L138.306 1.03015L138.328 1.04141L138.331 1.04244L138.354 1.05371L138.357 1.05473L138.379 1.066L138.383 1.06702L138.406 1.07829L138.409 1.08034L138.433 1.09161L138.435 1.09263L138.457 1.1039L138.46 1.10493L138.483 1.1162L138.486 1.11722L138.509 1.12849L138.512 1.12951L138.534 1.14078L138.537 1.14181L138.561 1.1541L138.564 1.15512L138.587 1.16639L138.589 1.16844L138.611 1.18073L138.613 1.18176L138.636 1.19405L138.639 1.1961L138.662 1.20839L138.665 1.20941L138.687 1.22171L138.689 1.22376L138.712 1.23605L138.714 1.2381L138.736 1.25039L138.738 1.25141L138.761 1.26371L138.764 1.26576L138.787 1.27805L138.79 1.2801L138.812 1.29341L150.473 7.95195L150.493 7.96322L150.495 7.96527L150.513 7.97654L150.516 7.97756L150.535 7.98883L150.538 7.98985L150.557 8.00112L150.559 8.00215L150.577 8.01342L150.58 8.01444L150.599 8.02571L150.601 8.02673L150.619 8.038L150.622 8.03902L150.641 8.05029L150.643 8.05234L150.661 8.06463L150.664 8.06668L150.683 8.07795L150.685 8.07898L150.703 8.09127L150.705 8.09229L150.724 8.10356L150.726 8.10459L150.744 8.11585L150.746 8.1179L150.765 8.1302L150.767 8.13122L150.784 8.14351L150.787 8.14556L150.806 8.15785L150.808 8.15888L150.826 8.17015L150.829 8.1722L150.847 8.18449L150.849 8.18654L150.866 8.19883L150.869 8.19985L150.887 8.21215L150.889 8.2142L150.906 8.22649L150.908 8.22751L150.926 8.23981L150.928 8.24185L150.945 8.25415L150.947 8.2562L150.965 8.26849L150.968 8.27054L150.985 8.28385L150.987 8.2859L151.005 8.2982L151.007 8.29922L151.024 8.31151L151.026 8.31356L151.044 8.32585L151.046 8.3279L151.063 8.3402L151.065 8.34122L151.083 8.35351L151.085 8.35556L151.102 8.36888L151.104 8.3699L151.122 8.38322L151.124 8.38527L151.14 8.39859L151.142 8.39961L151.16 8.41293L151.162 8.41498L151.179 8.42829L151.182 8.43034L151.199 8.44263L151.201 8.44366L151.217 8.45698L151.219 8.45902L151.236 8.47234L151.238 8.47439L151.255 8.48873L151.257 8.49078L151.274 8.5041L151.276 8.50615L151.292 8.51946L151.294 8.52151L151.311 8.53585L151.313 8.5379L151.329 8.55225L151.331 8.55429L151.347 8.56863L151.351 8.57171L151.382 8.59937L151.386 8.60346L151.418 8.63112L151.422 8.63522L151.455 8.6639L151.459 8.66698L151.491 8.69566L151.495 8.69976L151.527 8.72844L151.531 8.73254L151.563 8.76122L151.567 8.76532L151.599 8.79503L151.603 8.79912L151.634 8.82883L151.638 8.83293L151.669 8.86263L151.673 8.86673L151.703 8.89644L151.707 8.90054L151.738 8.93127L151.742 8.93537L151.772 8.9661L151.776 8.9702L151.806 9.00093L151.81 9.00502L151.839 9.03576L151.843 9.03986L151.872 9.07059L151.876 9.07468L151.904 9.10644L151.909 9.11054L151.937 9.14229L151.941 9.14639L151.97 9.17815L151.973 9.18225L152.001 9.21502L152.004 9.21912L152.032 9.25088L152.036 9.25498L152.063 9.28673L152.068 9.29083L152.095 9.32361L152.098 9.32771L152.126 9.36049L152.13 9.36561L152.157 9.39839L152.16 9.40249L152.187 9.43629L152.19 9.44039L152.216 9.4742L152.219 9.47932L152.245 9.51312L152.248 9.51722L152.274 9.55103L152.277 9.55615L152.301 9.58995L152.305 9.59405L152.329 9.62785L152.332 9.63195L152.357 9.66678L152.36 9.6719L152.383 9.70673L152.387 9.71083L152.411 9.74566L152.414 9.75078L152.438 9.78561L152.441 9.78971L152.465 9.82556L152.468 9.83068L152.49 9.86551L152.493 9.87064L152.516 9.90649L152.519 9.91059L152.541 9.94644L152.545 9.95156L152.567 9.98742L152.57 9.99254L152.593 10.0294L152.596 10.0335L152.617 10.0704L152.62 10.0755L152.642 10.1124L152.645 10.1175L152.667 10.1534L152.669 10.1585L152.689 10.1964L152.691 10.2015L152.712 10.2384L152.714 10.2435L152.734 10.2804L152.737 10.2855L152.757 10.3224L152.76 10.3275L152.779 10.3654L152.782 10.3705L152.801 10.4084L152.804 10.4136L152.824 10.4515L152.826 10.4566L152.845 10.4945L152.847 10.4996L152.866 10.5375L152.868 10.5426L152.886 10.5805L152.889 10.5857L152.907 10.6236L152.909 10.6287L152.926 10.6676L152.929 10.6727L152.947 10.7117L152.949 10.7168L152.965 10.7557L152.967 10.7608L152.984 10.7998L152.986 10.8049L153.002 10.8438L153.004 10.8489L153.019 10.8889L153.022 10.894L153.037 10.934L153.039 10.9391L153.054 10.979L153.056 10.9852L153.071 11.0251L153.073 11.0302L153.087 11.0702L153.089 11.0753L153.104 11.1153L153.106 11.1204L153.12 11.1603L153.121 11.1655L153.134 11.2054L153.136 11.2105L153.15 11.2505L153.152 11.2556L153.165 11.2966L153.166 11.3017L153.178 11.3417L153.179 11.3468L153.193 11.3878L153.194 11.3929L153.205 11.4339L153.207 11.439L153.218 11.48L153.22 11.4851L153.231 11.526L153.233 11.5312L153.244 11.5721L153.245 11.5773L153.256 11.6193L153.257 11.6254L153.268 11.6664L153.27 11.6725L153.28 11.7135L153.281 11.7197L153.29 11.7617L153.291 11.7668L153.301 11.8078L153.302 11.8139L153.311 11.8559L153.312 11.861L153.32 11.903L153.321 11.9092L153.329 11.9512L153.33 11.9563L153.338 11.9983V12.0034L153.343 12.0249L153.344 12.027L153.348 12.0475L153.349 12.0505L153.353 12.0721L153.354 12.0751L153.357 12.0956L153.358 12.0987L153.361 12.1202V12.1222L153.365 12.1438V12.1468L153.368 12.1683V12.1714L153.371 12.1929V12.195L153.374 12.2165L153.375 12.2196L153.379 12.2411V12.2441L153.382 12.2657L153.383 12.2687L153.386 12.2902V12.2943L153.389 12.3159L153.39 12.3179L153.393 12.3394V12.3415L153.396 12.363V12.366L153.399 12.3865V12.3886L153.402 12.4101L153.403 12.4132L153.405 12.4347V12.4378L153.407 12.4593V12.4623L153.409 12.4839V12.4869L153.411 12.5084V12.5115L153.413 12.533V12.5361L153.415 12.5576V12.5607L153.417 12.5822L153.419 12.5853L153.421 12.6068V12.6099L153.423 12.6314V12.6334L153.424 12.6549V12.658L153.426 12.6795V12.6816L153.427 12.7031V12.7072L153.428 12.7297V12.7318L153.429 12.7533V12.7563L153.431 12.7779V12.782L153.432 12.8035V12.8065L153.433 12.828V12.8301L153.434 12.8516V12.8547L153.435 12.8772V12.9039L153.436 12.9264V12.9295L153.437 12.951V12.9786L153.438 13.0001V27.1706L153.437 27.1942V27.2219L153.436 27.2444V27.2475L153.435 27.27V27.2731L153.434 27.2966V27.2997L153.433 27.3233V27.3263L153.432 27.3499L153.431 27.353L153.43 27.3765V27.3796L153.429 27.4032V27.4062L153.427 27.4295V27.4316L153.426 27.4548V27.4589L153.424 27.4825V27.4855L153.422 27.5088V27.5119L153.42 27.5344V27.5375L153.417 27.56V27.5641L153.415 27.5877V27.5907L153.413 27.6143L153.412 27.6174L153.41 27.6399L153.409 27.643L153.407 27.6655V27.6686L153.405 27.6911V27.6942L153.403 27.7178V27.7198L153.401 27.7424L153.4 27.7454L153.398 27.769L153.397 27.7721L153.394 27.7946V27.7977L153.391 27.8202V27.8233L153.388 27.8458V27.8489L153.385 27.8714V27.8745L153.382 27.8981L153.381 27.9011L153.377 27.9237V27.9267L153.374 27.9493L153.373 27.9524L153.37 27.9749V27.9769L153.367 27.9995L153.366 28.0025L153.363 28.0251V28.0282L153.36 28.0507L153.359 28.0538L153.356 28.0773L153.355 28.0814L153.351 28.104V28.106L153.347 28.1285L153.346 28.1316L153.342 28.1542V28.1572L153.337 28.1798V28.1818L153.333 28.2044V28.2074L153.329 28.23L153.328 28.233L153.324 28.2545L153.323 28.2576L153.318 28.2802V28.2822L153.313 28.3047L153.312 28.3078L153.308 28.3304L153.307 28.3324L153.302 28.3539V28.357L153.296 28.3795V28.3826L153.291 28.4051L153.29 28.4082L153.286 28.4307V28.4328L153.281 28.4553L153.28 28.4584L153.275 28.4809V28.483L153.27 28.5055L153.269 28.5086L153.264 28.5311L153.263 28.5342L153.257 28.5567L153.256 28.5598L153.251 28.5813L153.25 28.5834L153.245 28.6049L153.244 28.608L153.238 28.6305L153.237 28.6336L153.231 28.6551L153.23 28.6571L153.224 28.6797L153.223 28.6827L153.216 28.7043L153.215 28.7073L153.209 28.7288L153.208 28.7319L153.202 28.7534V28.7565L153.196 28.778L153.195 28.7811L153.189 28.8026L153.188 28.8046L153.182 28.8262L153.181 28.8282L153.173 28.8507L153.172 28.8538L153.165 28.8764V28.8784L153.159 28.8999L153.158 28.902L153.151 28.9235L153.15 28.9265L153.143 28.9481L153.142 28.9501L153.134 28.9716L153.133 28.9747L153.126 28.9962L153.125 28.9993L153.118 29.0208L153.117 29.0228L153.11 29.0433L153.109 29.0464L153.102 29.0679L153.101 29.071L153.093 29.0925L153.092 29.0956L153.085 29.1171L153.084 29.1202L153.076 29.1417L153.075 29.1437L153.067 29.1652L153.066 29.1683L153.057 29.1888L153.056 29.1908L153.048 29.2124L153.047 29.2144L153.04 29.2359L153.039 29.239L153.031 29.2595L153.03 29.2625L153.022 29.2841L153.021 29.2861L153.012 29.3076L153.011 29.3107L153.003 29.3322L153.002 29.3343L152.994 29.3547L152.993 29.3578L152.985 29.3793L152.984 29.3824L152.975 29.4039L152.974 29.407L152.965 29.4275L152.964 29.4295L152.956 29.45L152.955 29.4531L152.947 29.4746L152.946 29.4766L152.936 29.4971L152.935 29.5002L152.927 29.5207L152.926 29.5238L152.917 29.5443L152.916 29.5463L152.907 29.5668L152.906 29.5699L152.896 29.5904L152.895 29.5934L152.886 29.6139L152.885 29.617L152.876 29.6375L152.875 29.6395L152.866 29.66L152.865 29.6631L152.855 29.6836L152.854 29.6856L152.845 29.7061L152.844 29.7082L152.834 29.7286L152.833 29.7317L152.824 29.7522L152.823 29.7543L152.812 29.7747L152.811 29.7778L152.801 29.7983L152.8 29.8014L152.79 29.8219L152.789 29.8239L152.778 29.8434L152.777 29.8454L152.767 29.8659L152.766 29.868L152.756 29.8885L152.754 29.8915L152.744 29.912L152.741 29.9141L152.731 29.9345L152.73 29.9366L152.72 29.9561L152.719 29.9581L152.709 29.9776L152.708 29.9806L152.697 30.0001L152.695 30.0022L152.685 30.0216L152.683 30.0247L152.673 30.0442L152.672 30.0472L152.66 30.0677L152.659 30.0698L152.648 30.0892L152.646 30.0923L152.635 30.1118L152.634 30.1148L152.624 30.1343L152.621 30.1364L152.61 30.1558L152.609 30.1589L152.598 30.1784L152.597 30.1804L152.586 30.1999L152.585 30.2019L152.573 30.2214L152.571 30.2234L152.56 30.2429L152.558 30.246L152.546 30.2654L152.545 30.2685L152.533 30.288L152.531 30.29L152.52 30.3095L152.519 30.3115L152.508 30.331L152.507 30.333L152.494 30.3515L152.492 30.3545L152.48 30.373L152.479 30.375L152.468 30.3935L152.466 30.3955L152.453 30.415L152.451 30.417L152.439 30.4365L152.438 30.4385L152.426 30.457L152.423 30.459L152.411 30.4775L152.409 30.4795L152.397 30.499L152.395 30.501L152.382 30.5195L152.38 30.5225L152.368 30.541L152.367 30.543L152.355 30.5615L152.354 30.5635L152.341 30.583L152.34 30.585L152.328 30.6035L152.326 30.6055L152.314 30.624L152.313 30.627L152.299 30.6455L152.298 30.6475L152.285 30.666L152.284 30.668L152.271 30.6865L152.27 30.6885L152.256 30.7069L152.255 30.709L152.242 30.7274L152.24 30.7305L152.227 30.7489L152.224 30.751L152.211 30.7684L152.209 30.7704L152.196 30.7879L152.194 30.7899L152.179 30.8084L152.177 30.8114L152.164 30.8299L152.162 30.8319L152.149 30.8504L152.147 30.8524L152.133 30.8708L152.131 30.8729L152.118 30.8913L152.116 30.8934L152.102 30.9108L152.1 30.9128L152.086 30.9313L152.085 30.9333L152.072 30.9507L152.07 30.9528L152.055 30.9712L152.053 30.9733L152.039 30.9907L152.037 30.9927L152.022 31.0102L152.02 31.0122L152.006 31.0296L152.004 31.0317L151.99 31.0491L151.988 31.0511L151.973 31.0675L151.972 31.0696L151.958 31.087L151.956 31.0901L151.941 31.1075L151.939 31.1095L151.925 31.1269L151.923 31.129L151.909 31.1454L151.907 31.1474L151.892 31.1638L151.89 31.1659L151.876 31.1833L151.874 31.1853L151.858 31.2027L151.856 31.2048L151.841 31.2212L151.839 31.2232L151.823 31.2396L151.821 31.2417L151.806 31.2581L151.804 31.2601L151.789 31.2775L151.786 31.2796L151.771 31.297L151.77 31.299L151.755 31.3154L151.753 31.3185L151.737 31.3349L151.735 31.3369L151.72 31.3533L151.718 31.3554L151.701 31.3718L151.699 31.3738L151.684 31.3902L151.682 31.3923L151.666 31.4086L151.664 31.4107L151.648 31.4261L151.646 31.4281L151.63 31.4445L151.627 31.4465L151.611 31.4629L151.609 31.465L151.593 31.4814L151.591 31.4834L151.574 31.4988L151.572 31.5008L151.556 31.5172L151.554 31.5193L151.537 31.5346L151.535 31.5357L151.519 31.551L151.517 31.5531L151.5 31.5695L151.498 31.5715L151.482 31.5869L151.48 31.5889L151.463 31.6043L151.461 31.6064L151.445 31.6217L151.442 31.6238L151.424 31.6391L151.422 31.6412L151.406 31.6565L151.403 31.6586L151.385 31.674L151.383 31.676L151.367 31.6914L151.365 31.6924L151.348 31.7078L151.346 31.7098L151.33 31.7252L151.328 31.7272L151.311 31.7416L151.308 31.7436L151.291 31.759L151.289 31.761L151.272 31.7764L151.269 31.7784L151.252 31.7938L151.25 31.7959L151.233 31.8102L151.23 31.8123L151.213 31.8276L151.211 31.8297L151.194 31.844L151.192 31.8461L151.174 31.8604L151.171 31.8624L151.154 31.8768L151.152 31.8788L151.134 31.8932L151.132 31.8952L151.115 31.9096L151.113 31.9116L151.094 31.926L151.092 31.927L151.075 31.9413L151.073 31.9434L151.054 31.9577L151.052 31.9598L151.034 31.9731L151.032 31.9751L151.013 31.9885L151.011 31.9905L150.993 32.0048L150.99 32.0069L150.972 32.0202L150.97 32.0223L150.953 32.0356L150.95 32.0366L150.932 32.0499L150.93 32.052L150.911 32.0653L150.909 32.0673L150.89 32.0806L150.888 32.0827L150.869 32.096L150.867 32.097L150.848 32.1104L150.845 32.1124L150.826 32.1257L150.824 32.1267L150.805 32.139L150.803 32.1411L150.783 32.1544L150.781 32.1554L150.763 32.1687L150.76 32.1708L150.74 32.1841L150.737 32.1862L150.718 32.1995L150.716 32.2005L150.697 32.2128L150.695 32.2148L150.676 32.2282L150.674 32.2302L150.654 32.2435L150.652 32.2456L150.632 32.2589L150.63 32.2599L150.611 32.2732L150.609 32.2743L150.589 32.2876L150.587 32.2896L150.568 32.3019L150.566 32.304L150.546 32.3163L150.544 32.3183L150.525 32.3306L150.523 32.3316L150.503 32.3429L150.5 32.3449L150.481 32.3572L150.478 32.3583L150.458 32.3705L150.456 32.3726L150.437 32.3849L150.433 32.3859L150.414 32.3982L150.412 32.3992L150.391 32.4105L150.388 32.4115L150.368 32.4228L150.366 32.4238L150.345 32.4351L150.342 32.4361L150.322 32.4474L150.319 32.4484L150.298 32.4597L150.295 32.4607L150.274 32.472L150.272 32.474L150.253 32.4853L150.252 32.4863L138.357 39.1018L138.356 39.1028L138.336 39.1131L138.333 39.1151L138.314 39.1254L138.312 39.1264L138.292 39.1377L138.289 39.1387L138.27 39.1489L138.268 39.15L138.248 39.1612L138.246 39.1633L138.227 39.1735L138.224 39.1756L138.203 39.1858L138.2 39.1868L138.18 39.1971L138.178 39.1981L138.159 39.2084L138.156 39.2094L138.135 39.2186L138.133 39.2196L138.114 39.2288L138.112 39.2299L138.092 39.2401L138.089 39.2422L138.069 39.2514L138.067 39.2524L138.046 39.2626L138.043 39.2637L138.023 39.2729L138.021 39.2739L138.002 39.2831L137.999 39.2842L137.978 39.2934L137.976 39.2944L137.956 39.3036L137.953 39.3057L137.932 39.3149L137.929 39.3159L137.909 39.3251L137.906 39.3262L137.885 39.3354L137.882 39.3364L137.861 39.3456L137.858 39.3466L137.839 39.3548L137.836 39.3559L137.816 39.3641L137.813 39.3651L137.793 39.3743L137.791 39.3753L137.771 39.3835L137.768 39.3845L137.748 39.3927L137.746 39.3938L137.725 39.403L137.722 39.404L137.701 39.4122L137.699 39.4132L137.679 39.4214L137.676 39.4225L137.655 39.4306L137.653 39.4317L137.633 39.4399L137.63 39.4409L137.609 39.4491L137.607 39.4501L137.588 39.4583L137.585 39.4593L137.565 39.4675L137.562 39.4685L137.541 39.4757L137.538 39.4767L137.518 39.4839L137.515 39.4849L137.494 39.4931L137.492 39.4942L137.472 39.5013L137.47 39.5024L137.449 39.5095L137.447 39.5105L137.426 39.5177L137.423 39.5187L137.402 39.5259L137.4 39.5269L137.379 39.5341L137.376 39.5351L137.356 39.5423L137.353 39.5433L137.332 39.5505L137.329 39.5515L137.309 39.5587L137.306 39.5597L137.286 39.5669L137.283 39.5679L137.262 39.5741L137.259 39.5751L137.239 39.5812L137.237 39.5823L137.216 39.5894L137.195 39.5956L137.192 39.5966L137.17 39.6027L137.166 39.6038L137.125 39.6161L137.12 39.6181L137.078 39.6304L137.073 39.6325L137.031 39.6437L137.025 39.6447L136.983 39.656L136.977 39.657L136.935 39.6683L136.93 39.6693L136.888 39.6806L136.883 39.6816L136.841 39.6919L136.836 39.6929L136.794 39.7031L136.788 39.7052L136.746 39.7144L136.741 39.7154L136.699 39.7246L136.693 39.7257L136.651 39.7349L136.646 39.7359L136.604 39.7441L136.599 39.7451L136.557 39.7533L136.551 39.7544L136.508 39.7625L136.503 39.7636L136.46 39.7718L136.455 39.7728L136.413 39.78L136.408 39.781L136.365 39.7871L136.359 39.7882L136.316 39.7953L136.31 39.7964L136.267 39.8025L136.262 39.8035L136.219 39.8097L136.214 39.8107L136.171 39.8168H136.166L136.124 39.822H136.119L136.076 39.8271L136.069 39.8281L136.026 39.8322L136.02 39.8332L135.977 39.8373L135.971 39.8384L135.928 39.8414L135.923 39.8424L135.88 39.8455L135.874 39.8465L135.831 39.8496H135.826L135.783 39.8527H135.779L135.736 39.8558L135.73 39.8568L135.687 39.8588L135.682 39.8599L135.639 39.8619L135.633 39.8629L135.59 39.864H135.584L135.541 39.865H135.536L135.493 39.866H135.343L135.3 39.865H135.295L135.252 39.864H135.247L135.204 39.8629H135.198L135.155 39.8609H135.15L135.107 39.8588L135.102 39.8578L135.059 39.8558H135.054L135.011 39.8527H135.006L134.963 39.8496H134.956L134.913 39.8465H134.908L134.865 39.8424H134.859L134.816 39.8384H134.811L134.768 39.8343H134.763L134.719 39.8291H134.714L134.671 39.824L134.666 39.823L134.623 39.8179H134.618L134.575 39.8117L134.57 39.8107L134.527 39.8045L134.52 39.8035L134.477 39.7974L134.471 39.7964L134.429 39.7902L134.424 39.7892L134.382 39.782L134.377 39.781L134.334 39.7738L134.329 39.7728L134.286 39.7646L134.28 39.7636L134.237 39.7554L134.232 39.7544L134.19 39.7451L134.184 39.7441L134.142 39.7359L134.136 39.7339L134.093 39.7246L134.088 39.7236L134.046 39.7144L134.04 39.7134L133.998 39.7042L133.992 39.7031L133.95 39.6929L133.945 39.6919L133.903 39.6816L133.898 39.6796L133.856 39.6683L133.851 39.6673L133.809 39.656L133.803 39.655L133.761 39.6437L133.756 39.6417L133.714 39.6294L133.709 39.6273L133.667 39.615L133.662 39.613L133.62 39.6007L133.615 39.5986L133.574 39.5853L133.567 39.5833L133.526 39.57L133.522 39.5689L133.501 39.5618L133.498 39.5607L133.477 39.5536L133.475 39.5525L133.455 39.5454L133.452 39.5444L133.431 39.5372L133.428 39.5362L133.407 39.529L133.404 39.528L133.384 39.5208L133.381 39.5198L133.36 39.5126L133.357 39.5116L133.337 39.5034L133.335 39.5024L133.314 39.4952L133.312 39.4942L133.292 39.487L133.29 39.486L133.269 39.4788L133.267 39.4778L133.246 39.4696L133.243 39.4685L133.223 39.4614L133.22 39.4604L133.199 39.4522L133.196 39.4511L133.176 39.4429L133.173 39.4419L133.152 39.4337L133.15 39.4327L133.129 39.4245L133.126 39.4235L133.106 39.4153L133.103 39.4143L133.082 39.4061L133.079 39.405L133.059 39.3968L133.057 39.3958L133.036 39.3876L133.034 39.3866L133.014 39.3784L133.012 39.3774L132.991 39.3682L132.988 39.3671L132.968 39.3579L132.965 39.3569L132.945 39.3477L132.942 39.3466L132.922 39.3374L132.919 39.3364L132.899 39.3282L132.896 39.3272L132.876 39.318L132.873 39.3169L132.854 39.3077L132.851 39.3067L132.832 39.2975L132.83 39.2965L132.809 39.2872L132.807 39.2852L132.788 39.276L132.785 39.2749L132.764 39.2647L132.762 39.2637L132.742 39.2534L132.74 39.2514L132.72 39.2411L132.718 39.2401L132.698 39.2299L132.696 39.2288L132.676 39.2186L132.673 39.2176L132.654 39.2073L132.65 39.2063L132.631 39.1961L132.628 39.195L132.608 39.1848L132.605 39.1838L132.586 39.1735L132.583 39.1725L132.563 39.1623L132.56 39.1612L132.541 39.151L132.538 39.15L132.518 39.1387L132.516 39.1377L132.497 39.1274L132.495 39.1264L132.475 39.1151L132.473 39.1141L132.453 39.1039L132.451 39.1018L132.432 39.0905L132.43 39.0885L132.41 39.0772L132.408 39.0762L132.389 39.0649L132.386 39.0639L132.366 39.0526L132.363 39.0516L132.345 39.0414L132.344 39.0404L121.601 32.7701H121.599L121.576 32.7567L121.573 32.7547L121.549 32.7404L121.546 32.7393L121.524 32.726L121.521 32.724L121.497 32.7106L121.494 32.7096L121.47 32.6953L121.467 32.6943L121.445 32.6799L121.443 32.6789L121.42 32.6646L121.417 32.6635L121.394 32.6492L121.392 32.6471L121.37 32.6328L121.368 32.6307L121.345 32.6164L121.343 32.6144L121.321 32.6L121.319 32.599L121.296 32.5836L121.293 32.5826L121.27 32.5683L121.268 32.5672L121.246 32.5519L121.244 32.5508L121.222 32.5365L121.22 32.5345L121.198 32.5191L121.194 32.517L121.172 32.5027L121.17 32.5006L121.147 32.4863L121.144 32.4843L121.123 32.4689L121.121 32.4668L121.099 32.4525L121.097 32.4515L121.075 32.4361L121.072 32.4341L121.051 32.4187L121.049 32.4166L121.027 32.4013L121.025 32.3992L121.004 32.3839L121.002 32.3818L120.98 32.3665L120.978 32.3654L120.956 32.3501L120.954 32.349L120.934 32.3337L120.931 32.3316L120.91 32.3152L120.908 32.3132L120.888 32.2978L120.886 32.2968L120.864 32.2804L120.862 32.2784L120.842 32.262L120.84 32.2609L120.819 32.2445L120.817 32.2435L120.796 32.2271L120.794 32.2261L120.774 32.2097L120.771 32.2077L120.75 32.1913L120.748 32.1892L120.728 32.1728L120.726 32.1708L120.705 32.1544L120.703 32.1534L120.683 32.136L120.681 32.1339L120.66 32.1175L120.658 32.1155L120.637 32.0991L120.635 32.0981L120.615 32.0806L120.613 32.0786L120.593 32.0622L120.591 32.0602L120.572 32.0427L120.569 32.0407L120.548 32.0233L120.546 32.0212L120.527 32.0038L120.525 32.0018L120.505 31.9844L120.503 31.9833L120.484 31.9659L120.482 31.9649L120.462 31.9475L120.46 31.9465L120.441 31.929L120.437 31.927L120.418 31.9096L120.416 31.9075L120.396 31.8901L120.394 31.8891L120.375 31.8706L120.373 31.8686L120.354 31.8512L120.352 31.8491L120.333 31.8307L120.331 31.8286L120.311 31.8102L120.309 31.8082L120.29 31.7907L120.288 31.7887L120.269 31.7703L120.267 31.7682L120.249 31.7498L120.247 31.7477L120.228 31.7293L120.226 31.7272L120.208 31.7088L120.206 31.7078L120.187 31.6893L120.185 31.6873L120.167 31.6688L120.165 31.6668L120.146 31.6484L120.144 31.6463L120.126 31.6279L120.124 31.6258L120.106 31.6074L120.104 31.6053L120.086 31.5869L120.084 31.5859L120.066 31.5664L120.064 31.5633L120.046 31.5439L120.044 31.5418L120.025 31.5224L120.023 31.5203L120.005 31.5019L120.002 31.4998L119.985 31.4804L119.984 31.4783L119.966 31.4588L119.964 31.4568L119.946 31.4373L119.944 31.4353L119.927 31.4168L119.925 31.4148L119.907 31.3953L119.905 31.3923L119.888 31.3728L119.886 31.3707L119.868 31.3513L119.866 31.3492L119.849 31.3298L119.847 31.3277L119.83 31.3083L119.828 31.3062L119.811 31.2857L119.809 31.2837L119.791 31.2642L119.789 31.2611L119.772 31.2417L119.77 31.2396L119.753 31.2202L119.752 31.2181L119.736 31.1976L119.734 31.1956L119.717 31.1751L119.715 31.173L119.699 31.1536L119.698 31.1515L119.681 31.131L119.679 31.129L119.663 31.1095L119.661 31.1075L119.644 31.087L119.642 31.0849L119.626 31.0644L119.624 31.0624L119.608 31.0419L119.607 31.0399L119.591 31.0194L119.589 31.0173L119.574 30.9968L119.572 30.9948L119.555 30.9743L119.553 30.9723L119.538 30.9518L119.536 30.9497L119.52 30.9292L119.519 30.9272L119.503 30.9067L119.502 30.9046L119.486 30.8842L119.485 30.8821L119.47 30.8616L119.468 30.8585L119.452 30.837L119.451 30.835L119.436 30.8145L119.435 30.8114L119.419 30.7899L119.417 30.7879L119.402 30.7664L119.4 30.7643L119.384 30.7428L119.382 30.7407L119.367 30.7192L119.366 30.7162L119.352 30.6946L119.35 30.6926L119.335 30.6711L119.334 30.669L119.32 30.6475L119.318 30.6455L119.303 30.625L119.302 30.6229L119.288 30.6014L119.287 30.5984L119.273 30.5768L119.272 30.5748L119.257 30.5533L119.255 30.5502L119.241 30.5287L119.24 30.5266L119.225 30.5041L119.223 30.5021L119.209 30.4805L119.208 30.4785L119.194 30.457L119.193 30.4549L119.178 30.4334L119.176 30.4314L119.162 30.4099L119.161 30.4068L119.147 30.3853L119.146 30.3832L119.133 30.3617L119.131 30.3597L119.118 30.3371L119.116 30.3351L119.103 30.3136L119.102 30.3115L119.088 30.29L119.086 30.288L119.073 30.2665L119.072 30.2644L119.059 30.2419L119.058 30.2398L119.044 30.2183L119.042 30.2163L119.029 30.1937L119.028 30.1906L119.016 30.1681L119.015 30.1661L119.001 30.1435L118.999 30.1415L118.987 30.1189L118.986 30.1169L118.972 30.0944L118.971 30.0913L118.958 30.0687L118.957 30.0667L118.945 30.0442L118.943 30.0421L118.93 30.0196L118.929 30.0175L118.917 29.995L118.916 29.9919L118.904 29.9684L118.903 29.9663L118.89 29.9438L118.889 29.9417L118.877 29.9192L118.876 29.9161L118.865 29.8925L118.864 29.8905L118.852 29.868L118.851 29.8659L118.839 29.8434L118.838 29.8413L118.826 29.8178L118.825 29.8157L118.813 29.7922L118.812 29.7901L118.801 29.7665L118.8 29.7635L118.788 29.7399L118.787 29.7368L118.776 29.7133L118.775 29.7102L118.763 29.6866L118.762 29.6846L118.751 29.6621L118.75 29.659L118.739 29.6354L118.738 29.6334L118.726 29.6098L118.725 29.6078L118.714 29.5842L118.713 29.5811L118.703 29.5576L118.702 29.5545L118.691 29.5309L118.69 29.5279L118.679 29.5043L118.678 29.5023L118.668 29.4777L118.667 29.4756L118.657 29.4521L118.656 29.45L118.645 29.4254L118.644 29.4224L118.634 29.3988L118.633 29.3967L118.623 29.3732L118.622 29.3711L118.611 29.3476L118.61 29.3445L118.6 29.3199L118.599 29.3179L118.589 29.2943L118.588 29.2912L118.578 29.2666L118.577 29.2636L118.567 29.24V29.238L118.558 29.2134L118.557 29.2103L118.547 29.1857L118.546 29.1826L118.537 29.1581L118.536 29.155L118.526 29.1304L118.525 29.1284L118.516 29.1038V29.1017L118.507 29.0771L118.506 29.0741L118.497 29.0495L118.496 29.0464L118.486 29.0218L118.485 29.0198L118.477 28.9952L118.476 28.9921L118.468 28.9675L118.467 28.9655L118.458 28.9409L118.457 28.9378L118.448 28.9132L118.447 28.9102L118.439 28.8856L118.438 28.8835L118.43 28.8589L118.429 28.8559L118.421 28.8303L118.42 28.8282L118.411 28.8036L118.41 28.8016L118.403 28.777L118.402 28.7739L118.395 28.7493L118.394 28.7463L118.386 28.7217L118.385 28.7186L118.377 28.694L118.375 28.6909L118.368 28.6653V28.6623L118.361 28.6366L118.36 28.6336L118.353 28.609V28.6048L118.345 28.5802L118.344 28.5771L118.337 28.5515L118.335 28.5484L118.328 28.5239L118.327 28.5218L118.32 28.4972L118.319 28.4945L118.313 28.4699L118.312 28.4668L118.305 28.4412V28.4381L118.298 28.4135L118.297 28.4105L118.289 28.3848L118.288 28.3828L118.282 28.3582L118.281 28.3551L118.275 28.3295L118.274 28.3275L118.268 28.3019L118.267 28.2988L118.261 28.2732L118.26 28.2711L118.254 28.2455L118.253 28.2425L118.247 28.2169L118.246 28.2148L118.24 28.1892L118.239 28.1861L118.233 28.1605L118.232 28.1585L118.226 28.1329L118.225 28.1298L118.219 28.1042V28.1021L118.213 28.0765V28.0734L118.208 28.0478L118.207 28.0448L118.202 28.0181L118.201 28.015L118.196 27.9894V27.9874L118.191 27.9618V27.9587L118.186 27.9331L118.185 27.93L118.18 27.9044V27.9024L118.174 27.8768L118.173 27.8737L118.169 27.8481L118.168 27.846L118.164 27.8204V27.8173L118.159 27.7907V27.7876L118.155 27.761V27.7589L118.151 27.7333V27.7303L118.147 27.7036L118.146 27.7006L118.142 27.6749V27.6719L118.138 27.6463V27.6432L118.133 27.6166V27.6135L118.129 27.5868V27.5899L118.125 27.5643L118.124 27.5612L118.12 27.5346V27.5326L118.117 27.5059V27.5029L118.114 27.4762L118.113 27.4731L118.11 27.4465V27.4445L118.107 27.4178V27.4148L118.104 27.3881V27.3861L118.101 27.3594V27.3564L118.097 27.3297V27.3267L118.095 27.3V27.2969L118.092 27.2703V27.2672L118.09 27.2406V27.2375L118.088 27.2109V27.2078L118.086 27.1822L118.084 27.1556V27.1525L118.082 27.1259V27.1238L118.08 27.0972V27.0941L118.078 27.0675V27.0644L118.076 27.0378L118.075 27.0347L118.073 27.0081V27.005L118.072 26.9784V26.9681L118.071 26.9415V26.9384L118.07 26.9108V26.9077L118.069 26.881V26.878L118.068 26.8517V26.8487L118.067 26.822V26.819L118.066 26.7913V26.7882L118.065 26.7616V26.7585L118.064 26.7319V26.7288L118.063 26.7012V14.2941L118.064 14.2623V14.1916L118.065 14.1609V14.1588L118.066 14.1281V14.125L118.067 14.094V14.0909L118.068 14.0596V14.0616L118.069 14.0309V14.0278L118.07 13.9971V13.994L118.072 13.9633V13.9612L118.073 13.9305V13.9274L118.075 13.8967V13.8936L118.077 13.8629V13.8608L118.079 13.8301L118.08 13.827L118.082 13.7963V13.7932L118.084 13.7615V13.7584L118.087 13.7277V13.7256L118.089 13.6949V13.6928L118.092 13.6621V13.659L118.095 13.6283V13.6263L118.098 13.5955V13.5924L118.101 13.5617V13.5586L118.104 13.5279V13.5248L118.107 13.4941V13.491L118.11 13.4613L118.111 13.4593L118.116 13.4296V13.4265L118.119 13.3968V13.3937L118.123 13.363V13.3609L118.127 13.3302L118.128 13.3271L118.132 13.2964V13.2944L118.136 13.2636L118.137 13.2616L118.141 13.2308V13.2278L118.145 13.1981L118.146 13.196L118.15 13.1653L118.151 13.1622L118.157 13.1325L118.158 13.1294L118.162 13.0997V13.0977L118.166 13.068L118.167 13.0649L118.172 13.0352V13.0321L118.177 13.0024V12.9993L118.182 12.9696L118.183 12.9665L118.188 12.9358V12.9316L118.194 12.9011L118.195 12.898L118.2 12.8678V12.8657L118.206 12.8353L118.207 12.8322L118.213 12.8025V12.7995L118.219 12.7698V12.7667L118.225 12.737L118.226 12.7339L118.232 12.7042V12.7015L118.239 12.6718L118.24 12.6696L118.246 12.6399V12.6368L118.252 12.6071V12.605L118.259 12.5753L118.26 12.5723L118.267 12.5426V12.5395L118.275 12.5098L118.276 12.5067L118.283 12.477L118.284 12.4739L118.29 12.4442L118.291 12.4411L118.298 12.4114V12.4084L118.305 12.3787L118.306 12.3766L118.314 12.3479L118.315 12.3448L118.322 12.3151L118.323 12.3121L118.33 12.2824L118.331 12.2797L118.338 12.25L118.339 12.2469L118.347 12.2172L118.348 12.2152L118.356 12.1865L118.357 12.1842L118.365 12.1545V12.1525L118.373 12.1228L118.374 12.1203L118.382 12.0916L118.383 12.0885L118.391 12.0599L118.393 12.0568L118.401 12.0276L118.402 12.0249L118.41 11.9952L118.411 11.9932L118.42 11.9635L118.421 11.9604L118.43 11.9317V11.9286L118.44 11.9L118.441 11.8969L118.45 11.8682L118.451 11.8651L118.459 11.8364L118.46 11.8334L118.469 11.8047L118.47 11.8016L118.48 11.7729V11.7709L118.489 11.7422L118.49 11.7391L118.5 11.7104L118.501 11.7084L118.51 11.6797L118.512 11.6766L118.522 11.648L118.523 11.6459L118.533 11.6172L118.534 11.6141L118.544 11.5855L118.545 11.5824L118.555 11.5537L118.556 11.5506L118.566 11.522L118.567 11.5189L118.578 11.4902L118.579 11.4881L118.589 11.4595L118.59 11.4564L118.601 11.4287L118.602 11.4257L118.613 11.398L118.614 11.3949L118.624 11.3662L118.625 11.3632L118.635 11.3355L118.636 11.3324L118.648 11.3048L118.649 11.3017L118.66 11.274L118.661 11.271L118.672 11.2433L118.673 11.2402L118.686 11.2116L118.687 11.2095L118.698 11.1819L118.699 11.1798L118.71 11.1521L118.711 11.1491L118.723 11.1214L118.724 11.1183L118.736 11.0907L118.737 11.0876L118.749 11.06L118.75 11.0579L118.763 11.0302L118.764 11.0272L118.775 10.9995L118.776 10.9964L118.788 10.9688L118.789 10.9657L118.801 10.9381L118.803 10.936L118.816 10.9083L118.817 10.9063L118.83 10.8797L118.831 10.8776L118.844 10.851L118.845 10.8479L118.858 10.8202L118.859 10.8182L118.873 10.7916L118.874 10.7885L118.887 10.7608L118.888 10.7588L118.901 10.7311L118.902 10.7291L118.916 10.7014L118.917 10.6994L118.93 10.6717L118.931 10.6697L118.944 10.643L118.945 10.641L118.96 10.6133L118.961 10.6113L118.974 10.5846L118.975 10.5816L118.99 10.5549L118.991 10.5529L119.005 10.5262L119.006 10.5232L119.02 10.4965L119.021 10.4935L119.035 10.4668L119.036 10.4648L119.051 10.4381L119.052 10.4351L119.066 10.4084L119.067 10.4064L119.081 10.3808L119.083 10.3787L119.098 10.3521L119.1 10.349L119.114 10.3224L119.115 10.3203L119.131 10.2947L119.132 10.2927L119.147 10.2671L119.148 10.265L119.162 10.2394L119.164 10.2363L119.18 10.2097L119.181 10.2077L119.196 10.181L119.197 10.179L119.213 10.1523L119.214 10.1503L119.229 10.1247L119.231 10.1226L119.246 10.096L119.247 10.0929L119.262 10.0673L119.263 10.0653L119.279 10.0397L119.28 10.0376L119.295 10.012L119.297 10.01L119.314 9.98434L119.315 9.98127L119.331 9.95566L119.332 9.95361L119.349 9.928L119.35 9.92595L119.366 9.90034L119.367 9.89829L119.383 9.87268L119.384 9.87064L119.401 9.84503L119.403 9.84195L119.419 9.81634L119.42 9.81429L119.438 9.78868L119.44 9.78664L119.456 9.76103L119.458 9.75898L119.475 9.73337L119.477 9.73132L119.494 9.70571L119.495 9.70366L119.512 9.67907L119.514 9.676L119.531 9.65141L119.532 9.64937L119.55 9.62478L119.552 9.62273L119.569 9.59815L119.571 9.5961L119.589 9.57151L119.591 9.56946L119.608 9.54488L119.61 9.54283L119.628 9.51824L119.629 9.5162L119.646 9.49161L119.647 9.48956L119.664 9.46498L119.666 9.46293L119.684 9.43834L119.686 9.43629L119.704 9.41171L119.706 9.40966L119.724 9.38507L119.726 9.38303L119.745 9.35946L119.747 9.35742L119.765 9.33385L119.767 9.33181L119.786 9.30722L119.787 9.30517L119.805 9.28059L119.807 9.27854L119.827 9.25498L119.829 9.25293L119.847 9.22937L119.848 9.22732L119.867 9.20376L119.869 9.20171L119.888 9.17712L119.89 9.17507L119.91 9.15151L119.912 9.14946L119.93 9.1259L119.932 9.12283L119.952 9.09927L119.954 9.09722L119.973 9.07366L119.974 9.07161L119.994 9.04805L119.995 9.046L120.014 9.02244L120.016 9.01937L120.036 8.99683L120.037 8.99478L120.057 8.97224L120.059 8.96917L120.079 8.94561L120.08 8.94356L120.099 8.92103L120.101 8.91898L120.121 8.89542L120.123 8.89337L120.144 8.86981L120.145 8.86776L120.165 8.84522L120.167 8.84317L120.187 8.82063L120.189 8.81859L120.209 8.79605L120.211 8.794L120.232 8.77249L120.234 8.77044L120.254 8.7479L120.256 8.74483L120.277 8.72229L120.279 8.72024L120.299 8.69771L120.302 8.69566L120.322 8.67312L120.324 8.67107L120.345 8.64956L120.347 8.64751L120.367 8.626L120.369 8.62395L120.39 8.60244L120.392 8.60039L120.413 8.57888L120.415 8.57683L120.437 8.55532L120.439 8.55327L120.46 8.53176L120.463 8.52971L120.484 8.5082L120.486 8.50615L120.508 8.48463L120.51 8.48259L120.531 8.46107L120.533 8.45902L120.555 8.43751L120.556 8.43546L120.577 8.41395L120.579 8.4119L120.602 8.39039L120.604 8.38834L120.626 8.36785L120.628 8.36581L120.65 8.34532L120.652 8.34327L120.675 8.32278L120.677 8.32073L120.7 8.29922L120.702 8.29717L120.724 8.27566L120.726 8.27361L120.749 8.25312L120.751 8.25107L120.773 8.23059L120.775 8.22854L120.798 8.20805L120.8 8.20703L120.823 8.18654L120.825 8.18551L120.847 8.16503L120.849 8.16298L120.872 8.14351L120.874 8.14146L120.897 8.12098L120.9 8.11893L120.923 8.09844L120.925 8.09639L120.949 8.07693L120.951 8.07488L120.974 8.05439L120.976 8.05337L121 8.03288L121.002 8.03083L121.026 8.01137L121.028 8.00932L121.051 7.98985L121.053 7.98781L121.077 7.96834L121.079 7.96629L121.103 7.94683L121.105 7.94478L121.128 7.92532L121.13 7.92327L121.154 7.90381L121.156 7.90176L121.181 7.88332L121.183 7.88127L121.206 7.86283L121.208 7.86078L121.232 7.84132L121.234 7.84029L121.259 7.82083L121.261 7.81878L121.285 7.79932L121.287 7.79829L121.312 7.77985L121.314 7.77781L121.339 7.75937L121.341 7.75732L121.365 7.73888L121.367 7.73683L121.392 7.71839L121.394 7.71737L121.419 7.69893L121.421 7.69688L121.445 7.67844L121.447 7.67639L121.472 7.65795L121.475 7.65693L121.501 7.63849L121.504 7.63644L121.528 7.618L121.53 7.61595L121.556 7.59751L121.558 7.59649L121.584 7.57907L121.587 7.57805L121.611 7.56064L121.613 7.55859L121.639 7.54117L121.641 7.53912L121.667 7.52171L121.669 7.52068L121.695 7.50327L121.697 7.50224L121.722 7.48483L121.724 7.48381L121.75 7.46639L121.752 7.46537L121.778 7.44898L121.78 7.44795L121.805 7.43156L121.808 7.42951L121.834 7.4121L121.836 7.41005L121.863 7.39366L121.865 7.39263L121.891 7.37624L121.894 7.37522L121.92 7.35883L121.922 7.35678L121.949 7.34039L121.951 7.33834L121.978 7.32195L121.98 7.3199L122.006 7.30351L122.009 7.30249L122.036 7.2861L122.038 7.28507L122.064 7.26971L122.065 7.26868L131.912 1.37127L131.913 1.37024L131.935 1.35693L131.937 1.35488L131.959 1.34156L131.962 1.33951L131.983 1.3262L131.985 1.32517L132.008 1.31185L132.01 1.31083L132.032 1.29854L132.034 1.29751L132.057 1.28522L132.06 1.28317L132.083 1.27088L132.085 1.26883L132.107 1.25654L132.109 1.25551L132.131 1.24322L132.133 1.2422L132.155 1.2299L132.158 1.22888L132.18 1.21659L132.183 1.21556L132.206 1.20327L132.208 1.20224L132.23 1.18995L132.233 1.18893L132.256 1.17766L132.258 1.17561L132.281 1.16434L132.284 1.16332L132.307 1.15205L132.31 1.15L132.333 1.13873L132.335 1.13771L132.358 1.12644L132.36 1.12541L132.382 1.11415L132.384 1.1121L132.408 1.10083L132.41 1.09981L132.433 1.08854L132.437 1.08751L132.459 1.07624L132.461 1.07522L132.484 1.06395L132.486 1.06293L132.508 1.05166L132.511 1.04961L132.534 1.03937L132.537 1.03834L132.56 1.02707L132.562 1.02605L132.585 1.01581L132.588 1.01478L132.612 1.00454L132.614 1.00249L132.638 0.992244L132.64 0.99122L132.663 0.980976L132.665 0.979952L132.689 0.969708L132.691 0.968683L132.715 0.958439L132.718 0.957415L132.74 0.947171L132.743 0.946147L132.767 0.935903L132.769 0.934878L132.793 0.924634L132.795 0.92361L132.818 0.91439L132.821 0.913366L132.845 0.903122L132.848 0.902098L132.871 0.891854L132.874 0.890829L132.897 0.88161L132.9 0.880585L132.924 0.871366L132.927 0.870342L132.95 0.861122L132.953 0.860098L132.976 0.850878L132.979 0.849854L133.003 0.840634L133.006 0.83961L133.029 0.831415L133.032 0.83039L133.055 0.821171L133.058 0.820146L133.083 0.810927L133.086 0.809903L133.109 0.801708L133.113 0.800683L133.136 0.792488L133.138 0.791464L133.162 0.783269L133.165 0.782244L133.188 0.774049L133.191 0.773025L133.215 0.764829L133.218 0.763805L133.242 0.75561L133.245 0.754586L133.269 0.74639L133.273 0.745366L133.296 0.738195L133.299 0.737171L133.324 0.728976L133.326 0.727951L133.351 0.720781L133.354 0.719756L133.378 0.712586L133.38 0.711561L133.404 0.70439L133.407 0.703366L133.431 0.696195L133.434 0.695171L133.457 0.688L133.46 0.686976L133.485 0.679805L133.488 0.678781L133.513 0.67161L133.516 0.670586L133.54 0.663415L133.542 0.66239L133.567 0.65522L133.57 0.654195L133.594 0.647025L133.597 0.646L133.621 0.638829L133.623 0.637805L133.647 0.631659L133.649 0.630634L133.674 0.624488L133.676 0.623464L133.699 0.617317H133.701L133.725 0.611171L133.728 0.610147L133.753 0.604L133.756 0.602976L133.78 0.596829L133.783 0.595805L133.808 0.589659L133.811 0.588634L133.836 0.582488L133.838 0.581464L133.862 0.575317H133.865L133.89 0.570195L133.893 0.569171L133.918 0.564049L133.921 0.563025L133.945 0.557903L133.948 0.556878L133.972 0.551756L133.975 0.550732L134 0.54561H134.003L134.028 0.540488H134.031L134.055 0.535366L134.058 0.534342L134.083 0.52922H134.086L134.111 0.524098L134.114 0.523073L134.138 0.518976H134.141L134.166 0.513854H134.169L134.194 0.509756L134.196 0.508732L134.22 0.504634L134.222 0.50361L134.247 0.499512L134.25 0.498488L134.275 0.49439H134.278L134.302 0.490293L134.306 0.489268L134.33 0.485171H134.333L134.358 0.481073H134.361L134.386 0.476976L134.389 0.475951L134.413 0.472878H134.416L134.441 0.468781L134.444 0.467756L134.47 0.463659L134.473 0.462634L134.497 0.458537H134.5L134.525 0.455464H134.528L134.553 0.45239H134.556L134.58 0.449317H134.584L134.608 0.446244L134.611 0.44522L134.636 0.442147H134.639L134.664 0.440098H134.667L134.691 0.437025H134.694L134.719 0.434976H134.722L134.747 0.431903H134.75L134.775 0.428829H134.778L134.803 0.426781H134.805L134.83 0.424732H134.833L134.857 0.422683H134.86L134.886 0.420634H134.889L134.915 0.418586H134.918L134.944 0.417561H134.946L134.97 0.415512L134.973 0.414488L134.998 0.412439H135.001L135.026 0.411415H135.029L135.053 0.41039H135.056L135.081 0.408342H135.084L135.11 0.407317H135.113L135.137 0.406293H135.141L135.165 0.405268H135.168L135.194 0.404244H135.196L135.222 0.40322H135.225L135.249 0.402195H135.279L135.304 0.401171H135.307L135.331 0.400146H135.417L135.471 0.423503ZM135.448 3.18936L135.432 3.18956H135.301L135.284 3.19059H135.235L135.218 3.19161L135.202 3.19263L135.186 3.19366L135.169 3.19468L135.153 3.19571L135.136 3.19673L135.12 3.19776L135.104 3.19878L135.087 3.19981L135.071 3.20083L135.055 3.20185L135.038 3.20288L135.022 3.2039L135.006 3.20595L134.989 3.20698L134.973 3.20902L134.957 3.21107L134.94 3.21312L134.924 3.21517L134.908 3.21722L134.891 3.21927L134.875 3.22132L134.859 3.22337L134.843 3.22542L134.826 3.22849L134.81 3.23156L134.793 3.23463L134.777 3.23668L134.76 3.23873L134.744 3.24181L134.728 3.24488L134.711 3.24795L134.695 3.25102L134.678 3.2541L134.662 3.25717L134.646 3.26024L134.629 3.26332L134.613 3.26639L134.596 3.26946L134.58 3.27356L134.564 3.27766L134.547 3.28176L134.531 3.28585L134.514 3.28995L134.498 3.29405L134.481 3.29815L134.465 3.30224L134.449 3.30634L134.432 3.31044L134.416 3.31454L134.399 3.31863L134.383 3.32273L134.367 3.32785L134.35 3.33195L134.335 3.33605L134.318 3.34015L134.302 3.34527L134.286 3.35039L134.269 3.35551L134.254 3.36063L134.237 3.36576L134.221 3.37088L134.206 3.376L134.189 3.38112L134.173 3.38624L134.157 3.39137L134.141 3.39649L134.126 3.40161L134.11 3.40776L134.095 3.41288L134.079 3.418L134.063 3.42415L134.048 3.42927L134.032 3.43542L134.017 3.44156L134.001 3.44771L133.986 3.45385L133.971 3.46L133.955 3.46615L133.94 3.47229L133.924 3.47844L133.909 3.48459L133.894 3.49073L133.878 3.49688L133.863 3.50302L133.848 3.50917L133.832 3.51532L133.817 3.52249L133.801 3.52966L133.786 3.53683L133.771 3.54298L133.755 3.55015L133.74 3.55732L133.724 3.56449L133.709 3.57166L133.694 3.57883L133.678 3.58702L133.663 3.5942L133.648 3.60137L133.632 3.60956L133.617 3.61776L133.602 3.62493L133.587 3.63312L133.572 3.64132L133.556 3.64849L133.541 3.65668L133.525 3.66488L133.51 3.67307L133.495 3.68127L133.48 3.68946L133.465 3.69766L133.45 3.70585L133.434 3.71405L133.42 3.72224L133.405 3.73044L133.391 3.73863L133.376 3.74785L123.533 9.64424L123.512 9.65654L123.492 9.66781L123.473 9.6801L123.453 9.69137L123.434 9.70366L123.414 9.71595L123.396 9.72824L123.376 9.74054L123.357 9.75283L123.338 9.76512L123.32 9.77844L123.301 9.79073L123.282 9.80405L123.263 9.81737L123.245 9.82966L123.227 9.84195L123.208 9.85527L123.19 9.86756L123.171 9.88088L123.153 9.89317L123.135 9.90546L123.117 9.91878L123.098 9.9321L123.08 9.94542L123.061 9.95873L123.043 9.97205L123.024 9.98537L123.007 9.99868L122.989 10.012L122.971 10.0253L122.954 10.0386L122.936 10.053L122.919 10.0663L122.901 10.0806L122.884 10.095L122.866 10.1083L122.85 10.1216L122.833 10.136L122.815 10.1503L122.798 10.1636L122.781 10.178L122.765 10.1923L122.749 10.2066L122.732 10.221L122.715 10.2363L122.697 10.2507L122.681 10.266L122.664 10.2814L122.648 10.2958L122.632 10.3101L122.615 10.3244L122.599 10.3398L122.582 10.3552L122.566 10.3705L122.55 10.3859L122.534 10.4013L122.518 10.4166L122.501 10.432L122.486 10.4484L122.471 10.4638L122.455 10.4791L122.439 10.4945L122.423 10.5099L122.408 10.5262L122.393 10.5426L122.377 10.559L122.362 10.5754L122.346 10.5918L122.331 10.6082L122.316 10.6246L122.301 10.641L122.286 10.6574L122.272 10.6738L122.256 10.6901L122.241 10.7065L122.226 10.7229L122.212 10.7393L122.198 10.7557L122.183 10.7721L122.169 10.7885L122.156 10.8049L122.141 10.8213L122.127 10.8377L122.113 10.854L122.099 10.8715L122.085 10.8889L122.072 10.9063L122.058 10.9227L122.045 10.9401L122.031 10.9575L122.018 10.9739L122.004 10.9913L121.99 11.0087L121.977 11.0261L121.964 11.0436L121.95 11.061L121.937 11.0784L121.925 11.0958L121.911 11.1132L121.898 11.1306L121.886 11.148L121.872 11.1655L121.859 11.1829L121.847 11.2003L121.835 11.2187L121.822 11.2372L121.81 11.2556L121.798 11.274L121.785 11.2925L121.773 11.3109L121.761 11.3294L121.748 11.3468L121.736 11.3652L121.724 11.3837L121.712 11.4021L121.7 11.4205L121.689 11.439L121.678 11.4574L121.665 11.4769L121.654 11.4953L121.643 11.5138L121.631 11.5332L121.62 11.5517L121.609 11.5711L121.598 11.5896L121.586 11.608L121.575 11.6275L121.565 11.6469L121.555 11.6654L121.544 11.6848L121.533 11.7033L121.523 11.7227L121.512 11.7412L121.502 11.7596L121.491 11.7801L121.482 11.7985L121.471 11.818L121.461 11.8385L121.451 11.858L121.441 11.8774L121.431 11.8969L121.421 11.9163L121.412 11.9358L121.403 11.9553L121.393 11.9747L121.384 11.9952L121.375 12.0147L121.366 12.0341L121.357 12.0546L121.347 12.0741L121.338 12.0936L121.33 12.113L121.322 12.1325L121.312 12.153L121.303 12.1735L121.295 12.194L121.287 12.2144L121.278 12.2339L121.269 12.2544L121.261 12.2749L121.253 12.2954L121.245 12.3159L121.237 12.3363L121.228 12.3568L121.221 12.3773L121.213 12.3978L121.205 12.4183L121.198 12.4388L121.189 12.4593L121.182 12.4798L121.174 12.5013L121.167 12.5218L121.16 12.5433L121.152 12.5638L121.145 12.5842L121.139 12.6047L121.132 12.6252L121.125 12.6457L121.119 12.6662L121.112 12.6877L121.105 12.7092L121.099 12.7297L121.092 12.7502L121.086 12.7717L121.08 12.7932L121.073 12.8137L121.067 12.8352L121.061 12.8567L121.055 12.8772L121.05 12.8987L121.044 12.9202L121.039 12.9418L121.032 12.9633L121.026 12.9848L121.021 13.0053L121.015 13.0268L121.01 13.0483L121.005 13.0698L121 13.0913L120.994 13.1128L120.989 13.1343L120.984 13.1559L120.979 13.1774L120.975 13.1989L120.971 13.2204L120.967 13.2419L120.962 13.2644L120.957 13.287L120.953 13.3085L120.949 13.33L120.945 13.3515L120.941 13.3741L120.937 13.3956L120.934 13.4171L120.931 13.4396L120.927 13.4621L120.924 13.4837L120.92 13.5052L120.916 13.5267L120.913 13.5482L120.91 13.5707L120.907 13.5933L120.904 13.6148L120.901 13.6373L120.899 13.6588L120.897 13.6803L120.895 13.7029L120.892 13.7244L120.889 13.7459L120.886 13.7684L120.884 13.791L120.882 13.8125L120.88 13.834L120.877 13.8565L120.875 13.8791L120.873 13.9006L120.871 13.9231L120.869 13.9457L120.867 13.9682L120.865 13.9907L120.864 14.0133L120.863 14.0358L120.862 14.0573L120.86 14.0799L120.859 14.1024L120.858 14.1249L120.857 14.1475L120.856 14.17L120.855 14.1925L120.854 14.2151V14.2376L120.853 14.2601V26.6655L120.854 26.684V26.7024L120.855 26.7198L120.856 26.7372L120.857 26.7557V26.7905L120.858 26.8089V26.8274L120.859 26.8448L120.86 26.8632L120.861 26.8806L120.862 26.898L120.864 26.9165L120.865 26.9349L120.867 26.9523L120.868 26.9698L120.87 26.9872L120.871 27.0046L120.873 27.022L120.875 27.0394L120.877 27.0568L120.88 27.0742L120.882 27.0917L120.884 27.1091L120.886 27.1265L120.888 27.1449L120.89 27.1623L120.893 27.1798L120.896 27.1972L120.898 27.2146L120.901 27.232L120.904 27.2504L120.907 27.2689L120.91 27.2863L120.912 27.3037L120.915 27.3211L120.919 27.3385L120.922 27.356L120.925 27.3734L120.928 27.3918L120.931 27.4082L120.934 27.4256L120.938 27.443L120.942 27.4604L120.946 27.4779L120.95 27.4953L120.954 27.5127L120.957 27.5301L120.962 27.5465L120.966 27.5639L120.97 27.5813L120.974 27.5977L120.978 27.6151L120.982 27.6325L120.986 27.65L120.991 27.6663L120.995 27.6827L121 27.7001L121.005 27.7176L121.01 27.734L121.015 27.7514L121.019 27.7678L121.024 27.7841L121.029 27.8016L121.034 27.819L121.04 27.8354L121.045 27.8518L121.05 27.8692L121.055 27.8866L121.06 27.904L121.065 27.9204L121.07 27.9368L121.075 27.9532L121.081 27.9706L121.086 27.988L121.091 28.0044L121.097 28.0208L121.103 28.0372L121.109 28.0536L121.115 28.07L121.122 28.0863L121.128 28.1027L121.134 28.1201L121.14 28.1376L121.146 28.154L121.152 28.1703L121.16 28.1867L121.166 28.2031L121.173 28.2195L121.179 28.2359L121.185 28.2523L121.192 28.2687L121.2 28.2851L121.207 28.3015L121.213 28.3179L121.22 28.3332L121.227 28.3486L121.234 28.365L121.243 28.3803L121.25 28.3957L121.257 28.4111L121.264 28.4275L121.271 28.4428L121.28 28.4582L121.288 28.4746L121.295 28.49L121.302 28.5063L121.309 28.5217L121.318 28.5371L121.326 28.5535L121.334 28.5688L121.342 28.5842L121.35 28.5996L121.359 28.6149L121.367 28.6313L121.375 28.6467L121.383 28.662L121.391 28.6774L121.4 28.6928L121.408 28.7081L121.417 28.7235L121.426 28.7389L121.434 28.7532L121.444 28.7686L121.453 28.784L121.462 28.7993L121.471 28.8137L121.48 28.829L121.489 28.8444L121.498 28.8598L121.507 28.8741L121.517 28.8895L121.526 28.9038L121.535 28.9192L121.544 28.9335L121.555 28.9479L121.564 28.9622L121.574 28.9765L121.584 28.9909L121.593 29.0052L121.603 29.0196L121.613 29.0339L121.623 29.0493L121.633 29.0636L121.644 29.078L121.654 29.0923L121.664 29.1066L121.675 29.121L121.685 29.1353L121.695 29.1497L121.705 29.164L121.716 29.1783L121.726 29.1927L121.736 29.206L121.747 29.2203L121.758 29.2347L121.768 29.249L121.779 29.2623L121.789 29.2767L121.8 29.291L121.811 29.3043L121.822 29.3177L121.834 29.331L121.844 29.3443L121.855 29.3576L121.866 29.3709L121.878 29.3842L121.889 29.3976L121.9 29.4119L121.911 29.4252L121.923 29.4385L121.934 29.4519L121.946 29.4652L121.958 29.4785L121.969 29.4918L121.981 29.5051L121.994 29.5184L122.006 29.5318L122.018 29.5451L122.029 29.5584L122.042 29.5707L122.054 29.584L122.066 29.5973L122.079 29.6096L122.091 29.6229L122.103 29.6352L122.116 29.6475L122.128 29.6598L122.141 29.6721L122.154 29.6844L122.166 29.6967L122.179 29.709L122.192 29.7213L122.204 29.7336L122.217 29.7459L122.23 29.7581L122.244 29.7704L122.257 29.7827L122.271 29.794L122.284 29.8063L122.297 29.8186L122.309 29.8299L122.323 29.8421L122.336 29.8534L122.349 29.8647L122.363 29.876L122.376 29.8872L122.389 29.8985L122.404 29.9098L122.417 29.9221L122.431 29.9333L122.444 29.9446L122.457 29.9559L122.472 29.9671L122.486 29.9784L122.5 29.9897L122.515 30.0009L122.529 30.0122L122.543 30.0235L122.557 30.0347L122.571 30.045L122.585 30.0552L122.6 30.0655L122.614 30.0757L122.628 30.087L122.644 30.0982L122.658 30.1085L122.673 30.1198L122.687 30.13L122.701 30.1402L122.717 30.1505L122.731 30.1618L122.746 30.172L122.762 30.1822L122.777 30.1925L122.793 30.2017L122.808 30.212L122.823 30.2222L122.838 30.2324L122.853 30.2417L122.868 30.2509L122.883 30.2601L122.898 30.2703L122.914 30.2796L122.929 30.2888L122.945 30.298L122.961 30.3072L122.976 30.3164L122.992 30.3257L123.007 30.3359L123.024 30.3461L133.764 36.6144L133.777 36.6216L133.789 36.6287L133.8 36.6359L133.813 36.6421L133.825 36.6492L133.837 36.6564L133.85 36.6625L133.861 36.6687L133.872 36.6748L133.884 36.681L133.897 36.6871L133.909 36.6933L133.92 36.6994L133.933 36.7056L133.945 36.7117L133.957 36.7179L133.97 36.724L133.982 36.7301L133.994 36.7353L134.007 36.7404L134.019 36.7455L134.031 36.7506L134.043 36.7568L134.056 36.7619L134.068 36.767L134.08 36.7732L134.093 36.7793L134.105 36.7844L134.117 36.7906L134.13 36.7957L134.142 36.8008L134.154 36.806L134.167 36.8111L134.179 36.8162L134.191 36.8213L134.203 36.8264L134.216 36.8316L134.228 36.8367L134.24 36.8418L134.253 36.8469L134.265 36.851L134.277 36.8551L134.29 36.8602L134.302 36.8654L134.314 36.8705L134.327 36.8756L134.339 36.8807L134.351 36.8848L134.364 36.8889L134.376 36.893L134.389 36.8971L134.4 36.9002L134.427 36.9094L134.453 36.9176L134.478 36.9248L134.503 36.933L134.529 36.9401L134.554 36.9473L134.58 36.9545L134.606 36.9606L134.631 36.9668L134.657 36.9729L134.683 36.9791L134.709 36.9842L134.735 36.9893L134.762 36.9944L134.788 36.9996L134.814 37.0047L134.84 37.0088L134.867 37.0139L134.894 37.019L134.92 37.0231L134.947 37.0272L134.973 37.0313L134.998 37.0354L135.025 37.0385L135.052 37.0416L135.078 37.0446L135.105 37.0477L135.132 37.0498L135.157 37.0518L135.184 37.0539L135.21 37.0559L135.236 37.0569L135.263 37.058L135.29 37.059L135.315 37.06L135.342 37.061L135.369 37.062H135.394L135.421 37.0631H135.527L135.553 37.062L135.579 37.061L135.606 37.059L135.631 37.0569L135.658 37.0559L135.684 37.0539L135.71 37.0518L135.737 37.0498L135.763 37.0467L135.788 37.0436L135.815 37.0405L135.842 37.0375L135.867 37.0344L135.894 37.0303L135.921 37.0262L135.947 37.0221L135.973 37.018L136 37.0139L136.026 37.0088L136.052 37.0037L136.078 36.9985L136.104 36.9934L136.13 36.9873L136.156 36.9811L136.181 36.975L136.207 36.9688L136.232 36.9627L136.258 36.9555L136.284 36.9494L136.309 36.9422L136.335 36.935L136.36 36.9268L136.387 36.9186L136.399 36.9156L136.412 36.9115L136.424 36.9074L136.437 36.9033L136.449 36.8992L136.461 36.8951L136.474 36.891L136.486 36.8869L136.499 36.8828L136.511 36.8787L136.525 36.8736L136.538 36.8695L136.55 36.8654L136.563 36.8613L136.576 36.8572L136.588 36.8521L136.601 36.848L136.613 36.8428L136.625 36.8377L136.638 36.8326L136.65 36.8275L136.662 36.8223L136.675 36.8172L136.687 36.8121L136.699 36.807L136.712 36.8019L136.724 36.7967L136.736 36.7916L136.748 36.7865L136.761 36.7814L136.773 36.7762L136.785 36.7711L136.798 36.766L136.81 36.7599L136.822 36.7537L136.835 36.7486L136.847 36.7424L136.859 36.7363L136.872 36.7301L136.884 36.724L136.896 36.7179L136.908 36.7117L136.92 36.7056L136.932 36.6994L136.944 36.6933L136.957 36.6871L136.969 36.681L136.981 36.6748L136.994 36.6687L137.006 36.6615L137.017 36.6554L137.031 36.6482L148.93 30.047L148.943 30.0388L148.955 30.0317L148.968 30.0245L148.98 30.0173L148.993 30.0101L149.006 30.003L149.018 29.9958L149.031 29.9886L149.044 29.9804L149.056 29.9733L149.068 29.9651L149.079 29.9579L149.092 29.9507L149.104 29.9436L149.116 29.9364L149.129 29.9292L149.14 29.9221L149.151 29.9149L149.163 29.9077L149.174 29.8995L149.185 29.8913L149.196 29.8831L149.208 29.8749L149.219 29.8667L149.23 29.8585L149.242 29.8503L149.253 29.8421L149.264 29.834L149.275 29.8258L149.287 29.8176L149.298 29.8094L149.309 29.8012L149.32 29.793L149.332 29.7838L149.343 29.7756L149.354 29.7674L149.366 29.7581L149.376 29.75L149.387 29.7407L149.398 29.7325L149.41 29.7233L149.421 29.7141L149.432 29.7059L149.443 29.6967L149.453 29.6875L149.463 29.6782L149.473 29.669L149.485 29.6598L149.495 29.6506L149.505 29.6414L149.516 29.6321L149.527 29.6229L149.537 29.6127L149.547 29.6024L149.557 29.5932L149.568 29.584L149.578 29.5748L149.588 29.5656L149.598 29.5563L149.609 29.5471L149.619 29.5379L149.629 29.5287L149.64 29.5184L149.65 29.5092L149.66 29.5L149.67 29.4898L149.68 29.4805L149.689 29.4703L149.699 29.4601L149.709 29.4498L149.72 29.4396L149.73 29.4303L149.739 29.4201L149.749 29.4099L149.758 29.3996L149.768 29.3894L149.777 29.3791L149.786 29.3689L149.795 29.3586L149.806 29.3484L149.815 29.3381L149.824 29.3279L149.833 29.3177L149.843 29.3064L149.852 29.2961L149.86 29.2859L149.869 29.2746L149.879 29.2634L149.888 29.2531L149.897 29.2429L149.905 29.2316L149.913 29.2214L149.923 29.2101L149.931 29.1988L149.939 29.1886L149.947 29.1773L149.956 29.166L149.965 29.1548L149.974 29.1435L149.983 29.1333L149.991 29.122L150 29.1118L150.008 29.1005L150.016 29.0882L150.024 29.078L150.032 29.0667L150.041 29.0554L150.048 29.0441L150.056 29.0329L150.064 29.0216L150.072 29.0103L150.08 28.9991L150.087 28.9878L150.095 28.9765L150.103 28.9653L150.111 28.953L150.119 28.9417L150.126 28.9294L150.133 28.9181L150.14 28.9069L150.147 28.8946L150.154 28.8833L150.162 28.871L150.169 28.8587L150.176 28.8475L150.183 28.8362L150.19 28.8249L150.198 28.8137L150.205 28.8014L150.212 28.7891L150.219 28.7768L150.226 28.7645L150.233 28.7522L150.241 28.7399L150.247 28.7276L150.254 28.7153L150.261 28.703L150.268 28.6907L150.276 28.6784L150.282 28.6661L150.288 28.6539L150.294 28.6416L150.3 28.6293L150.307 28.617L150.313 28.6037L150.321 28.5903L150.327 28.577L150.333 28.5647L150.339 28.5524L150.345 28.5401L150.35 28.5279L150.357 28.5156L150.362 28.5033L150.367 28.491L150.373 28.4787L150.378 28.4664L150.384 28.4541L150.39 28.4408L150.397 28.4275L150.402 28.4152L150.408 28.4019L150.413 28.3885L150.418 28.3752L150.423 28.3629L150.428 28.3496L150.433 28.3363L150.439 28.324L150.444 28.3107L150.449 28.2974L150.454 28.284L150.459 28.2718L150.464 28.2584L150.469 28.2451L150.473 28.2318L150.479 28.2185L150.483 28.2052L150.487 28.1919L150.491 28.1785L150.496 28.1652L150.5 28.1519L150.504 28.1386L150.508 28.1253L150.512 28.112L150.517 28.0986L150.521 28.0853L150.525 28.072L150.529 28.0587L150.533 28.0454L150.537 28.031L150.54 28.0177L150.544 28.0044L150.548 27.9911L150.551 27.9778L150.556 27.9644L150.56 27.9501L150.564 27.9358L150.567 27.9224L150.57 27.9091L150.573 27.8948L150.576 27.8815L150.579 27.8681L150.582 27.8538L150.585 27.8405L150.588 27.8261L150.591 27.8128L150.595 27.7995L150.598 27.7862L150.6 27.7719L150.603 27.7575L150.605 27.7442L150.608 27.7301L150.611 27.7167L150.614 27.7024L150.617 27.6891L150.62 27.6758L150.622 27.6624L150.625 27.6481L150.627 27.6338L150.629 27.6204L150.631 27.6061L150.633 27.5918L150.636 27.5774L150.638 27.5631L150.64 27.5487L150.642 27.5344L150.644 27.5201L150.645 27.5057L150.647 27.4914L150.649 27.477L150.651 27.4627L150.652 27.4484L150.653 27.434L150.654 27.4197L150.656 27.4053L150.657 27.391L150.658 27.3777L150.659 27.3633L150.66 27.349L150.661 27.3346L150.662 27.3193L150.663 27.3049L150.664 27.2916L150.665 27.2773V27.2568L150.666 27.2424L150.667 27.2281L150.668 27.2138L150.669 27.1994L150.67 27.1851V27.1544L150.671 27.14V13.0443L150.67 13.031V12.9787L150.669 12.9658V12.952L150.668 12.9387L150.667 12.9254L150.666 12.9121L150.665 12.8987L150.664 12.8854L150.663 12.8721L150.662 12.8588L150.661 12.8455L150.66 12.8321L150.659 12.8188L150.658 12.8055L150.657 12.7922L150.656 12.7789L150.655 12.7656L150.653 12.7522L150.651 12.7389L150.65 12.7256L150.648 12.7123L150.646 12.699L150.644 12.6857L150.642 12.6723L150.64 12.66L150.639 12.6478L150.637 12.6344L150.635 12.6211L150.632 12.6088L150.63 12.5965L150.628 12.5832L150.626 12.5699L150.624 12.5566L150.622 12.5433L150.62 12.53L150.618 12.5187L150.613 12.4921L150.608 12.4675L150.603 12.4419L150.597 12.4162L150.59 12.3906L150.584 12.365L150.578 12.3404L150.572 12.3148L150.566 12.2902L150.56 12.2657L150.553 12.2411L150.546 12.2155L150.539 12.1909L150.532 12.1663L150.525 12.1417L150.518 12.1171L150.509 12.0936L150.501 12.069L150.493 12.0444L150.484 12.0208L150.474 11.9973L150.465 11.9737L150.456 11.9501L150.447 11.9266L150.437 11.902L150.426 11.8784L150.416 11.8549L150.406 11.8313L150.396 11.8088L150.385 11.7852L150.374 11.7617L150.364 11.7381L150.352 11.7145L150.341 11.691L150.33 11.6684L150.318 11.6449L150.305 11.6223L150.293 11.5998L150.281 11.5773L150.268 11.5547L150.256 11.5322L150.243 11.5097L150.229 11.4881L150.216 11.4666L150.203 11.4451L150.189 11.4226L150.175 11.4011L150.162 11.3796L150.147 11.358L150.134 11.3365L150.12 11.315L150.105 11.2945L150.09 11.273L150.075 11.2525L150.06 11.232L150.045 11.2116L150.029 11.1911L150.014 11.1706L149.999 11.1501L149.982 11.1306L149.966 11.1101L149.949 11.0897L149.934 11.0702L149.918 11.0507L149.901 11.0302L149.885 11.0108L149.868 10.9913L149.851 10.9719L149.833 10.9524L149.816 10.934L149.799 10.9155L149.78 10.8971L149.762 10.8786L149.743 10.8602L149.725 10.8428L149.706 10.8254L149.687 10.8069L149.668 10.7895L149.65 10.7721L149.63 10.7547L149.611 10.7373L149.591 10.7209L149.572 10.7045L149.55 10.6871L149.541 10.6789L149.531 10.6707L149.521 10.6625L149.51 10.6543L149.5 10.6461L149.49 10.6379L149.479 10.6297L149.469 10.6215L149.459 10.6133L149.449 10.6061L149.438 10.598L149.428 10.5908L149.419 10.5826L149.409 10.5744L149.398 10.5662L149.388 10.558L149.378 10.5508L149.367 10.5426L149.355 10.5344L149.345 10.5273L149.335 10.5201L149.325 10.5119L149.313 10.5047L149.303 10.4976L149.293 10.4894L149.283 10.4822L149.272 10.475L149.261 10.4679L149.251 10.4607L149.24 10.4535L149.229 10.4463L149.218 10.4402L149.207 10.433L149.195 10.4259L149.184 10.4187L149.174 10.4125L149.163 10.4054L149.151 10.3982L149.14 10.391L149.129 10.3849L149.117 10.3777L149.105 10.3705L149.094 10.3644L149.081 10.3562L137.455 3.71722L137.44 3.70801L137.425 3.69981L137.41 3.69162L137.396 3.68342L137.381 3.67625L137.366 3.66805L137.351 3.66017L137.335 3.65197L137.32 3.64408L137.304 3.63589L137.289 3.62821L137.274 3.62103L137.258 3.61386L137.243 3.60669L137.228 3.59952L137.212 3.59235L137.197 3.58518L137.181 3.57801L137.166 3.57084L137.151 3.56367L137.135 3.55752L137.12 3.55035L137.104 3.54318L137.089 3.53601L137.074 3.52986L137.058 3.52372L137.043 3.51655L137.027 3.5104L137.012 3.50425L136.997 3.49811L136.981 3.49196L136.966 3.48582L136.951 3.47967L136.935 3.47352L136.919 3.46738L136.903 3.46123L136.888 3.45611L136.873 3.45099L136.856 3.44484L136.84 3.43869L136.823 3.43357L136.808 3.42742L136.792 3.4223L136.776 3.41718L136.761 3.41206L136.745 3.40694L136.729 3.40182L136.714 3.39669L136.697 3.39157L136.682 3.38645L136.665 3.38133L136.65 3.37723L136.635 3.37211L136.619 3.36801L136.603 3.36391L136.586 3.35982L136.57 3.35469L136.554 3.3506L136.538 3.3465L136.523 3.3424L136.506 3.33728L136.49 3.33318L136.474 3.32908L136.457 3.32499L136.442 3.32089L136.425 3.31679L136.41 3.31269L136.394 3.3086L136.377 3.30552L136.361 3.30142L136.345 3.29733L136.329 3.29425L136.312 3.29016L136.297 3.28708L136.282 3.28401L136.265 3.28094L136.249 3.27786L136.232 3.27479L136.216 3.27172L136.2 3.26864L136.183 3.26557L136.167 3.2625L136.15 3.25942L136.134 3.25635L136.118 3.25328L136.101 3.25123L136.085 3.24918L136.068 3.24611L136.052 3.24406L136.036 3.24201L136.019 3.23996L136.003 3.23791L135.986 3.23586L135.97 3.23382L135.953 3.23177L135.937 3.22972L135.921 3.22767L135.905 3.22562L135.889 3.2246L135.872 3.22255L135.856 3.2205L135.84 3.21845L135.823 3.2164L135.807 3.21538L135.79 3.21435L135.774 3.2123L135.758 3.21128L135.741 3.21025L135.725 3.20923L135.708 3.20821L135.692 3.20718L135.675 3.20616L135.659 3.20513L135.643 3.20411H135.61L135.593 3.20308H135.511L135.495 3.20206H135.446L135.448 3.18936Z" fill="#FCD804"/> +<path d="M106.674 19.9002C106.674 24.734 105.757 26.1423 103.923 28.1552C102.09 30.1681 99.6591 30.9791 96.6299 30.9791C93.8613 30.9791 91.6292 29.9983 89.6946 28.2921C87.5527 26.4025 85.9935 23.4737 85.9935 20.2051C85.9935 16.9916 87.1958 14.2139 89.3263 12.1456C91.1953 10.3358 93.9773 9.15674 96.8464 9.15674C100.309 9.15674 103.906 10.7937 106.123 14.0257L102.868 16.7731C101.488 14.209 99.4888 13.3455 96.6289 13.2635C93.4664 13.1734 89.9849 16.1861 90.2434 20.2038C90.387 22.4513 91.4384 26.3142 96.4966 27.0231C99.1544 27.395 102.175 24.5625 102.175 23.0239H97.1829V19.1824H106.672V19.8976L106.674 19.9002Z" fill="white"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M135.786 9.15674C141.816 9.15674 146.712 14.0459 146.712 20.0679C146.712 26.09 141.816 30.9791 135.786 30.9791C129.756 30.9791 124.859 26.09 124.859 20.0679C124.859 14.0459 129.756 9.15674 135.786 9.15674ZM135.786 13.2105C139.576 13.2105 142.652 16.2832 142.652 20.0679C142.652 23.8526 139.576 26.9252 135.785 26.9252C131.995 26.9252 128.919 23.8526 128.919 20.0679C128.919 16.2832 131.995 13.2105 135.784 13.2105H135.786Z" fill="white"/> +</svg> diff --git a/docs/public/assets/logos/jekyll.svg b/docs/public/assets/logos/jekyll.svg new file mode 100644 index 00000000..1c6b4ada --- /dev/null +++ b/docs/public/assets/logos/jekyll.svg @@ -0,0 +1,31 @@ +<svg width="123" height="50" viewBox="0 0 123 50" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path opacity="0.1" d="M110.169 1.03825C110.145 1.13366 110.145 1.22907 110.169 1.32448C110.169 1.32448 110.48 3.35316 110.121 4.2599L95.3747 42.5161C94.3214 45.3322 95.7337 48.4584 98.5586 49.5326C101.383 50.6062 104.52 49.2222 105.645 46.43L120.391 8.17381C120.679 7.43397 122.33 5.97821 122.33 5.97821C122.402 5.90648 122.474 5.83498 122.522 5.76349V5.73957C122.522 5.71566 122.546 5.71566 122.546 5.69175C122.929 4.71351 120.463 2.85197 117.064 1.53945C113.664 0.226682 110.576 -0.0358705 110.193 0.966517C110.193 0.966517 110.169 0.990429 110.169 1.03825Z" fill="black"/> +<path d="M109.738 0.704046C109.714 0.799693 109.714 0.895102 109.738 0.99051C109.738 0.99051 110.05 3.01896 109.69 3.92594L94.9439 42.1821C93.8909 44.9982 95.3032 48.1245 98.1281 49.1984C100.953 50.2722 104.089 48.8882 105.214 46.096L119.961 7.83984C120.248 7.1 121.9 5.64425 121.9 5.64425C121.972 5.57251 122.044 5.50101 122.092 5.42952V5.40561C122.092 5.38169 122.116 5.38169 122.116 5.35778C122.499 4.37931 120.033 2.518 116.633 1.20524C113.234 -0.107286 110.145 -0.369838 109.762 0.632549C109.762 0.656461 109.762 0.680373 109.738 0.704285V0.704046Z" fill="url(#paint0_linear)"/> +<path d="M114.383 18.0066L103.73 45.595C102.94 47.5758 100.665 48.6019 98.6305 47.8145C96.5955 47.0268 95.5183 44.7119 96.2607 42.731L103.059 25.0946C103.059 25.0946 103.897 23.7342 105.573 22.756C107.249 21.7773 108.613 21.992 110.457 21.1807C112.324 20.3693 114.383 18.0066 114.383 18.0066Z" fill="url(#paint1_linear)"/> +<path d="M119.549 4.55991C119.761 4.00779 118.233 2.90617 116.137 2.09938C114.041 1.29259 112.17 1.08599 111.958 1.63788C111.745 2.19 113.273 3.29139 115.369 4.09841C117.465 4.9052 119.337 5.1118 119.549 4.55991Z" fill="#333333"/> +<path opacity="0.3" d="M109.639 0.987549C109.639 0.987549 109.948 3.0105 109.591 3.91485L94.9412 42.0632C93.895 44.8712 95.2981 47.9888 98.1045 49.0598C98.5802 49.2502 99.0796 49.369 99.5789 49.3929C98.6402 48.6784 97.9558 47.6827 97.6262 46.552C97.2966 45.4213 97.3392 44.2151 97.7476 43.1103L112.113 5.72354C112.113 5.72354 110.139 3.89093 109.639 0.987549Z" fill="white"/> +<g opacity="0.5"> +<path opacity="0.5" d="M104.93 26.0233C105.167 26.0233 105.358 25.8315 105.358 25.595C105.358 25.3585 105.167 25.1667 104.93 25.1667C104.694 25.1667 104.502 25.3585 104.502 25.595C104.502 25.8315 104.694 26.0233 104.93 26.0233Z" fill="white"/> +<path opacity="0.5" d="M107.713 29.3075C108.068 29.3075 108.355 29.0198 108.355 28.665C108.355 28.3101 108.068 28.0225 107.713 28.0225C107.358 28.0225 107.071 28.3101 107.071 28.665C107.071 29.0198 107.358 29.3075 107.713 29.3075Z" fill="white"/> +<path opacity="0.5" d="M103.456 33.5435C104.126 33.5435 104.669 33.0001 104.669 32.3297C104.669 31.6594 104.126 31.116 103.456 31.116C102.786 31.116 102.243 31.6594 102.243 32.3297C102.243 33.0001 102.786 33.5435 103.456 33.5435Z" fill="white"/> +<path opacity="0.5" d="M101.506 35.2094C101.86 35.2094 102.148 34.9217 102.148 34.5668C102.148 34.212 101.86 33.9243 101.506 33.9243C101.151 33.9243 100.863 34.212 100.863 34.5668C100.863 34.9217 101.151 35.2094 101.506 35.2094Z" fill="white"/> +<path opacity="0.5" d="M104.05 39.7547C104.287 39.7547 104.478 39.563 104.478 39.3264C104.478 39.0899 104.287 38.8982 104.05 38.8982C103.814 38.8982 103.622 39.0899 103.622 39.3264C103.622 39.563 103.814 39.7547 104.05 39.7547Z" fill="white"/> +</g> +<path opacity="0.1" d="M28.895 23.239C29.5412 23.7627 30.7144 23.4533 31.5042 22.5965C32.3423 21.6922 32.462 20.5262 31.8156 20.0025C31.1691 19.4789 29.9962 19.7883 29.2061 20.6926C28.3683 21.597 28.2246 22.7395 28.895 23.2393V23.239ZM26.956 24.9286C26.7881 24.9286 26.477 25.2381 26.7403 25.3571C27.0994 25.476 27.2671 25.7854 27.2671 26.2139C26.956 27.9987 24.7293 30.0216 23.8677 30.7117C23.6521 30.9257 23.9634 31.4018 24.1788 31.2354C24.6576 30.8545 25.6631 30.0692 26.477 29.0221C25.1364 31.9968 22.5032 35.8521 21.4977 37.2086C17.5716 42.6108 11.6106 47.5844 7.51707 47.5844C4.2372 47.5844 1.46055 45.3712 0.861859 42.1349C0.813886 41.7777 0.335122 41.7064 0.430827 42.1823C1.17296 46.6325 4.62026 48.3697 8.7857 48.3697C13.3582 48.3697 18.7208 45.0857 21.6891 41.7064C26.477 36.2567 29.5652 29.9738 28.7513 26.4279C28.4162 25.1192 27.4825 24.9047 26.956 24.9286ZM56.3774 36.804C57.6463 36.4946 58.6756 35.8045 58.6756 34.7098C58.6756 34.5907 58.4602 34.5907 58.4602 34.7098C58.4602 35.3523 57.718 35.8997 56.8802 36.0187C54.9172 36.3279 51.0388 34.0434 49.2195 31.6873C51.1825 32.425 55.1805 31.3542 57.0716 29.9977C58.8192 28.7364 59.5134 27.3562 59.6333 26.2376C59.8487 24.3813 57.8137 23.2868 54.9649 24.3813C53.1455 25.1192 50.9671 26.7137 48.693 29.7122C51.0868 25.7854 55.803 19.36 60.4232 15.2668C66.0489 10.2931 69.3048 11.2448 64.2536 16.5281C62.1708 18.6936 58.2448 21.5018 55.5394 22.7156C54.7018 23.0726 55.1086 23.5484 55.7073 23.2866C58.5799 22.0255 62.4102 19.4313 64.7323 17.2656C71.5789 10.7214 65.8573 5.79504 58.2925 12.7204C53.1455 17.4323 49.7942 22.3586 46.8734 28.7603C45.8681 29.9738 45.126 30.9733 44.2162 31.7349C44.0963 31.8301 44.0248 31.9253 43.9528 32.0207C41.4391 34.1625 37.4893 37.0658 35.0235 37.0895C33.2759 37.1373 32.5337 35.8282 32.8451 34.1388C33.3238 31.497 36.0767 28.3794 38.4228 27.3086C41.4631 25.9282 43.2584 28.6175 39.2606 30.7591C37.7286 31.5446 35.9093 31.9728 35.1672 31.9728C34.3053 31.9728 34.3771 32.3299 35.1192 32.3538C36.3401 32.4013 38.3031 31.8779 39.596 31.2827C43.6895 29.3315 43.9528 25.6902 39.5 25.5714C34.6644 25.4047 28.871 29.498 28.919 34.6622C28.967 36.9943 30.8341 38.2557 33.3955 38.2557C37.6807 38.2079 41.487 34.9714 44.6232 32.1158C45.078 31.7349 45.5088 31.3303 45.9398 30.9021C44.8386 33.6627 44.2879 36.2328 44.5513 38.1366C44.7189 39.5171 45.5088 40.1596 46.1313 40.6832C46.2512 40.7782 46.5143 40.6832 46.3469 40.4212C45.4371 39.3504 45.7005 36.1376 46.9454 33.0202C47.9986 35.1144 52.0923 37.7559 56.3774 36.804ZM51.2305 27.7844C56.234 23.3344 58.1968 27.3086 55.0129 29.7359C53.3609 30.9972 50.0813 31.9492 49.0521 31.3303L48.8364 31.2115C48.7167 30.9972 48.5731 30.783 48.4773 30.569C49.3152 29.5455 50.273 28.6412 51.2305 27.7844ZM79.048 22.7156C81.059 22.9296 80.2209 20.5023 78.1862 21.1211C77.2766 21.3827 76.3908 23.1202 75.7444 24.6195C73.7336 27.5941 70.382 31.6637 68.0359 33.8055C65.9532 35.5902 64.0382 36.0663 66.384 32.7344C67.3418 31.4018 68.5627 29.9738 69.2568 28.546C70.9088 24.9525 67.3895 23.3581 64.5407 25.5236C62.889 26.7849 60.6626 29.3789 58.9149 30.8069C58.4362 31.1876 58.5559 31.7586 59.0349 31.3779C60.4232 30.2596 62.865 27.6893 64.9717 26.19C66.7193 24.8574 67.4135 25.7141 66.408 26.8325C65.0197 28.427 62.5776 31.2115 61.9554 32.9724C61.0936 35.6142 62.1229 36.7801 63.8705 36.7801C66.2643 36.7801 69.8313 33.0678 72.2254 30.1168C73.0152 29.1173 73.8771 27.9511 74.6192 26.8325C72.5365 30.8545 70.358 34.9238 67.6529 38.6127C63.8225 43.8006 59.0346 47.7035 54.4861 47.7035C51.2065 47.7035 48.3816 45.4902 47.7832 42.2538C47.7352 41.8968 47.3044 41.8253 47.3522 42.3014C48.0943 46.7514 51.5416 48.4888 55.707 48.4888C60.2795 48.4888 64.6843 45.8473 67.7726 42.6108C73.997 36.0661 74.7389 28.7127 76.6542 24.5955C77.5637 22.7156 78.3778 22.6443 79.048 22.7156ZM104.376 16.4325C105.286 14.8856 105.238 13.6721 103.107 13.6721C101.503 13.7197 98.5826 14.838 97.218 15.8852C96.9069 16.1946 97.0506 16.361 97.4337 16.1946C97.6968 16.0994 98.0081 15.9327 98.2955 15.8139C99.8275 14.9808 99.205 16.7182 98.87 17.3608C97.0506 20.526 93.8187 24.976 92.119 27.1893C91.3122 28.2717 90.4408 29.3048 89.5096 30.283C87.8816 31.8301 84.65 34.5668 82.1842 35.4709C74.2601 38.4219 84.3626 24.9999 85.2005 23.9052C87.0678 21.5731 91.257 17.5035 92.5258 15.4569C93.4356 13.9098 93.3879 12.6963 91.257 12.6963C89.6533 12.7441 86.7327 13.8624 85.3681 14.9095C85.0568 15.219 85.2005 15.3854 85.5835 15.219C85.8469 15.1238 86.158 14.9571 86.4453 14.838C87.9776 14.0052 87.3551 15.7424 87.0198 16.3851C85.2005 19.5501 81.9688 24.0004 80.2689 26.2137C78.8806 28.0699 77.1809 29.926 75.8641 30.9731C75.3376 31.4016 75.6487 31.8062 76.1754 31.4492C76.6542 31.1398 77.3483 30.4497 78.1384 29.6405C76.7019 32.4963 75.529 36.5183 79.3114 36.9941C82.5433 37.4224 86.3736 34.1622 88.8632 31.7347L89.749 30.8542L89.9644 30.64C88.5281 33.4958 87.3551 37.5178 91.1373 37.9936C95.279 38.5649 100.426 33.0199 102.413 30.9731C102.796 30.5924 102.676 29.926 102.03 30.5924C100.857 31.8062 96.8829 35.3997 94.0104 36.4704C86.0863 39.4214 96.1888 25.9994 97.0266 24.9047C98.9179 22.525 103.107 18.4554 104.376 16.4327V16.4325Z" fill="black"/> +<path d="M28.4639 22.8345C29.1104 23.3582 30.2833 23.0487 31.0734 22.192C31.9112 21.2876 32.0309 20.1217 31.3845 19.598C30.7383 19.0743 29.5651 19.3838 28.7753 20.2881C27.9374 21.1925 27.8175 22.3111 28.4639 22.8347V22.8345ZM26.5489 24.5243C26.3812 24.5243 26.0701 24.8335 26.3335 24.9526C26.6926 25.0717 26.86 25.3809 26.86 25.8094C26.5489 27.5941 24.3222 29.6171 23.4607 30.3072C23.2453 30.5214 23.5566 30.9973 23.7718 30.8309C24.2508 30.4499 25.256 29.6647 26.0701 28.6176C24.7293 31.5922 22.0961 35.4475 21.0906 36.8041C17.1645 42.2062 11.2035 47.1799 7.10998 47.1799C3.83034 47.1799 1.05346 44.9666 0.454764 41.7304C0.406792 41.3731 -0.071733 41.3019 0.0239719 41.7777C0.766105 46.228 4.2134 47.9652 8.37885 47.9652C12.9513 47.9652 18.3137 44.6811 21.2822 41.3019C26.0699 35.8521 29.1583 29.5695 28.3442 26.0236C27.9852 24.6908 27.0754 24.4765 26.5489 24.5243ZM55.9464 36.3995C57.2152 36.09 58.2447 35.4 58.2447 34.3053C58.2447 34.1862 58.0291 34.1862 58.0291 34.3053C58.0291 34.9478 57.2872 35.4951 56.4491 35.6142C54.4861 35.9234 50.608 33.6391 48.7886 31.2828C50.7517 32.0207 54.7495 30.9497 56.6408 29.5932C58.3884 28.3318 59.0826 26.9516 59.2022 25.833C59.4176 23.9768 57.3829 22.8823 54.5341 23.9768C52.7147 24.7147 50.536 26.3091 48.2619 29.3077C50.6557 25.3809 55.3719 18.9555 59.9924 14.8623C65.6181 9.88857 68.8737 10.8403 63.8225 16.1236C61.7397 18.2891 57.8139 21.0973 55.1085 22.311C54.2707 22.6681 54.6777 23.1439 55.2762 22.8821C58.149 21.621 61.9791 19.027 64.3012 16.861C71.1481 10.3168 65.4264 5.3905 57.8617 12.3159C52.7147 17.004 49.3633 21.954 46.4425 28.3557C45.437 29.5695 44.6949 30.569 43.7851 31.3304C43.6654 31.4256 43.5937 31.521 43.522 31.6161C41.0082 33.7579 37.0582 36.6613 34.5924 36.685C32.845 36.7328 32.1026 35.4236 32.414 33.7342C32.8927 31.0925 35.6459 27.9748 37.992 26.9041C41.0322 25.5239 42.8276 28.213 38.8298 30.3545C37.2976 31.14 35.4782 31.5685 34.7361 31.5685C33.8743 31.5685 33.9462 31.9253 34.6881 31.9492C35.909 31.9968 37.8723 31.4734 39.1649 30.8782C43.2586 28.927 43.522 25.2857 39.069 25.1668C34.2333 25.0002 28.4399 29.0934 28.4879 34.2577C28.5359 36.5898 30.403 37.8512 32.9647 37.8512C37.2498 37.8033 41.0562 34.5671 44.1922 31.7113C44.6469 31.3304 45.078 30.9258 45.509 30.4975C44.4076 33.2582 43.8571 35.8282 44.1202 37.7321C44.2881 39.1125 45.078 39.755 45.7004 40.2787C45.8201 40.3736 46.0835 40.2787 45.9158 40.0169C45.0063 38.9459 45.2694 35.733 46.5143 32.6157C47.5915 34.7099 51.6852 37.3514 55.9464 36.3995ZM50.7994 27.356C55.8029 22.906 57.766 26.8801 54.582 29.3077C52.9301 30.569 49.6505 31.521 48.621 30.9021L48.4056 30.783C48.2856 30.569 48.1422 30.3548 48.0465 30.1405C48.8843 29.141 49.8419 28.213 50.7994 27.3562V27.356ZM78.6172 22.3113C80.6279 22.5255 79.7901 20.098 77.7553 20.7168C76.8455 20.9784 75.9597 22.7159 75.3135 24.2152C73.3025 27.1898 69.951 31.2594 67.6051 33.4012C65.5221 35.1859 63.6071 35.662 65.9532 32.3301C66.9107 30.9975 68.1316 29.5697 68.826 28.1417C70.4777 24.5482 66.9587 22.9538 64.1098 25.1193C62.4579 26.3806 60.2317 28.9746 58.4841 30.4026C58.0053 30.7833 58.125 31.3543 58.6038 30.9736C59.9924 29.8553 62.4342 27.285 64.5406 25.7857C66.2883 24.4531 66.9824 25.3098 65.9771 26.4282C64.5886 28.0229 62.1468 30.8072 61.5244 32.5683C60.6625 35.2099 61.692 36.3758 63.4394 36.3758C65.8332 36.3758 69.4005 32.6635 71.7943 29.7125C72.5844 28.713 73.4462 27.5468 74.1881 26.4282C72.1056 30.4502 69.9272 34.5198 67.222 38.2084C63.3914 43.3963 58.6038 47.2992 54.0553 47.2992C50.7757 47.2992 47.9508 45.0859 47.3521 41.8495C47.3041 41.4925 46.8733 41.421 46.9213 41.8971C47.6634 46.3471 51.1107 48.0845 55.2762 48.0845C59.8487 48.0845 64.2535 45.443 67.3417 42.2065C73.5659 35.6618 74.308 28.3084 76.2231 24.1912C77.1329 22.3113 77.9707 22.2161 78.6169 22.3113H78.6172ZM103.945 16.0045C104.855 14.4577 104.807 13.2439 102.676 13.2439C101.072 13.2917 98.1518 14.4101 96.7872 15.4572C96.4758 15.7666 96.6195 15.933 97.0026 15.7666C97.266 15.6714 97.5771 15.5048 97.8644 15.3857C99.3966 14.5528 98.7742 16.29 98.4389 16.9328C96.6195 20.0978 93.3879 24.548 91.688 26.7613C90.8812 27.8437 90.0099 28.8768 89.0787 29.855C87.4508 31.4019 84.2191 34.1386 81.7534 35.0429C73.8293 37.9939 83.9318 24.5719 84.7696 23.477C86.6369 21.1449 90.8261 17.0755 92.095 15.0289C93.0048 13.4818 92.9568 12.2683 90.8261 12.2683C89.2222 12.3159 86.3016 13.4342 84.937 14.4813C84.6259 14.7908 84.7696 14.9574 85.1527 14.7908C85.4158 14.6956 85.7271 14.5292 86.0145 14.4101C87.5465 13.5772 86.9241 15.3144 86.589 15.9569C84.7696 19.1222 81.5377 23.5724 79.8381 25.7854C78.4495 27.6417 76.7498 29.498 75.4332 30.5451C74.9065 30.9734 75.2178 31.378 75.7443 31.021C76.2231 30.7118 76.9173 30.0214 77.7074 29.2125C76.2711 32.0683 75.0979 36.0901 78.8803 36.5661C82.1122 36.9944 85.9425 33.734 88.4323 31.3067L89.3181 30.426L89.5335 30.212C88.0972 33.0678 86.9241 37.0896 90.7065 37.5657C94.8481 38.1367 99.9951 32.592 101.982 30.5451C102.365 30.1644 102.245 29.498 101.599 30.1644C100.426 31.378 96.4521 34.9715 93.5793 36.0425C85.6554 38.9934 95.7577 25.5714 96.5955 24.4765C98.5108 22.0968 102.676 18.0275 103.945 16.0045H103.945Z" fill="url(#paint2_linear)"/> +<defs> +<linearGradient id="paint0_linear" x1="101.199" y1="22.8321" x2="113.934" y2="24.343" gradientUnits="userSpaceOnUse"> +<stop stop-color="#919191"/> +<stop offset="1" stop-color="white"/> +</linearGradient> +<linearGradient id="paint1_linear" x1="100.877" y1="30.7522" x2="108.601" y2="31.8554" gradientUnits="userSpaceOnUse"> +<stop stop-color="#990000"/> +<stop offset="1" stop-color="#E80000"/> +</linearGradient> +<linearGradient id="paint2_linear" x1="52.2586" y1="48.0149" x2="52.2586" y2="8.9425" gradientUnits="userSpaceOnUse"> +<stop stop-color="#1A1A1A"/> +<stop offset="0.4026" stop-color="#4A4A4C"/> +<stop offset="1" stop-color="#333333"/> +</linearGradient> +</defs> +</svg> diff --git a/docs/public/assets/logos/nextjs.svg b/docs/public/assets/logos/nextjs.svg new file mode 100644 index 00000000..085d54ea --- /dev/null +++ b/docs/public/assets/logos/nextjs.svg @@ -0,0 +1,5 @@ +<svg width="105" height="65" viewBox="0 0 105 65" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path d="M24.8258 16.8422H44.5875V18.4328H26.6373V30.4035H43.5171V31.9941H26.6373V45.1368H44.7934V46.7273H24.8258V16.8422ZM46.3579 16.8422H48.4576L57.7621 29.985L67.2724 16.8422L80.2081 0.147949L58.956 31.3662L69.9073 46.7273H67.7253L57.7621 32.7475L47.7577 46.7273H45.6168L56.6505 31.3662L46.3579 16.8422ZM70.6896 18.4328V16.8422H93.2098V18.4328H82.8348V46.7273H81.0233V18.4328H70.6896Z" fill="black"/> +<path d="M0.102936 16.8423H2.36731L33.5917 64.1564L20.6881 46.7274L1.99677 19.1025L1.91443 46.7274H0.102936V16.8423Z" fill="black"/> +<path d="M93.0273 44.6568C93.4018 44.6568 93.675 44.3664 93.675 43.9912C93.675 43.6159 93.4018 43.3255 93.0273 43.3255C92.6572 43.3255 92.3796 43.6159 92.3796 43.9912C92.3796 44.3664 92.6572 44.6568 93.0273 44.6568ZM94.8073 42.9056C94.8073 44.0135 95.596 44.7372 96.7459 44.7372C97.9708 44.7372 98.711 43.9912 98.711 42.6956V38.1344H97.724V42.6911C97.724 43.4104 97.3672 43.7946 96.7371 43.7946C96.1731 43.7946 95.7898 43.4372 95.7766 42.9056H94.8073ZM100.002 42.8475C100.072 44.0001 101.02 44.7372 102.43 44.7372C103.936 44.7372 104.879 43.9644 104.879 42.7314C104.879 41.7619 104.342 41.2258 103.038 40.9176L102.337 40.7434C101.509 40.5468 101.174 40.2832 101.174 39.8231C101.174 39.2423 101.694 38.8626 102.474 38.8626C103.214 38.8626 103.725 39.2334 103.817 39.8275H104.778C104.721 38.742 103.778 37.978 102.487 37.978C101.099 37.978 100.174 38.742 100.174 39.8901C100.174 40.8372 100.698 41.4001 101.848 41.6726L102.668 41.8736C103.509 42.0746 103.879 42.3695 103.879 42.8609C103.879 43.4327 103.298 43.8482 102.505 43.8482C101.654 43.8482 101.064 43.4595 100.98 42.8475H100.002Z" fill="black"/> +</svg> diff --git a/docs/public/assets/logos/nuxtjs.svg b/docs/public/assets/logos/nuxtjs.svg new file mode 100644 index 00000000..5e1c399c --- /dev/null +++ b/docs/public/assets/logos/nuxtjs.svg @@ -0,0 +1,8 @@ +<svg width="159" height="28" viewBox="0 0 159 28" fill="none" xmlns="http://www.w3.org/2000/svg"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M21.2734 1.04697C21.5851 1.37166 21.7525 1.80834 21.7375 2.25801V25.5407C21.7505 26.0392 21.5638 26.5222 21.2188 26.8826C20.8739 27.2441 20.3916 27.4424 19.892 27.4282C19.6119 27.4286 19.3336 27.3844 19.0675 27.2972C18.8238 27.2222 18.605 27.0827 18.4341 26.8935L3.33704 7.25495V25.7425C3.3508 26.1936 3.17747 26.6304 2.85803 26.9496C2.5386 27.2687 2.10142 27.4419 1.64987 27.4282C1.2027 27.4453 0.769538 27.2706 0.459579 26.9481C0.15121 26.6239 -0.0140199 26.1895 0.000933389 25.7425V2.41076C-0.0103954 1.91368 0.18771 1.4347 0.546941 1.09061C0.883141 0.745969 1.34859 0.557979 1.83006 0.572369C2.13309 0.570907 2.43351 0.628344 2.71459 0.741479C2.97035 0.840376 3.19477 1.00619 3.36434 1.22153L18.3959 20.9038V2.25801C18.3822 1.80688 18.5555 1.37009 18.8749 1.05094C19.1944 0.731794 19.6315 0.558619 20.0831 0.572369C20.5291 0.55591 20.9613 0.728247 21.2734 1.04697Z" fill="#2E495E"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M52.3636 1.11213C52.6901 1.47481 52.8624 1.95027 52.8441 2.43774V17.1667C52.8753 19.0704 52.4126 20.9499 51.5009 22.6219C50.6374 24.1993 49.3544 25.5076 47.7935 26.4023C46.1761 27.3294 44.34 27.8078 42.4754 27.7879C40.594 27.8176 38.7384 27.3489 37.0972 26.4296C35.5292 25.5386 34.24 24.2298 33.3734 22.6491C32.4617 20.9771 31.999 19.0977 32.0303 17.194V2.46501C32.016 1.9658 32.2145 1.484 32.5763 1.13941C32.9446 0.77943 33.4425 0.582804 33.9577 0.593892C34.4433 0.594217 34.9082 0.791009 35.2462 1.13941C35.6041 1.47767 35.8023 1.95113 35.7923 2.44319V17.1721C35.7725 18.4296 36.0912 19.6693 36.715 20.7616C37.8914 22.8336 40.0911 24.1147 42.4754 24.1166C43.6724 24.1251 44.8508 23.8204 45.8934 23.2328C46.9452 22.6521 47.8205 21.7983 48.4269 20.7616C49.0607 19.6727 49.3854 18.4317 49.366 17.1721V2.44319C49.3483 1.95967 49.5118 1.48694 49.8246 1.11759C50.1472 0.756842 50.6129 0.557132 51.0968 0.572071C51.5773 0.561041 52.0391 0.757928 52.3636 1.11213Z" fill="#2E495E"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M82.0553 24.4848C82.2856 24.8014 82.4064 25.1844 82.3993 25.5758C82.4195 26.0697 82.2195 26.5472 81.8533 26.8796C81.5154 27.1987 81.0679 27.3763 80.6029 27.376C80.0052 27.3986 79.4387 27.1094 79.1069 26.6123L71.643 16.6566L64.3483 26.5959C64.0197 27.1012 63.4554 27.4037 62.8522 27.3978C62.4112 27.4076 61.986 27.2337 61.6783 26.9178C61.3731 26.6368 61.199 26.2414 61.1978 25.8267C61.2063 25.3648 61.3697 24.9191 61.662 24.5611L69.5354 13.8526L61.6237 3.22598C61.3767 2.91548 61.2403 2.53157 61.2361 2.13495C61.226 1.64288 61.4242 1.16942 61.7821 0.831161C62.1201 0.482762 62.585 0.285969 63.0706 0.285645C63.3569 0.287103 63.639 0.354296 63.8951 0.48203C64.1658 0.61023 64.3975 0.807887 64.5667 1.05482L71.9433 10.9559L79.2488 1.15302C79.5713 0.654278 80.1133 0.339933 80.7067 0.307465C81.1697 0.309949 81.6101 0.508137 81.9188 0.852982C82.2543 1.15244 82.4517 1.57657 82.4648 2.02584C82.4519 2.41998 82.3185 2.80072 82.0826 3.11688L74.0672 13.7763L82.0553 24.4848Z" fill="#2E495E"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M109.66 1.04724C110.021 1.37632 110.22 1.84651 110.206 2.33466C110.219 2.81626 110.019 3.27926 109.66 3.60026C109.29 3.9128 108.817 4.07622 108.333 4.05849H101.497V25.59C101.506 26.082 101.308 26.5552 100.951 26.8938C100.151 27.6066 98.9439 27.6066 98.1444 26.8938C97.7888 26.554 97.591 26.0816 97.5984 25.59V4.05849H90.7787C90.2935 4.07691 89.8199 3.90681 89.4574 3.58389C89.1063 3.24989 88.9171 2.78037 88.9387 2.29648C88.9232 1.82482 89.1123 1.36946 89.4574 1.04724C89.8199 0.724323 90.2935 0.554225 90.7787 0.572643H108.333C108.82 0.555074 109.295 0.724971 109.66 1.04724Z" fill="#2E495E"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M118.021 26.7528C116.778 26.0493 115.744 25.0291 115.024 23.7961C114.81 23.4912 114.689 23.1314 114.674 22.7596C114.674 22.2784 114.886 21.8215 115.253 21.5104C115.566 21.1836 115.992 20.9884 116.444 20.9649C117.129 21.0289 117.757 21.3771 118.174 21.925C119.028 23.328 120.561 24.1748 122.204 24.1507C123.538 24.1818 124.827 23.6698 125.775 22.7323C126.732 21.8259 127.263 20.5586 127.238 19.241V2.42276C127.232 1.92592 127.441 1.45071 127.811 1.11897C128.169 0.766905 128.652 0.57077 129.155 0.573458C129.662 0.548718 130.157 0.736544 130.52 1.0917C130.867 1.44194 131.054 1.91931 131.038 2.41185V19.2683C131.053 20.7792 130.654 22.2654 129.886 23.567C129.125 24.8641 128.032 25.9354 126.719 26.671C125.343 27.4495 123.785 27.8486 122.204 27.8275C120.739 27.843 119.297 27.4723 118.021 26.7528Z" fill="#00C48D"/> +<path fill-rule="evenodd" clip-rule="evenodd" d="M144.468 26.8573C142.946 26.2802 141.55 25.4152 140.357 24.3098C139.864 23.9324 139.569 23.3529 139.554 22.7332C139.56 22.2619 139.757 21.8131 140.1 21.4895C140.427 21.1379 140.887 20.9399 141.367 20.9439C141.771 20.9384 142.162 21.0888 142.459 21.364C143.381 22.2437 144.454 22.9513 145.626 23.4533C146.804 23.9216 148.065 24.1516 149.333 24.1298C150.778 24.1754 152.203 23.7858 153.423 23.0115C154.438 22.4416 155.074 21.3762 155.093 20.213C155.112 18.9633 154.479 17.7938 153.423 17.1253C151.889 16.2255 150.206 15.6084 148.454 15.3033C145.811 14.7578 143.786 13.8795 142.36 12.6521C140.935 11.4247 140.231 9.72267 140.231 7.55152C140.201 6.12564 140.621 4.72653 141.432 3.55288C142.257 2.38785 143.392 1.47696 144.708 0.92349C146.214 0.288888 147.836 -0.0251001 149.469 0.00156685C151.001 -0.0081566 152.522 0.252229 153.963 0.770745C155.234 1.19901 156.399 1.89263 157.381 2.80552C157.906 3.19189 158.23 3.79204 158.266 4.44207C158.266 4.90438 158.079 5.34705 157.747 5.66948C157.429 6.02434 156.973 6.22349 156.497 6.215C156.175 6.22736 155.86 6.1161 155.617 5.90406C154.821 5.15754 153.878 4.58365 152.849 4.21841C151.783 3.78905 150.646 3.5633 149.497 3.55288C148.057 3.47892 146.63 3.84833 145.407 4.61118C144.458 5.2397 143.887 6.30182 143.887 7.43968C143.887 8.57755 144.458 9.63967 145.407 10.2682C146.806 11.083 148.333 11.6548 149.923 11.9593C151.611 12.2913 153.259 12.8053 154.837 13.4922C156.027 14.0182 157.046 14.8691 157.774 15.947C158.512 17.1861 158.871 18.6142 158.806 20.0548C158.828 21.4708 158.391 22.856 157.561 24.0043C156.688 25.1884 155.514 26.1171 154.16 26.6937C152.671 27.3444 151.061 27.6717 149.437 27.6538C147.746 27.6852 146.064 27.4155 144.468 26.8573Z" fill="#00C48D"/> +</svg> diff --git a/docs/public/assets/site-preview.png b/docs/public/assets/site-preview.png new file mode 100644 index 00000000..1ad6c146 Binary files /dev/null and b/docs/public/assets/site-preview.png differ diff --git a/docs/public/browserconfig.xml b/docs/public/browserconfig.xml new file mode 100644 index 00000000..b3930d0f --- /dev/null +++ b/docs/public/browserconfig.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<browserconfig> + <msapplication> + <tile> + <square150x150logo src="/mstile-150x150.png"/> + <TileColor>#da532c</TileColor> + </tile> + </msapplication> +</browserconfig> diff --git a/docs/public/favicon-16x16.png b/docs/public/favicon-16x16.png new file mode 100644 index 00000000..71e32041 Binary files /dev/null and b/docs/public/favicon-16x16.png differ diff --git a/docs/public/favicon-32x32.png b/docs/public/favicon-32x32.png new file mode 100644 index 00000000..3f89a43e Binary files /dev/null and b/docs/public/favicon-32x32.png differ diff --git a/docs/public/favicon.ico b/docs/public/favicon.ico new file mode 100644 index 00000000..ac80aa5c Binary files /dev/null and b/docs/public/favicon.ico differ diff --git a/docs/public/mstile-150x150.png b/docs/public/mstile-150x150.png new file mode 100644 index 00000000..f040c40c Binary files /dev/null and b/docs/public/mstile-150x150.png differ diff --git a/docs/public/showcases/eliostruyf.png b/docs/public/showcases/eliostruyf.png new file mode 100644 index 00000000..49ce4ddf Binary files /dev/null and b/docs/public/showcases/eliostruyf.png differ diff --git a/docs/public/showcases/pimpyourowndevice.png b/docs/public/showcases/pimpyourowndevice.png new file mode 100644 index 00000000..32666034 Binary files /dev/null and b/docs/public/showcases/pimpyourowndevice.png differ diff --git a/docs/public/showcases/squarl.png b/docs/public/showcases/squarl.png new file mode 100644 index 00000000..7e846c9b Binary files /dev/null and b/docs/public/showcases/squarl.png differ diff --git a/docs/public/site.webmanifest b/docs/public/site.webmanifest new file mode 100644 index 00000000..b20abb7c --- /dev/null +++ b/docs/public/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/docs/scripts/copy-changelog.js b/docs/scripts/copy-changelog.js new file mode 100644 index 00000000..427afbf5 --- /dev/null +++ b/docs/scripts/copy-changelog.js @@ -0,0 +1,7 @@ +const fs = require('fs'); +const path = require('path'); + +(() => { + const changelogPath = path.resolve(__dirname, '../../CHANGELOG.md'); + fs.copyFileSync(changelogPath, path.resolve(__dirname, '../content/changelog/CHANGELOG.md')); +})(); \ No newline at end of file diff --git a/docs/showcases.json b/docs/showcases.json new file mode 100644 index 00000000..f705c5d4 --- /dev/null +++ b/docs/showcases.json @@ -0,0 +1,23 @@ +[ + { + "title": "Elio Struyf", + "link": "https://www.eliostruyf.com", + "description": "Personal website/blog from Elio Struyf created with Hugo and Tailwind. Managed by Front Matter.", + "image": "eliostruyf.png", + "generator": "Hugo" + }, + { + "title": "PimpYourOwnDevice", + "link": "https://pimpyourowndevice.com", + "description": "Pimp Your Own Device is created with Hugo and Bootstrap. Managed by Front Matter.", + "image": "pimpyourowndevice.png", + "generator": "Hugo" + }, + { + "title": "Squarl", + "link": "https://squarl.com", + "description": "Squarl is created with Next.js and Tailwind. Managed by Front Matter.", + "image": "squarl.png", + "generator": "Next.js" + } +] \ No newline at end of file diff --git a/docs/styles/globals.css b/docs/styles/globals.css index bd6213e1..fad82bdb 100644 --- a/docs/styles/globals.css +++ b/docs/styles/globals.css @@ -1,3 +1,29 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; + +html, body {height: 100%;} + +.changelog { + @apply py-8 space-y-4; + + h1 { + @apply hidden; + } + + h2 { + @apply text-3xl text-whisper-900; + } + + ul { + @apply list-disc pl-4 pb-8; + } + + a, a:visited { + @apply text-teal-500; + } + + a:hover { + @apply text-teal-800; + } +} \ No newline at end of file diff --git a/src/constants/Links.ts b/src/constants/Links.ts index 23123acc..45975296 100644 --- a/src/constants/Links.ts +++ b/src/constants/Links.ts @@ -1,4 +1,4 @@ -export const GITHUB_LINK = "https://github.com/sponsors/estruyf"; +export const GITHUB_LINK = "https://github.com/estruyf/vscode-front-matter"; export const ISSUE_LINK = "https://github.com/estruyf/vscode-front-matter/issues"; -export const SPONSOR_LINK = "https://github.com/estruyf/vscode-front-matter"; +export const SPONSOR_LINK = "https://github.com/sponsors/estruyf"; export const REVIEW_LINK = "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter&ssr=false#review-details"; \ No newline at end of file