1
0
Fork 0

Srogie odchudzanie

This commit is contained in:
Michał Rudowicz 2025-02-17 18:39:22 +01:00
parent a323305ac5
commit 74d8865132
65 changed files with 26 additions and 1537 deletions

View File

@ -1,43 +1,19 @@
baseurl: '/' baseurl: '/'
permalink: pretty permalink: pretty
title: 'Jekyll Serif'
title: 'Hackerspace Wrocław'
logo: logo:
mobile: "images/logo/logo-mobile.svg" mobile: "images/logo-hs.png"
mobile_height: "32px" mobile_height: "86px"
mobile_width: "32px" mobile_width: "175px"
desktop: "images/logo/logo.svg" desktop: "images/logo-hs.png"
desktop_height: "32px" desktop_height: "86px"
desktop_width: "120px" desktop_width: "175px"
home:
limit_services: 6
collections:
services:
output: true
sort_by: weight
team:
output: true
defaults:
- scope:
path: ""
type: "services"
values:
layout: "service"
- scope:
path: ""
type: "team"
values:
layout: "team"
sass: sass:
style: compressed # possible values: nested expanded compact compressed style: compressed # possible values: nested expanded compact compressed
plugins:
- jekyll-environment-variables
exclude: exclude:
- Gemfile - Gemfile
- Gemfile.lock - Gemfile.lock

View File

@ -1,3 +0,0 @@
email: 'jekyllserif@example.com'
phone: '1800 123 000'
contact_button_link: 'contact'

View File

@ -1,29 +0,0 @@
[
{
"title": "Free Consultation",
"description": "New clients receive an obligation free consultation.",
"image": {
"url": "images/features/noun_branding_1885335.svg",
"width": 80,
"height": 80
}
},
{
"title": "Certified Accountants",
"description": "All members of our team are certified accountants.",
"image": {
"url": "images/features/noun_The Process_1885341.svg",
"width": 80,
"height": 80
}
},
{
"title": "Tax Compliance",
"description": "We stay up to date on the latest changes to the tax code.",
"image": {
"url": "images/features/noun_3d modeling_1885342.svg",
"width": 80,
"height": 80
}
}
]

View File

@ -1,21 +1,9 @@
main: main:
- name: "Services" - name: "Home"
url: "/services/" url: "/"
weight: 2 weight: 1
- name: "Team"
url: "/team/"
weight: 3
- name: "About"
url: "/about/"
weight: 4
- name: "Contact"
url: "/contact/"
weight: 5
footer: footer:
- name: "Home" - name: "Home"
url: "/" url: "/"
weight: 1 weight: 1
- name: "Contact"
url: "/contact/"
weight: 2

View File

@ -1,4 +0,0 @@
google_analytics_id: ""
meta_twitter_site: "@zerostaticio"
meta_twitter_creator: "@zerostaticio"
copyright_text: 'Free Jekyll theme by <a class="zerostatic" href="https://www.zerostatic.io">www.zerostatic.io</a>'

View File

@ -1,33 +0,0 @@
[
{
"name": "Github",
"link": "https://github.com/zerostaticthemes/jekyll-serif-theme",
"image": "images/social/github.svg"
},
{
"name": "Twitter",
"link": "https://twitter.com/zerostaticio",
"image": "images/social/twitter.svg"
},
{
"name": "Facebook",
"link": "https://facebook.com",
"image": "images/social/facebook.svg"
},
{
"name": "Email",
"link": "mailto:ekyllserif@example.com ",
"image": "images/social/email.svg"
},
{
"name": "Instagram",
"link": "https://instagram.com",
"image": "images/social/instagram.svg"
},
{
"name": "Discord",
"link": "https://discord.com",
"image": "images/social/discord.svg"
}
]

View File

@ -1,26 +0,0 @@
{% if jekyll.environment == "production" %}
{% assign gid = site.env.NETLIFY_GOOGLE_ANALYTICS_ID %}
{% if gid %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ gid }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ $gid }}');
</script>
{% elsif site.data.seo.google_analytics_id %}
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.data.seo.google_analytics_id }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', '{{ site.data.seo.google_analytics_id }}');
</script>
{% endif %}
{% endif %}

View File

@ -5,11 +5,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title> <title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="{{ '/images/favicon-32x32.svg' | relative_url }}"> <!--<link rel="icon" type="image/png" href="{{ '/images/favicon-32x32.svg' | relative_url }}">-->
<!-- Google Fonts CDN -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<!-- Self host font --> <!-- Self host font -->
<!-- <link rel="preload" href="{{ '/assets/fonts/playfair-display.woff2' | relative_url }}" as="font" type="font/woff2" crossorigin> --> <!-- <link rel="preload" href="{{ '/assets/fonts/playfair-display.woff2' | relative_url }}" as="font" type="font/woff2" crossorigin> -->
<link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet"> <link href="{{ '/assets/css/style.css' | relative_url }}" rel="stylesheet">
@ -34,7 +30,5 @@
</div> </div>
{% include footer.html %} {% include footer.html %}
{% include sub-footer.html %} {% include sub-footer.html %}
<script type="text/javascript" src="{{ '/assets/js/scripts.js' | relative_url }}"></script>
{% include google-analytics.html %}
</body> </body>
</html> </html>

View File

@ -6,46 +6,21 @@ bodyClass: "page-home"
<div class="intro"> <div class="intro">
<div class="container"> <div class="container">
<div class="row justify-content-start"> <div class="row justify-content-start">
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1"> <!--<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">-->
{{ content }} {{ content }}
{% if page.show_call_box %} {% if page.show_call_box %}
{% include call.html show_button=true %} {% include call.html show_button=true %}
{% endif %} {% endif %}
</div> <!--</div>-->
{% if page.intro_image %} {% if page.intro_image %}
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative"> <!--<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
<img alt="{{ page.title }}" class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" /> <img alt="{{ page.title }}" class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relURL }}" />
</div> </div>-->
{% endif %} {% endif %}
</div> </div>
</div> </div>
</div> </div>
<div class="strip">
<div class="container pt-6 pb-6 pb-md-10">
<div class="row justify-content-start">
{% assign limit = site.home.limit_services | default: 6 %}
{% for service in site.services limit: limit %}
<div class="col-12 col-md-4 mb-1">
<div class="service service-summary">
<div class="service-content">
<h2 class="service-title">
<a href="{{ service.url | relative_url }}">{{ service.title }}</a>
</h2>
<p>{{ service.excerpt | markdownify | strip_html | truncate: 100 }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="row justify-content-center">
<div class="col-auto">
<a class="button button-primary" href="{{ "services" | relative_url }}">View All Services</a>
</div>
</div>
</div>
</div>
{% if site.data.features %} {% if site.data.features %}
<div class="strip strip-grey"> <div class="strip strip-grey">
<div class="container pt-6 pb-6 pt-md-10 pb-md-10"> <div class="container pt-6 pb-6 pt-md-10 pb-md-10">

View File

@ -1,84 +0,0 @@
---
title: "Accounting"
date: 2018-11-18T12:33:46+10:00
weight: 1
---
Financial accounting (or financial accountancy) is the field of accounting concerned with the **summary, analysis and reporting** of financial transactions related to a business.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,87 +0,0 @@
---
title: "Business Advisory"
date: 2018-12-28T15:14:39+10:00
weight: 4
---
Business advisory is the final tier of the accounting pyramid.
<!--more-->
Business advisory involves reporting on performance as well as advising on strategic plans, risk assessment, and succession plans.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,87 +0,0 @@
---
title: "Business Sales"
date: 2019-01-28T15:15:26+10:00
weight: 2
---
Cyanee nec pedicis positi. Esse et diem forte quoque et ieiunia
vixque dixit negari _ullis stamina_: trahit. Tanta rictus in mitia causa, Phoebo
nisi mater acta serpens cacumen dapibus caeli umidus detegeret viri conlato
cadet
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,87 +0,0 @@
---
title: "Insurance"
date: 2019-05-18T12:33:46+10:00
weight: 7
---
Lorem markdownum **Achaica revolutaque amore**, penitus puppes nec furit,
clipeus fatetur, mira inter accedere. Dedit dum raptoresque Oete dolorem
Cretaeas enim [ipse pectora excusat](#in-poscat) candentibus fertur? Furtiva
Orontes Erysicthona dona, est per Achille viridi draconis cultis mota milia.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,86 +0,0 @@
---
title: "Mergers"
date: 2019-02-28T15:15:34+10:00
weight: 3
---
Lorem markdownum aequalis strigis. Saetigeri iubeas, vultu huic alvum nondum
de obside ut laniavit arbor palmis, cum quin. Rupes vetat videndo, armigerae
crimen habet Priamum nec.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,86 +0,0 @@
---
title: "Superannuation"
date: 2019-03-28T15:14:54+10:00
weight: 5
---
Lorem markdownum aequalis strigis. Saetigeri iubeas, vultu huic alvum nondum
de obside ut laniavit arbor palmis, cum quin. Rupes vetat videndo, armigerae
crimen habet Priamum nec.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,87 +0,0 @@
---
title: "Tax Preperation"
date: 2019-04-18T12:33:46+10:00
weight: 6
---
Lorem markdownum **Achaica revolutaque amore**, penitus puppes nec furit,
clipeus fatetur, mira inter accedere. Dedit dum raptoresque Oete dolorem
Cretaeas enim [ipse pectora excusat](#in-poscat) candentibus fertur? Furtiva
Orontes Erysicthona dona, est per Achille viridi draconis cultis mota milia.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,87 +0,0 @@
---
title: "Wealth Management"
date: 2019-06-18T12:33:46+10:00
weight: 8
---
Lorem markdownum **Achaica revolutaque amore**, penitus puppes nec furit,
clipeus fatetur, mira inter accedere. Dedit dum raptoresque Oete dolorem
Cretaeas enim [ipse pectora excusat](#in-poscat) candentibus fertur? Furtiva
Orontes Erysicthona dona, est per Achille viridi draconis cultis mota milia.
![Accounting Services](/images/austin-distel-nGc5RT2HmF0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

View File

@ -1,12 +0,0 @@
---
title: "Bill McDonald"
date: 2018-11-19T10:47:58+10:00
image: "images/team/nonsap-visuals-kMJp7620W6U-unsplash.jpg"
jobtitle: "Graphic Designer"
linkedinurl: ""
weight: 7
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

View File

@ -1,10 +0,0 @@
---
title: "Mike Vance"
date: 2018-12-20T13:44:30+10:00
image: "images/team/joseph-gonzalez-399972-unsplash.jpg"
jobtitle: "Art Director"
linkedinurl: ""
weight: 3
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum arcu vitae elementum curabitur vitae nunc sed. Tortor at risus viverra adipiscing at in.

View File

@ -1,13 +0,0 @@
---
title: "Peter Van Eijk"
date: 2018-11-19T10:47:58+10:00
image: "images/team/peter-van-eijk-711986-unsplash.jpg"
jobtitle: "Director"
linkedinurl: "https://www.linkedin.com/"
promoted: true
weight: 1
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

View File

@ -1,10 +0,0 @@
---
title: "Robert Johnson"
date: 2018-12-20T13:44:23+10:00
image: "images/team/vince-fleming-613817-unsplash.jpg"
jobtitle: "Developer"
linkedinurl: "https://www.linkedin.com/"
weight: 3
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum arcu vitae elementum curabitur vitae nunc sed. Tortor at risus viverra adipiscing at in.

View File

@ -1,14 +0,0 @@
---
title: "Sage Kirk"
date: 2018-11-19T10:47:58+10:00
image: "images/team/sage-kirk-485982-unsplash.jpg"
jobtitle: "Accounting Partner"
linkedinurl: "https://www.linkedin.com/example2"
promoted: true
weight: 2
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit,
<!--more-->
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum arcu vitae elementum curabitur vitae nunc sed. Tortor at risus viverra adipiscing at in.

View File

@ -1,9 +0,0 @@
---
title: "Susan Shelton"
date: 2018-12-20T13:45:06+10:00
image: "images/team/cristian-newman-94319-unsplash.jpg"
jobtitle: "Developer"
weight: 5
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum arcu vitae elementum curabitur vitae nunc sed. Tortor at risus viverra adipiscing at in.

View File

@ -1,9 +0,0 @@
---
title: "Tamara Ells"
date: 2018-12-20T13:44:55+10:00
image: "images/team/michael-dam-258165-unsplash.jpg"
jobtitle: "UI Designer"
weight: 4
---
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bibendum arcu vitae elementum curabitur vitae nunc sed. Tortor at risus viverra adipiscing at in.

View File

@ -1,87 +0,0 @@
---
title: About
layout: page
description: About
bodyClass: page-about
---
Lorem markdownum aequalis strigis. _Saetigeri iubeas_, vultu huic alvum nondum
de obside ut laniavit arbor palmis, cum quin. Rupes vetat videndo, armigerae
crimen habet Priamum nec.
![Accounting Services](/images/thom-holmes-Lrfw0U_o9I0-unsplash.jpg)
# Objectives
Financial accounting and financial reporting are often used as synonyms.
1. According to International Financial Reporting Standards: the objective of financial reporting is:
2. To provide financial information that is useful to existing and potential investors, lenders and other creditors in making decisions about providing resources to the reporting entity.
3. According to the European Accounting Association:
## Relevance
Relevance is the capacity of the financial information to influence the decision of its users. The ingredients of relevance are the predictive value and confirmatory value. Materiality is a sub-quality of relevance.
> The ingredients of relevance are the predictive value and confirmatory value.
Information is considered material if its omission or misstatement could influence the economic decisions of users taken on the basis of the financial statements.
## Faithful Representation
Faithful representation means that the actual effects of the transactions shall be properly accounted for and reported in the financial statements. The words and numbers must match what really happened in the transaction. The ingredients of faithful representation are completeness, neutrality and free from error.
## Enhancing Qualitative Characteristics
### Verifiability
Verifiability implies consensus between the different knowledgeable and independent users of financial information. Such information must be supported by sufficient evidence to follow the principle of objectivity.
### Comparability
Comparability is the uniform application of accounting methods across entities in the same industry. The principle of consistency is under comparability. Consistency is the uniform application of accounting across points in time within an entity.
### Understandability
Understandability means that accounting reports should be expressed as clearly as possible and should be understood by those to whom the information is relevant.
Timeliness: Timeliness implies that financial information must be presented to the users before a decision is to be made.
---
## Statement of cash flows
The statement of cash flows considers the inputs and outputs in concrete cash within a stated period. The general template of a cash flow statement is as follows: Cash Inflow - Cash Outflow + Opening Balance = Closing Balance
| Cash Inflow | Outflow | Opening Balance |
| ----------- | --------- | --------------- |
| _Monday_ | `Tuesday` | **Wednesday** |
| 1 | 2 | 3 |
**Example 1:** in the beginning of September, Ellen started out with $5 in her bank account. During that same month, Ellen borrowed $20 from Tom. At the end of the month, Ellen bought a pair of shoes for $7. Ellen's cash flow statement for the month of September looks like this:
- Cash inflow: $20
- Cash outflow:$7
- Opening balance: $5
- Closing balance: $20 $7 + $5 = $18
**Example 2:** in the beginning of June, WikiTables, a company that buys and resells tables, sold 2 tables. They'd originally bought the tables for $25 each, and sold them at a price of $50 per table. The first table was paid out in cash however the second one was bought in credit terms. WikiTables' cash flow statement for the month of June looks like this:
> **Important:** the cash flow statement only considers the exchange of actual cash, and ignores what the person in question owes or is owed.
## Statement of financial position (balance sheet)
The balance sheet is the financial statement showing a firm's assets, liabilities and equity (capital) at a set point in time, usually the end of the fiscal year reported on the accompanying income statement.
- **fixed assets**
- property
- building
- equipment (such as factory machinery)
- **intangible assets**
- copyrights
- trademarks
- patents
- pending
- international
- goodwill
Owner's equity, sometimes referred to as net assets, is represented differently depending on the type of business ownership. Business ownership can be in the form of a sole proprietorship, partnership, or a corporation. For a corporation, the owner's equity portion usually shows common stock, and retained earnings (earnings kept in the company). Retained earnings come from the retained earnings statement, prepared prior to the balance sheet.

Binary file not shown.

View File

@ -1,13 +0,0 @@
{
"originRepo": "https://github.com/zerostaticthemes/jekyll-serif-theme",
"title": "Jekyll Serif",
"description": "Serif is a multi page business theme for Jekyll.",
"demoUrl": "https://jekyll-advance.netlify.app",
"categories": {
"ssg": ["jekyll"],
"css": ["bootstrap", "scss"],
"archetype": ["business"],
"features": ["netlify", "github-pages"],
"blueprint": ["theme"]
}
}

View File

@ -1,16 +0,0 @@
---
title: Contact
layout: contact
description: Contact
---
Lorem markdownum aequalis strigis. Saetigeri iubeas, vultu huic alvum nondum de obside ut laniavit arbor palmis, cum quin. Rupes vetat videndo, armigerae crimen habet Priamum nec.
| Day | Opening Hours |
| --------- | --------------- |
| Tuesday | 8:30am - 5:00pm |
| Wednesday | 8:30am - 5:00pm |
| Thursday | 8:30am - 5:00pm |
| Friday | 8:30am - 5:00pm |
| Saturday | 10:am - 4:00pm |
| Saturday | Closed |

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

View File

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Group</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Group">
<rect id="Rectangle" fill="#E5261F" x="0" y="0" width="32" height="32" rx="3"></rect>
<path d="M16.08,25.336 C17.152,25.336 18.136,25.164 19.032,24.82 C19.928,24.476 20.652,23.96 21.204,23.272 C21.756,22.584 22.032,21.712 22.032,20.656 C22.032,19.792 21.848,19.048 21.48,18.424 C21.112,17.8 20.624,17.24 20.016,16.744 C19.408,16.248 18.72,15.752 17.952,15.256 C17.072,14.648 16.324,14.128 15.708,13.696 C15.092,13.264 14.624,12.82 14.304,12.364 C13.984,11.908 13.824,11.36 13.824,10.72 C13.824,9.952 14.072,9.352 14.568,8.92 C15.064,8.488 15.696,8.272 16.464,8.272 C17.312,8.272 18.028,8.524 18.612,9.028 C19.196,9.532 19.648,10.176 19.968,10.96 C20.288,11.744 20.48,12.552 20.544,13.384 L20.544,13.384 L21.096,13.384 C21.096,12.264 21.1,11.36 21.108,10.672 C21.116,9.984 21.132,9.428 21.156,9.004 L21.16992,8.7568 C21.18784,8.4368 21.2032,8.1552 21.216,7.912 L21.216,7.912 L20.664,7.912 C20.568,8.616 20.392,8.968 20.136,8.968 C20.024,8.968 19.908,8.94 19.788,8.884 C19.668,8.828 19.512,8.744 19.32,8.632 C18.952,8.408 18.512,8.196 18,7.996 C17.488,7.796 16.76,7.696 15.816,7.696 C14.888,7.696 14.012,7.852 13.188,8.164 C12.364,8.476 11.7,8.956 11.196,9.604 C10.692,10.252 10.44,11.08 10.44,12.088 C10.44,12.968 10.636,13.728 11.028,14.368 C11.42,15.008 11.944,15.576 12.6,16.072 C13.256,16.568 13.96,17.064 14.712,17.56 C15.768,18.248 16.632,18.916 17.304,19.564 C17.976,20.212 18.312,21.032 18.312,22.024 C18.312,22.92 18.024,23.592 17.448,24.04 C16.872,24.488 16.168,24.712 15.336,24.712 C14.312,24.712 13.492,24.432 12.876,23.872 C12.26,23.312 11.804,22.572 11.508,21.652 C11.212,20.732 11.032,19.744 10.968,18.688 L10.968,18.688 L10.416,18.688 C10.416,19.952 10.412,20.996 10.404,21.82 C10.396,22.644 10.388,23.312 10.38,23.824 C10.372,24.336 10.352,24.784 10.32,25.168 L10.32,25.168 L10.872,25.168 C10.968,24.464 11.144,24.112 11.4,24.112 C11.592,24.112 11.864,24.224 12.216,24.448 C12.616,24.656 13.112,24.856 13.704,25.048 C14.296,25.24 15.088,25.336 16.08,25.336 Z" id="S" fill="#FFFFFF" fill-rule="nonzero"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
<svg xmlns="http://www.w3.org/2000/svg" fill="#111" transform="matrix(.69 0 0 .69 15.5 15.5)" viewBox="0 0 164 164">
<path d="M56.3 145.6h22.6c.5 0 .9-.4.9-.9s-.4-.9-.9-.9H56.3c-.5 0-.9.4-.9.9s.4.9.9.9zM82.5 145.6h3.7c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-3.7c-.5 0-.9.4-.9.9s.4.9.9.9zM89.4 145.6h2.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-2.5c-.5 0-.9.4-.9.9s.4.9.9.9zM84.2 149.3c0 .5.4.9.9.9h22.6c.5 0 .9-.4.9-.9s-.4-.9-.9-.9H85.1c-.5-.1-.9.4-.9.9zM76.8 149.3c0 .5.4.9.9.9h3.7c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-3.7c-.5-.1-.9.4-.9.9zM74.6 148.3h-2.5c-.5 0-.9.4-.9.9s.4.9.9.9h2.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9zM44.9 82.1l-3.3 1.5c-.5.2-.7.8-.5 1.2.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.3-.5-.9-.7-1.3-.5zM24.9 91.1l-3.3 1.5c-.5.2-.7.8-.5 1.2.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.3-.5-.9-.8-1.3-.5zM38.2 85.1l-3.3 1.5c-.5.2-.7.8-.5 1.2.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.3-.5-.8-.7-1.3-.5zM18.2 94l-3.3 1.5c-.5.2-.7.8-.5 1.2.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.3-.5-.8-.7-1.3-.5zM4.5 101.2c-.2-.5-.8-.7-1.2-.5l-1.7.8c-.4.1-.6.5-.6.8s.2.7.6.9l1.7.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.4 0-.9-.3-1.1.2-.3.4-.8.2-1.2zM76.6 136.7c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM56.6 127.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM43.3 121.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM63.3 130.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM69.9 133.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5s0 1 .5 1.2l3.2 1.5zM36.6 118.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM26.6 114.4l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.4-.1 1 .4 1.2zM19.4 110.2c-.2.5 0 1 .5 1.2l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.3.5zM49.9 124.8c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.5zM12.8 107.2c-.2.5 0 1 .5 1.2l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.6-.2-1.1 0-1.3.5z"/>
<path d="M156.7 103.7l-3.3 1.5s-.1 0-.1.1c-.3.1-.6.3-.7.7-3.6 12.1-10.3 22.7-19 31.3h-49v-.2c-.2-.5-.8-.7-1.2-.5l-1.3.6-1.3-.6c-.5-.2-1 0-1.2.5v.2h-49c-8.7-8.5-15.3-19.1-18.9-31.2-.1-.3-.4-.6-.7-.7l-.1-.1-3.3-1.5c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.2 1.4c9.3 30.4 37.6 53.4 72.2 53.4 34.5 0 62.9-23 72.2-53.4l3.2-1.4c.5-.2.7-.8.5-1.2-.5-.6-1.1-.8-1.5-.6zM82 158.4c-18.7 0-36.3-7.3-49.6-19.4h99.2c-13.3 12.2-30.9 19.4-49.6 19.4z"/>
<path d="M113.7 124.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.4.6.8.6zM120.4 121.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2s-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.4.6.8.6zM127 118.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.5.6.8.6zM133.7 115.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.4.6.8.6zM146.2 109.4c.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.6.2-.8.8-.6 1.2zM139.5 112.4c.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.6.2-.8.7-.6 1.2zM87 136.8c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.5.6.8.6zM93.7 133.8c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.4.6.8.6zM100.4 130.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.3.4.6.8.6zM107 127.9c.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-3.3 1.5c-.5.2-.7.8-.5 1.2.1.4.5.6.8.6zM162.4 101.5l-1.7-.8c-.5-.2-1 0-1.2.5-.2.4 0 .9.3 1.1-.4.3-.5.7-.3 1.1.2.3.5.6.9.6.1 0 .3 0 .4-.1l1.7-.8c.3-.2.6-.5.6-.9s-.3-.6-.7-.7zM157.4 99.2l-1.2-.5c.8-4.5 1.3-9.2 1.3-13.9 0-41.6-33.9-75.5-75.5-75.5-5.4 0-10.8.6-16 1.7L49.8 3.8c-.2-.1-.5-.1-.8 0l-21.7 9.7h-.1-.1-.1s-.1 0-.1.1l-.1.1s0 .1-.1.1c0 0 0 .1-.1.1v19.3C13.7 47.4 6.5 65.6 6.5 84.8c0 4.7.4 9.5 1.3 14-.2.3-.2.6-.1.9.2.3.5.6.9.6.1 0 .3 0 .4-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.3-.5l-2 .9c-.8-4.3-1.2-8.7-1.2-13.1 0-18 6.5-35.2 18.4-48.7v69.7c0 .4.2.7.6.9l21.7 9.7c.1 0 .2.1.3.1h.1c.1 0 .2 0 .3-.1h.1l9.6-4.3 20.5 9.2c.1 0 .2.1.3.1.1 0 .2 0 .3-.1l21.7-9.7c.1-.1.3-.2.4-.3l11.5 5.1h.1c.1 0 .2 0 .3.1h.1c.1 0 .2 0 .3-.1l21.7-9.7c.3-.2.6-.5.6-.9V92c.3-.1.5-.2.7-.5.2-.5 0-1-.5-1.2l-.2-.1V40.5v-.2-.1c0-.1 0-.1-.1-.1 0 0 0-.1-.1-.1l-.1-.1s-.1 0-.1-.1h-.1-.1-.1L115 30c-.2-.1-.5-.1-.8 0l-21.7 9.7h-.1l-.1.1-.1.1-.1.1v.1c0 .1-.1.1-.1.2V69.1L80.7 64c-.2-.1-.5-.1-.8 0L72 67.4V14.3 14c0-.1-.1-.2-.1-.2 0-.1-.1-.1-.1-.2 0 0-.1 0-.1-.1 0 0-.1 0-.1-.1h-.1l-2.5-1c4.3-.8 8.6-1.2 13-1.2 40.6 0 73.6 33 73.6 73.6 0 4.4-.4 8.8-1.2 13.1l-.4-.2c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.4 0-1-.5-1.2zM48.5 80.5l-.3.1c-.5.2-.7.8-.5 1.2.1.3.4.5.7.5V114l-19.8-8.9V91.3c.1 0 .2 0 .3-.1l3.3-1.5c.5-.2.7-.8.5-1.2-.2-.5-.8-.7-1.2-.5l-2.9 1.3V15.8l17.5 7.8 2.3 1v55.9zm.9-57.5l-3.2-1.4L30 14.3l19.4-8.7 19.4 8.7L49.4 23zm29.9 96l-19.8-8.9V75.9L79 84.6l.4.2V119zm21.7-9.1v.2L81.2 119V84.7l.4-.2 19.2-8.6.2.1v33.9zm34.4-20.5l-1.3-.6c-.5-.2-1 0-1.2.5-.2.5 0 1 .5 1.2l2 .9v13.9l-19.8 8.9V82.5l1.1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-1.9-.8V50.8l2.3-1 17.5-7.8v47.4zm-20.8-57.6l19.4 8.7-16.2 7.2-3.2 1.4-6-2.7-13.4-6 19.4-8.6zM93.8 42l10.3 4.6 9.5 4.3v28.9c-.3 0-.7.2-.8.5-.2.5 0 1 .5 1.2l.3.1V114l-10.7-4.8V76.9l.4.2c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-1.2-.5v-.4-.2-.1c0-.1 0-.1-.1-.1 0 0 0-.1-.1-.1l-.1-.1s-.1 0-.1-.1h-.1-.1-.1L93.7 70V42zM80.3 65.7l19.4 8.7-16.2 7.2-3.2 1.4-3.3-1.3-16.2-7.2 19.5-8.8zM70.2 15.8v52.5l-12 5.4h-.1-.1-.1s-.1 0-.1.1l-.1.1s0 .1-.1.1c0 0 0 .1-.1.1v2.3l-2.8 1.2c-.5.2-.7.8-.5 1.2.2.3.5.6.9.6.1 0 .3 0 .4-.1l2-.9v32.4l-7.3 3.3V81.7l2-.9c.5-.2.7-.8.5-1.2s-.8-.7-1.2-.5l-1.2.5v-55l19.9-8.8z"/>
<path d="M106.7 78.6l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.4-.1 1 .4 1.2zM120 84.5l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.5-.1 1 .4 1.2zM140 93.5l3.3 1.5c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.4-.1 1 .4 1.2zM126.7 87.5L130 89c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.5-.1 1 .4 1.2zM146.7 96.5L150 98c.1.1.3.1.4.1.4 0 .7-.2.9-.6.2-.5 0-1-.5-1.2l-3.3-1.5c-.5-.2-1 0-1.2.5-.3.4-.1.9.4 1.2z"/>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
<svg xmlns="http://www.w3.org/2000/svg" fill="#111" transform="matrix(.69 0 0 .69 15.5 15.5)" viewBox="0 0 164 164">
<path d="M55.7 148h23.1c.5 0 1-.4 1-1 0-.5-.4-1-1-1H55.7c-.5 0-1 .4-1 1s.5 1 1 1zM82.5 148h3.8c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-3.8c-.5 0-1 .4-1 1 .1.6.5 1 1 1zM89.6 148h2.5c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-2.5c-.5 0-1 .4-1 1 .1.6.5 1 1 1zM84.2 151.7c0 .5.4 1 1 1h23.1c.5 0 1-.4 1-1 0-.5-.4-1-1-1H85.2c-.6 0-1 .5-1 1zM76.7 151.7c0 .5.4 1 1 1h3.8c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-3.8c-.6 0-1 .5-1 1zM74.4 150.7h-2.5c-.5 0-1 .4-1 1 0 .5.4 1 1 1h2.5c.5 0 1-.4 1-1-.1-.5-.5-1-1-1z"/>
<path d="M151.6 119.5c5.2-10.6 7.8-22 7.8-33.9 0-11.9-2.6-23.3-7.8-33.8V30.9c0-7.3-5.9-13.2-13.2-13.2-.5 0-1 .4-1 1v13c-10.3-10.6-23.3-18-37.8-21.4-3.5-5-9-8.5-15.2-9.2-6.2-.7-12.2 1.2-16.8 5.4-1.3 1.1-2.4 2.4-3.3 3.8C49.9 13.7 36.9 21 26.5 31.7v-13c0-.5-.4-1-1-1-7.3 0-13.2 5.9-13.2 13.2v20.9c-5.2 10.6-7.8 22-7.8 33.8 0 11.9 2.6 23.3 7.8 33.9v8.6c0 7.3 5.9 13.2 13.2 13.2h2.6C42.7 155.3 61.8 163 82 163c20.2 0 39.3-7.7 53.8-21.8h2.6c7.3 0 13.2-5.9 13.2-13.2v-8.5zm5.9-33.9c0 10.2-2 20-5.9 29.2V56.4c3.9 9.2 5.9 19 5.9 29.2zm-7.8-54.7v90.3c-2.2-3.5-5.9-6-10.3-6.3V19.7c5.7.5 10.3 5.3 10.3 11.2zM137 34h-36.8c2.6-4.1 3.7-8.9 3.2-13.8-.3-2.7-1.1-5.2-2.3-7.5 13.7 3.5 26.1 10.8 35.9 21.3zM68.9 7.9c4.2-3.8 9.7-5.5 15.3-4.9 9 1 16.3 8.3 17.3 17.3.6 5.9-1.3 11.7-5.4 15.9-4.3 4.4-6.8 10-7 15.9h-3.3V33h2c2.1 0 3.9-1.7 3.9-3.9 0-2.1-1.7-3.9-3.9-3.9-2.1 0-3.9 1.7-3.9 3.9v2h-3.6v-2c0-2.1-1.7-3.9-3.9-3.9-2.1 0-3.9 1.7-3.9 3.9 0 2.1 1.7 3.9 3.9 3.9h2v19h-3.3c-.3-6-2.7-11.6-6.8-15.6-3.7-3.7-5.8-8.7-5.8-13.9-.1-5.5 2.3-10.9 6.4-14.6zm4.8 110.9v-8.3h16.6v16.6H73.7v-8.3zm8.3-24l-7.9-7.9L82 79l7.9 7.9-7.9 7.9zm-9.3-30.5c-.5 0-1-.4-1-1v-1.2h20.5v1.2c0 .5-.4 1-1 1H72.7zm19.6-4.1H71.7V58h20.5v2.2zm0-4.1H71.7v-1.2c0-.5.4-1 1-1h18.6c.5 0 1 .4 1 1v1.2zm-14-25h-2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2v2zm5.5 21h-3.6V33h3.6v19.1zm1.9-21v-2c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2h-2zM62.9 12.6c-1.6 3-2.4 6.4-2.4 9.9 0 4.1 1.2 8 3.3 11.4H27c9.8-10.4 22.1-17.7 35.9-21.3zm-38.3 7.1v95.2c-4.4.3-8.2 2.8-10.3 6.3V30.9c0-5.9 4.6-10.7 10.3-11.2zM6.5 85.6c0-10.2 2-20 5.9-29.2v58.5c-3.9-9.3-5.9-19.1-5.9-29.3zM82 161.1c-19 0-37-7-51-19.8h102c-14 12.7-32 19.8-51 19.8zm56.4-21.8H25.6c-6.2 0-11.3-5.1-11.3-11.3 0-6.2 5.1-11.2 11.3-11.2.5 0 1-.4 1-1V35.9h38.6c.5.7 1.1 1.3 1.7 1.9 3.7 3.6 5.9 8.8 6.2 14.3h-.3c-1.6 0-2.9 1.3-2.9 2.9v8.4c0 1.6 1.3 2.9 2.9 2.9H81v11L72.3 86H61.9c-.5-5.2-4.9-9.3-10.2-9.3-5.6 0-10.2 4.6-10.2 10.2s4.6 10.2 10.2 10.2c5.3 0 9.7-4.1 10.2-9.3h10.5l8.7 8.7v12h-8.3c-.5 0-1 .4-1 1v8.3h-9.9c-.5-5.2-4.9-9.3-10.2-9.3-5.6 0-10.2 4.6-10.2 10.2S46.1 129 51.7 129c5.3 0 9.7-4.1 10.2-9.3h9.9v8.3c0 .5.4 1 1 1h18.5c.5 0 1-.4 1-1v-18.5c0-.5-.4-1-1-1H83v-12l8.7-8.7h10.4v8.3c0 .5.4 1 1 1h8.3v11.5c-5.2.5-9.3 4.9-9.3 10.2 0 5.6 4.6 10.2 10.2 10.2s10.2-4.6 10.2-10.2c0-5.3-4.1-9.7-9.3-10.2V97.1h8.3c.5 0 1-.4 1-1V77.6c0-.5-.4-1-1-1H103c-.5 0-1 .4-1 1v8.3H91.7L83 77.2v-11h8.3c1.6 0 2.9-1.3 2.9-2.9v-8.4c0-1.6-1.3-2.9-2.9-2.9H91c.3-5.3 2.5-10.4 6.5-14.5.5-.5 1-1.1 1.4-1.6h38.6v79.9c0 .5.4 1 1 1 6.2 0 11.2 5 11.3 11.2-.1 6.3-5.2 11.3-11.4 11.3zM60 86.9c0 4.6-3.7 8.3-8.3 8.3-4.6 0-8.3-3.7-8.3-8.3 0-4.6 3.7-8.3 8.3-8.3 4.6 0 8.3 3.7 8.3 8.3zm0 31.9c0 4.6-3.7 8.3-8.3 8.3-4.6 0-8.3-3.7-8.3-8.3 0-4.6 3.7-8.3 8.3-8.3 4.6 0 8.3 3.7 8.3 8.3zm52.3-8.3c4.6 0 8.3 3.7 8.3 8.3 0 4.6-3.7 8.3-8.3 8.3-4.6 0-8.3-3.7-8.3-8.3 0-4.6 3.7-8.3 8.3-8.3zM104 95.2V78.6h16.6v16.6H104z"/>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
<svg xmlns="http://www.w3.org/2000/svg" fill="#111" transform="matrix(.69 0 0 .69 15.5 15.5)" viewBox="0 0 164 164">
<path d="M36.4 51.7c0-3.6-2.9-6.5-6.5-6.5s-6.5 2.9-6.5 6.5 2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5zm-5.6 4.5v-3.6h3.6c-.3 1.8-1.8 3.2-3.6 3.6zm3.6-5.5h-3.6v-3.6c1.8.4 3.3 1.8 3.6 3.6zm-9.2 1c0-2.2 1.6-4.1 3.7-4.5v9c-2.1-.4-3.7-2.3-3.7-4.5zM56.9 142.5c0 .5.4.9.9.9h22.8c.5 0 .9-.4.9-.9s-.4-.9-.9-.9H57.8c-.5 0-.9.4-.9.9zM84.3 143.4h3.8c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-3.8c-.5 0-.9.4-.9.9s.4.9.9.9zM91.3 143.4h2.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-2.5c-.5 0-.9.4-.9.9-.1.5.4.9.9.9zM86 147.1c0 .5.4.9.9.9h22.8c.5 0 .9-.4.9-.9s-.4-.9-.9-.9H86.9c-.5 0-.9.4-.9.9zM78.5 147.1c0 .5.4.9.9.9h3.8c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-3.8c-.4 0-.9.4-.9.9zM76.3 146.2h-2.5c-.5 0-.9.4-.9.9s.4.9.9.9h2.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9zM78.3 32.2c-3.6 0-6.5 2.9-6.5 6.5s2.9 6.5 6.5 6.5 6.5-2.9 6.5-6.5c-.1-3.6-3-6.5-6.5-6.5zm4.4 5.5h-3.5v-3.5c1.8.4 3.2 1.7 3.5 3.5zm-9 1c0-2.2 1.6-4 3.6-4.5v9c-2-.5-3.6-2.3-3.6-4.5zm5.5 4.4v-3.5h3.5c-.3 1.8-1.7 3.2-3.5 3.5z"/>
<path d="M162.1 72.2h-2.7c-1.6-12.8-6.5-25-14.2-35.4v-8.6c0-.5-.4-.9-.9-.9h-7.4c-14.3-13.8-33.1-21.5-53-21.5-25.8 0-49.6 12.8-63.7 34.2h-.8c-.5 0-.9.4-.9.9v1.9C8.7 43.3 1 51.3 1 61.1 1 66.8 3.7 72 7.8 75.3c-.2 2.2-.3 4.5-.3 6.7 0 13.8 3.7 27.4 10.8 39.2v8.4c0 .5.4.9.9.9H25c14.6 17.6 35.9 27.7 58.8 27.7 19.9 0 38.7-7.6 53-21.4 6.1-.3 8.4.7 8.4-.9v-8.7c6.6-8.9 11.2-19.3 13.3-30.1h3.5c.5 0 .9-.4.9-.9v-23c.1-.5-.3-1-.8-1zm-4.6 0h-12.3V40.1c6.5 9.6 10.8 20.6 12.3 32.1zM18.4 64.4c-3.4-1-3.4-5.7 0-6.7v6.7zm1.8 14.1V56.7 42h38.4v38.4H20.2v-1.9zM2.9 61.1c0-8.7 6.9-15.9 15.5-16.4v11.1c-5.9 1-5.9 9.5 0 10.6v11.1C9.7 77 2.9 69.8 2.9 61.1zM9.4 82c0-1.8.1-3.6.2-5.4 2.6 1.6 5.5 2.6 8.7 2.7v1.9c0 .5.4.9.9.9h40.2c.5 0 .9-.4.9-.9V41c0-.5-.4-.9-.9-.9h-37C36.3 19.7 59.1 7.6 83.8 7.6c18.8 0 36.5 6.9 50.3 19.6H65.6c-.5 0-.9.4-.9.9v61.1H19.3c-.5 0-.9.5-.9.9v27.2c-5.9-10.7-9-22.9-9-35.3zm74.3 46l-29.9-18.1 29.9-18.1V128zM20.2 91.8l29.9 18.1L20.2 128V91.8zm31.7 17L22.7 91.1h58.5l-29.3 17.7zm0 2.2l29.3 17.7H22.7L51.9 111zm12.8 19.6v4.4H31.5c-1.4-1.4-2.8-2.8-4.1-4.4h37.3zm19.1 25.8c-18.8 0-36.6-7-50.3-19.6H134c-13.7 12.6-31.5 19.6-50.2 19.6zm-17.2-21.5v-4.4h18c.5 0 .9-.5.9-.9V90.2c0-.5-.4-.9-.9-.9h-18V29.1h76.7v43.1h-16.9c-.5 0-.9.4-.9.9V96c0 .5.4.9.9.9h16.9v37.9c-14.5.1-63 .1-76.7.1zm78.6-11V97.1h11.4c-2 9.5-5.9 18.7-11.4 26.8zm15.9-28.7h-33.8V74.1h33.8v21.1z"/>
<path d="M144.2 86.2c3 0 5.4-2.4 5.4-5.4 0-3-2.4-5.4-5.4-5.4s-5.4 2.4-5.4 5.4c.1 3 2.5 5.4 5.4 5.4zm1-2v-2.4h2.4c-.4 1.2-1.3 2.1-2.4 2.4zm2.4-4.3h-2.4v-2.4c1.1.4 2 1.3 2.4 2.4zm-4.3-2.4v6.6c-1.5-.4-2.5-1.8-2.5-3.3 0-1.5 1-2.9 2.5-3.3zM134.9 89.6h18.6c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-18.6c-.5 0-.9.4-.9.9s.4.9.9.9zM130.4 92.5h27.7c.5 0 .9-.4.9-.9s-.4-.9-.9-.9h-27.7c-.5 0-.9.4-.9.9-.1.5.3.9.9.9zM118.5 33.4H88c-.5 0-.9.4-.9.9s.4.9.9.9h30.5c.5 0 .9-.4.9-.9s-.4-.9-.9-.9zM111 37.5H88c-.5 0-.9.4-.9.9s.4.9.9.9h23c.5 0 .9-.4.9-.9s-.4-.9-.9-.9zM101.9 40.5H88c-.5 0-.9.4-.9.9s.4.9.9.9h13.9c.5 0 .9-.4.9-.9s-.4-.9-.9-.9zM55.7 72.1H28c-.5 0-.9.4-.9.9s.4.9.9.9h27.7c.5 0 .9-.4.9-.9.1-.5-.3-.9-.9-.9z"/>
</svg>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

View File

@ -1,112 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1600px" height="1200px" viewBox="0 0 1600 1200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pointing</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hugo" transform="translate(127.000000, 84.000000)" fill-rule="nonzero">
<path d="M28.4,912.2 C77.6,914.4 126.8,915.5 176,915.4 C177.9,915.4 177.9,912.4 176,912.4 C126.8,912.5 77.6,911.4 28.4,909.2 C26.5,909.1 26.5,912.1 28.4,912.2 Z M179,837.8 C186.7,866.7 193.9,895.8 200.5,925 C200.9,926.9 203.8,926.1 203.4,924.2 C196.7,895 189.6,865.9 181.9,837 C181.4,835.2 178.5,836 179,837.8 Z M313,840 C310.2,867.5 307.4,895.1 304.7,922.6 C304.5,924.5 307.5,924.5 307.7,922.6 C310.5,895.1 313.3,867.5 316,840 C316.1,838.1 313.1,838.1 313,840 L313,840 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M201.3,927.7 C218.8,930.8 236.5,932.2 254.3,931.7 C271.3,931.2 289.9,929.9 306.1,924.5 C307.9,923.9 307.1,921 305.3,921.6 C289.2,926.9 271.1,928.2 254.3,928.7 C236.8,929.2 219.3,927.8 202.1,924.8 C200.2,924.4 199.4,927.3 201.3,927.7 L201.3,927.7 Z M180.2,838.8 C200.9,844.6 223.4,844.7 244.8,844.8 C267.8,845 290.8,843.7 313.6,841.1 C315.5,840.9 315.5,837.9 313.6,838.1 C291.4,840.7 269.1,841.9 246.8,841.8 C225.1,841.7 202.1,841.7 181,835.9 C179.1,835.4 178.3,838.3 180.2,838.8 L180.2,838.8 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M171.6,828.5 C171.8,830.4 172,832.4 172.2,834.3 C172.3,835.5 172.3,837 172.8,838.1 C174,840.7 178,839.8 180.3,839.8 C182.2,839.8 182.2,836.8 180.3,836.8 L176.9,836.8 C175.4,836.8 175.4,836.5 175.3,835 C175.1,832.8 174.9,830.7 174.7,828.5 C174.4,826.6 171.4,826.5 171.6,828.5 Z" id="Path" fill="#E8E8E8"></path>
<path d="M173.6,830.1 C198.6,833 223.7,834.4 248.9,834.6 C261.3,834.7 273.7,834.5 286.2,834.1 C292.4,833.9 298.6,833.6 304.8,833.3 C307.7,833.2 311.7,832.2 314.6,832.8 C318.1,833.4 317.9,836.4 318.3,839.5 C318.6,838.9 319,838.3 319.3,837.7 L315.4,837.7 C313.5,837.3 312.7,840.2 314.6,840.6 C316.6,841 318.1,841 320,840.6 C320.9,840.4 321.2,839.5 321,838.8 C320.5,835.3 320.9,830.9 316.7,830 C314.2,829.4 311.1,830.1 308.5,830.2 C305.2,830.4 302,830.5 298.7,830.7 C284.7,831.3 270.6,831.7 256.5,831.7 C228.7,831.7 201,830.4 173.4,827.1 C171.7,826.9 171.7,829.9 173.6,830.1 L173.6,830.1 Z M195.3,902.8 C203.3,913.3 212.7,922.4 223.3,930.2 C224.9,931.3 226.4,928.7 224.8,927.6 C214.6,920.1 205.5,911.3 197.8,901.2 C196.7,899.7 194.1,901.2 195.3,902.8 L195.3,902.8 Z M188.6,872.3 C204.2,894.8 223.4,914.5 245.6,930.6 C247.2,931.7 248.7,929.1 247.1,928 C225.4,912.2 206.5,892.8 191.2,870.8 C190.1,869.2 187.5,870.7 188.6,872.3 Z M182.5,845.5 C209.5,877.5 239.5,907.4 275.3,929.6 C276.9,930.6 278.5,928 276.8,927 C241.2,905 211.4,875.3 184.6,843.4 C183.4,841.9 181.3,844.1 182.5,845.5 Z M211.2,843.8 C236.9,873.7 265.4,902.1 297.2,925.5 C298.8,926.6 300.3,924 298.7,922.9 C267.1,899.7 238.8,871.3 213.3,841.7 C212,840.2 209.9,842.3 211.2,843.8 L211.2,843.8 Z M244,845.9 C261.4,867.2 281.4,886.2 303.6,902.5 C305.2,903.6 306.7,901 305.1,899.9 C283.1,883.8 263.3,864.9 246.1,843.8 C244.9,842.3 242.8,844.4 244,845.9 Z M270.8,844.8 C282,857.4 294.8,868.2 309,877.3 C310.6,878.3 312.1,875.7 310.5,874.7 C296.5,865.8 283.9,855 272.9,842.7 C271.6,841.2 269.5,843.3 270.8,844.8 L270.8,844.8 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M132.4,680 C138.9,693.7 143.3,708.1 145.8,723.1 C145.9,723.8 146.6,724.2 147.2,724.2 C147.8,724.2 151,724.1 151.2,725.1 C151.3,725.5 149.3,727.8 149.1,728.3 C148.5,729.9 148.5,731.8 149.1,733.4 C149.9,735.3 151.4,736.6 153.2,737.3 C153.8,737.6 154.5,737.7 155.2,737.8 C155.8,737.9 156.4,737.9 157,737.8 C157.8,737.7 157.7,737.8 156.8,738.2 C155.8,739.7 154.4,739.9 154,742.1 C153.7,744.2 154.7,746.2 155.5,748 C158.8,755 160.7,762.4 163.4,769.7 C172.7,794.5 190.5,815 210.6,831.9 C212.1,833.1 214.2,831 212.7,829.8 C192,812.4 173.6,791.1 164.9,765 C163.8,761.6 162.8,758.2 161.6,754.9 C160.6,752 158.7,749 157.8,746.1 C156.8,744.5 156.9,742.7 158.2,740.9 L159.4,740 C159.7,739.5 160.3,739.2 160.6,738.6 C161,737.5 160.7,736.5 159.9,735.7 C158.6,734.4 156.6,735.1 154.9,734.6 C148.4,732.7 153.7,728.3 154.2,725.1 C154.9,720.9 149.7,721.4 146.9,721.2 C147.4,721.6 147.9,721.9 148.3,722.3 C145.8,707.1 141.2,692.4 134.6,678.5 C134.2,676.7 131.6,678.2 132.4,680 L132.4,680 Z" id="Path" fill="#E8E8E8"></path>
<path d="M133.5,679.3 C166,688 194.5,710.1 215.2,736.3 C237.2,764.1 250.9,797.5 258.3,832 C258.7,833.9 261.6,833.1 261.2,831.2 C253.7,796.2 239.7,762.4 217.4,734.2 C196.4,707.7 167.4,685.3 134.4,676.5 C132.4,675.9 131.6,678.8 133.5,679.3 Z" id="Path" fill="#E8E8E8"></path>
<path d="M145.3,691.7 C185.1,730.4 215.8,777.9 234.7,830.2 C235.4,832 238.3,831.2 237.6,829.4 C218.5,776.7 187.6,728.7 147.4,689.6 C146.1,688.2 143.9,690.3 145.3,691.7 L145.3,691.7 Z" id="Path" fill="#E8E8E8"></path>
<path d="M163,754.6 C171.4,755.5 179.6,757.4 187.4,760.5 C195,763.5 203.3,767.3 208.1,774.2 C209.2,775.8 211.8,774.3 210.7,772.7 C205.9,765.8 198.4,761.9 190.8,758.7 C181.9,754.9 172.6,752.6 162.9,751.6 C161.1,751.4 161.1,754.4 163,754.6 L163,754.6 Z M177.9,699.8 C177.8,711.3 179.7,722.6 183.4,733.5 C184,735.3 186.9,734.5 186.3,732.7 C182.7,722.1 180.9,711.1 180.9,699.8 C180.9,697.9 177.9,697.9 177.9,699.8 L177.9,699.8 Z M232.8,754.2 C237.7,735.9 254,725 267.9,713.8 C282.7,701.9 297,689.2 310.6,676 C309.8,675.5 308.9,675 308.1,674.5 C303.6,686.6 302.7,699.3 302.9,712.1 C303.1,724.9 306,739.6 301.9,752 C302.4,751.6 302.9,751.3 303.3,750.9 C300.1,751.1 296.9,751.4 293.7,751.6 C292.7,751.7 291.7,752.9 292.4,753.9 C294.7,757 297.4,758 297.3,762.6 C297.3,765.8 296.5,769.5 295.4,772.5 C294.3,775.6 291.4,777.7 290.4,780.6 C289.6,783.2 291.6,785.4 291.6,788 C291.7,792.3 288.6,795.9 286.4,799.3 C284.3,802.5 282.4,805.8 280.7,809.2 C277.3,815.9 274.6,822.8 272.6,830 C272.1,831.9 275,832.7 275.5,830.8 C278,821.9 281.6,813.3 286.3,805.3 C289.5,799.9 295.5,793.6 294.8,786.8 C294.5,784.1 293.1,783.3 294.3,780.2 C294.4,780.1 296.2,777.7 296.3,777.5 C298.2,774.4 299.1,770.9 299.7,767.4 C300.1,764.8 300.9,761.6 300.5,759 C299.9,755.3 297.1,755 295,752.2 C294.6,753 294.1,753.7 293.7,754.5 C296.9,754.3 300.1,754 303.3,753.8 C304,753.7 304.5,753.4 304.7,752.7 C308.5,741.1 306.2,727.6 305.8,715.6 C305.4,701.9 305.9,688.1 310.8,675.1 C311.4,673.6 309.3,672.7 308.3,673.6 C293.8,687.7 278.6,701.2 262.7,713.8 C249.1,724.6 234.4,735.6 229.7,753.2 C229.4,755.3 232.3,756.1 232.8,754.2 L232.8,754.2 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M299.5,689 C289.7,706.1 279.7,723 270.3,740.3 C261.5,756.3 253.7,772.9 250,790.8 C249.6,792.7 252.5,793.5 252.9,791.6 C256.7,773.3 264.8,756.5 273.8,740.2 C283,723.5 292.7,707.1 302.1,690.5 C303,688.9 300.4,687.3 299.5,689 L299.5,689 Z" id="Path" fill="#E8E8E8"></path>
<path d="M270,716.8 C271.3,722.5 271.9,728.2 271.7,734 C271.6,735.9 274.6,735.9 274.7,734 C274.9,727.9 274.3,722 272.9,716 C272.4,714.1 269.6,714.9 270,716.8 Z M286.3,697.7 C287.4,702 287.6,706.2 287.1,710.5 C286.9,712.4 289.9,712.4 290.1,710.5 C290.7,705.9 290.4,701.4 289.2,696.9 C288.7,695.1 285.8,695.9 286.3,697.7 L286.3,697.7 Z M287,717.6 C292.9,714.1 299,711 305.3,708.4 C307.1,707.7 306.3,704.8 304.5,705.5 C297.9,708.2 291.6,711.4 285.4,715 C283.8,716 285.3,718.6 287,717.6 Z M261.2,767.8 C265,764.6 268.8,761.5 272.7,758.5 C276.8,755.3 281.3,751 286.3,749 C288.1,748.3 287.3,745.4 285.5,746.1 C281,747.8 277.3,751.1 273.5,754.1 C268.6,757.9 263.8,761.7 259.1,765.7 C257.6,766.9 259.7,769 261.2,767.8 L261.2,767.8 Z M145.4,711.7 C152.4,712.4 159.4,713.1 166.4,713.7 C168.3,713.9 168.3,710.9 166.4,710.7 C159.4,710 152.4,709.3 145.4,708.7 C143.5,708.5 143.5,711.5 145.4,711.7 Z M328.9,911.2 L810.6,911.2 C812.5,911.2 812.5,908.2 810.6,908.2 L328.9,908.2 C326.9,908.2 326.9,911.2 328.9,911.2 Z M752.7,666.2 L752.7,710 C752.7,711.9 755.7,711.9 755.7,710 L755.7,666.2 C755.7,664.3 752.7,664.3 752.7,666.2 Z M683.7,716.7 L829.2,716.7 C831.1,716.7 831.1,713.7 829.2,713.7 L683.7,713.7 C681.8,713.7 681.7,716.7 683.7,716.7 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M716.3,717.5 L716.3,755.4 C716.3,757.3 719.3,757.3 719.3,755.4 L719.3,717.5 C719.3,715.5 716.3,715.5 716.3,717.5 Z M791.3,716.7 L791.3,750.1 C791.3,752 794.3,752 794.3,750.1 L794.3,716.7 C794.3,714.8 791.3,714.8 791.3,716.7 Z M743.8,758.3 L855.1,758.3 C857,758.3 857,755.3 855.1,755.3 L743.8,755.3 C741.9,755.3 741.9,758.3 743.8,758.3 Z M659.9,940.2 L905.6,940.2 C907.5,940.2 907.5,937.2 905.6,937.2 L659.9,937.2 C658,937.2 658,940.2 659.9,940.2 Z M998.6,914.3 L1307.7,914.3 C1309.6,914.3 1309.6,911.3 1307.7,911.3 L998.6,911.3 C996.7,911.3 996.7,914.3 998.6,914.3 Z M1.7,965.5 L249,965.5 C250.9,965.5 250.9,962.5 249,962.5 L1.7,962.5 C-0.2,962.5 -0.2,965.5 1.7,965.5 Z M167.9,995.5 L369.8,995.5 C371.7,995.5 371.7,992.5 369.8,992.5 L167.9,992.5 C165.9,992.5 165.9,995.5 167.9,995.5 Z M1191,140.5 L1191,56.9 C1191,55 1188,55 1188,56.9 L1188,140.5 C1188,142.4 1191,142.4 1191,140.5 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M1190.5,56.3 L1298.8,56.3 C1300.7,56.3 1300.7,53.3 1298.8,53.3 L1190.5,53.3 C1188.6,53.3 1188.6,56.3 1190.5,56.3 Z" id="Path" fill="#E8E8E8"></path>
<path d="M1297.3,55 C1297.1,83.3 1296.9,111.6 1296.6,139.9 C1296.6,141.8 1299.6,141.8 1299.6,139.9 C1299.8,111.6 1300,83.3 1300.3,55 C1300.3,53.1 1297.3,53.1 1297.3,55 Z" id="Path" fill="#E8E8E8"></path>
<path d="M1191,142 L1297.8,142 C1299.7,142 1299.7,139 1297.8,139 L1191,139 C1189.1,139 1189.1,142 1191,142 Z M1193.9,62.7 L1193.9,133.1 C1193.9,135 1196.9,135 1196.9,133.1 L1196.9,62.7 C1196.9,60.8 1193.9,60.8 1193.9,62.7 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M1196.1,64.2 L1290.8,64.2 C1292.7,64.2 1292.7,61.2 1290.8,61.2 L1196.1,61.2 C1194.1,61.2 1194.1,64.2 1196.1,64.2 Z" id="Path" fill="#E8E8E8"></path>
<path d="M1289.2,63.4 L1288.9,132.5 C1288.9,134.4 1291.9,134.4 1291.9,132.5 L1292.2,63.4 C1292.2,61.5 1289.2,61.5 1289.2,63.4 Z" id="Path" fill="#E8E8E8"></path>
<path d="M1196.7,135 L1290,135 C1291.9,135 1291.9,132 1290,132 L1196.7,132 C1194.8,132 1194.8,135 1196.7,135 Z M1196.1,114.3 C1207.6,110.3 1219.7,113.9 1230.9,117.2 C1242.3,120.5 1253.5,124.5 1264.4,129.1 C1266.2,129.8 1267,126.9 1265.2,126.2 C1253.1,121.1 1240.7,116.8 1228.1,113.3 C1217.4,110.4 1206.1,107.6 1195.3,111.4 C1193.5,112 1194.3,114.9 1196.1,114.3 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M1234.1,117.7 C1253,116.6 1270.7,109 1289.4,106.9 C1291.3,106.7 1291.3,103.7 1289.4,103.9 C1270.7,106 1253,113.5 1234.1,114.7 C1232.1,114.9 1232.1,117.9 1234.1,117.7 Z M1269.9,81.1 C1265.7,78.7 1269.5,70.8 1274,72.7 C1276.4,73.7 1276.9,76.6 1275.6,78.7 C1274.2,81 1271.3,81.4 1268.9,80.7 C1267,80.2 1266.2,83.1 1268.1,83.6 C1272.1,84.7 1276.6,83.5 1278.6,79.6 C1280.4,76.1 1279,71.5 1275.2,69.9 C1267.4,66.6 1261,79.6 1268.4,83.7 C1270,84.6 1271.6,82 1269.9,81.1 L1269.9,81.1 Z M1239.3,54.3 C1239.4,52.6 1239.5,50.9 1240,49.3 C1240.4,48 1241.4,44.9 1242.9,44.3 C1245.6,43.3 1246.6,52.8 1246.8,54.6 C1247,56.5 1250,56.5 1249.8,54.6 C1249.5,51.1 1248.7,40.1 1243.1,40.9 C1240.7,41.2 1239,43.9 1238.1,45.9 C1236.9,48.5 1236.5,51.4 1236.4,54.2 C1236.3,56.2 1239.3,56.2 1239.3,54.3 L1239.3,54.3 Z M1256.1,520.8 L1256.1,556.9 C1256.1,558.8 1259.1,558.8 1259.1,556.9 L1259.1,520.8 C1259.1,518.9 1256.1,518.9 1256.1,520.8 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M1219.8,561.3 L1301.5,561.3 C1303.4,561.3 1303.4,558.3 1301.5,558.3 L1219.8,558.3 C1217.9,558.3 1217.9,561.3 1219.8,561.3 Z" id="Path" fill="#E8E8E8"></path>
<path d="M1231.3,562.2 L1231.3,579.2 C1231.3,581.1 1234.3,581.1 1234.3,579.2 L1234.3,562.2 C1234.3,560.3 1231.3,560.3 1231.3,562.2 Z M1275,563.1 L1275,583.3 C1275,585.2 1278,585.2 1278,583.3 L1278,563.1 C1278,561.1 1275,561.1 1275,563.1 Z" id="Shape" fill="#E8E8E8"></path>
<path d="M1253.8,587.2 L1310.5,587.2 C1312.4,587.2 1312.4,584.2 1310.5,584.2 L1253.8,584.2 C1251.9,584.2 1251.9,587.2 1253.8,587.2 Z" id="Path" fill="#E8E8E8"></path>
<path d="M561.9,879.6 C593.4,858.3 609.2,847.6 613.3,846.3 C623.3,843.1 655.7,832.8 684,850.1 C704.3,862.5 723,889.4 715.2,907.4 C709.6,920.2 692.5,924.2 677,927.9 C654.1,933.3 634.5,930.3 623.5,927.7 C619.2,931.9 612.3,937.5 602.6,941.2 C586.5,947.4 567.9,946.3 567,942.6 C566.6,940.7 570.6,937 590,929.4 C587.7,926.9 584.3,923.9 579.5,921.8 C565.3,915.3 551.1,921.6 548.4,922.9 C562.3,931 565.3,935.2 564.6,937.5 C562.8,943.3 534.5,945.2 526.9,931.9 C526.1,930.6 523.9,926.1 525.7,917.6 C529.3,902 542.3,892.9 561.9,879.6 L561.9,879.6 Z" id="Path" fill="#161616"></path>
<path d="M699.1,901.8 C702.3,895.2 716.7,896.8 722.3,897.4 C729.5,898.2 735.9,898.9 741.7,904 C746.1,907.8 752.5,916.1 750.2,922.8 C748.1,929.2 740.2,928.7 724.9,936.2 C722.3,937.5 697.3,949.8 699,957.9 C699.7,961.2 704.2,961.1 718.5,967.2 C730.9,972.4 738.2,975.6 744.3,982.6 C747.3,986.1 753.3,993 751.7,1000 C748.7,1012.9 721.9,1015.1 721.2,1013.1 C720.6,1011.4 739.4,1006.7 739.6,997.9 C739.8,991.2 729.3,985.8 722.7,982.3 C703.3,972.2 690.2,975.8 685.1,966.1 C682.2,960.6 683.8,954.7 684.1,953.6 C685.6,948.2 689.8,943.6 710.3,933.3 C729,923.9 737.3,921.7 737.2,917.5 C737.1,913.6 729.9,910.4 725.5,909.3 C713.1,906 704,913.8 699.8,909.4 C698,907.4 698.1,904 699.1,901.8 L699.1,901.8 Z M528.3,853.4 L547.2,867.5 C556.2,866.6 565.1,865.8 574.1,864.9 C579.7,859.5 585.3,854 590.9,848.6 C591.3,852 592.1,859.7 592.4,863.4 C595.9,896.7 596.2,899.6 594.1,903.4 C587.2,915.7 563.9,920.7 550.5,912.1 C544,907.9 541.5,901.6 536.8,889.5 C531.1,874.9 529.1,862.1 528.3,853.4 L528.3,853.4 Z" id="Shape" fill="#161616"></path>
<path d="M553.7,888 C552.2,891.1 548.9,893 545.5,892.4 C544.6,892.2 544.2,893.7 545.1,893.8 C549.2,894.5 553.3,892.5 555,888.7 C555.4,887.9 554.2,887.1 553.7,888 L553.7,888 Z M567.6,887 C570.9,890.2 575.3,891.6 579.8,890.9 C580.8,890.8 580.3,889.3 579.4,889.5 C575.4,890.1 571.5,888.8 568.6,886 C567.9,885.3 566.9,886.3 567.6,887 L567.6,887 Z M562.3,896.5 C562,896.5 561.8,896.4 561.5,896.4 C561.6,896.3 561.6,896.1 561.7,896 C561.9,896.2 562.2,896.4 562.4,896.6 C562.4,896.4 562.3,896.3 562.3,896.1 C562,895.2 560.6,895.6 560.9,896.5 C561.4,898.7 562.2,902.1 559.5,903.2 C558.6,903.6 559,905 559.9,904.6 C563.5,903.1 563.1,899.2 562.4,896 C561.9,896.1 561.4,896.3 561,896.4 C561,896.6 561.1,896.7 561.1,896.9 C561.2,897.2 561.5,897.5 561.8,897.5 C564.4,897.3 562.3,893.7 561.1,895.8 C560.6,896.5 561.8,897.3 562.3,896.5 L562.3,896.5 Z" id="Shape" fill="#FFFFFF"></path>
<path d="M561.3,897.2 C561.8,898.9 561.9,900.8 563,902.3 C563.9,903.5 565.3,904.1 566.8,903.8 C567.7,903.6 567.3,902.2 566.4,902.4 C563.6,903 563.2,898.6 562.7,896.8 C562.5,895.9 561.1,896.3 561.3,897.2 Z M556.5,898.6 C553.6,897.3 550.6,896.7 547.4,896.9 C546.4,897 546.4,898.5 547.4,898.4 C550.3,898.2 553.1,898.7 555.7,899.9 C556.6,900.3 557.4,899 556.5,898.6 L556.5,898.6 Z M553.9,900.6 C551.4,900.8 549.2,901.8 547.5,903.5 C546.8,904.2 547.9,905.2 548.6,904.6 C550.1,903.2 551.9,902.3 554,902.1 C554.8,902 554.8,900.5 553.9,900.6 Z M568.2,897.9 C571.1,896.8 574,896.4 577.1,896.7 C578.1,896.8 578.1,895.3 577.1,895.2 C573.9,894.9 570.8,895.4 567.8,896.5 C566.9,896.8 567.2,898.3 568.2,897.9 L568.2,897.9 Z M570.2,900.6 C572.4,900.3 574.5,900.5 576.6,901.3 C577.5,901.6 577.9,900.2 577,899.9 C574.8,899.1 572.5,898.9 570.2,899.2 C569.2,899.2 569.2,900.8 570.2,900.6 Z M546.6,883.6 C548.1,882.7 549.9,882.7 551.4,883.6 C552.2,884.1 553,882.8 552.2,882.3 C550.2,881.2 547.9,881.2 545.9,882.3 C545,882.8 545.8,884.1 546.6,883.6 Z M567.6,881.6 C569.1,880.8 570.8,880.6 572.6,880.8 C573.5,880.9 574,879.5 573,879.4 C570.9,879.1 568.8,879.4 566.9,880.4 C565.9,880.7 566.7,882 567.6,881.6 L567.6,881.6 Z" id="Shape" fill="#FFFFFF"></path>
<path d="M543.7,850.2 C546.8,848.9 549.9,847.6 552.9,846.2 C552.3,845.8 551.8,845.4 551.2,844.9 C550,848.7 548.2,852.1 545.8,855.3 C545.2,856.1 546.2,857.3 547.1,857 C550.5,855.7 553.9,854.5 557.3,853.2 C558.6,852.7 558.1,850.5 556.7,851 C553.3,852.3 549.9,853.5 546.5,854.8 C546.9,855.4 547.3,855.9 547.8,856.5 C550.4,853.2 552.2,849.6 553.5,845.6 C553.8,844.6 552.7,844 551.8,844.3 C548.7,845.6 545.6,846.9 542.6,848.3 C541.2,848.9 542.4,850.8 543.7,850.2 L543.7,850.2 Z M548.7,832 C550.8,830.8 552.9,830 555.2,829.5 C554.8,828.9 554.4,828.4 553.9,827.8 C553,829.8 551.9,831.8 550.6,833.6 C550.1,834.4 550.8,835.2 551.6,835.3 C554.3,835.5 556.8,834.8 558.9,833.2 C560,832.3 558.9,830.4 557.8,831.3 C556,832.7 554,833.3 551.7,833.1 C552,833.7 552.3,834.2 552.7,834.8 C554,832.9 555.1,831 556,829 C556.4,828.1 555.7,827.1 554.7,827.3 C552.2,827.8 549.8,828.7 547.6,830 C546.3,830.8 547.4,832.7 548.7,832 Z M565.2,856.2 C561.9,852.9 567.6,851 568.2,848.1 C568.8,844.7 564.8,841.5 569.3,838.9 C570.6,838.2 569.4,836.2 568.2,837 C566.6,837.9 565.3,839.3 564.9,841.2 C564.3,844.4 567.1,846.3 564.7,849.2 C563.6,850.6 562.3,851 561.9,852.9 C561.5,854.8 562.3,856.4 563.6,857.8 C564.7,858.8 566.3,857.2 565.2,856.2 L565.2,856.2 Z" id="Shape" fill="#161616"></path>
<path d="M841.3,570.7 C590.6,588.8 339.9,606.8 89.3,624.9 C82.5,443.1 75.7,261.3 69,79.5 L824.4,69.3 C830,236.4 835.6,403.5 841.3,570.7 Z" id="Path" stroke="#161616" stroke-width="3.5" fill="#FFFFFF"></path>
<path d="M282,168 L427.9,168 C429.8,168 429.8,165 427.9,165 L282,165 C280.1,165 280.1,168 282,168 Z M336.6,180.3 L486.9,180.3 C488.8,180.3 488.8,177.3 486.9,177.3 L336.6,177.3 C334.6,177.3 334.6,180.3 336.6,180.3 Z M99.4,473.7 C101.2,515.5 103,557.4 104.8,599.2 C104.9,601.1 107.9,601.1 107.8,599.2 C106,557.4 104.2,515.5 102.4,473.7 C102.3,471.8 99.3,471.8 99.4,473.7 Z M319.7,449.3 L332.7,449.3 C334.6,449.3 334.6,446.3 332.7,446.3 L319.7,446.3 C317.8,446.3 317.8,449.3 319.7,449.3 Z M344,449.3 L377.2,449.3 C379.1,449.3 379.1,446.3 377.2,446.3 L344,446.3 C342.1,446.3 342.1,449.3 344,449.3 Z M402.3,447.7 L442,447.7 C443.9,447.7 443.9,444.7 442,444.7 L402.3,444.7 C400.4,444.7 400.4,447.7 402.3,447.7 Z M337.6,470.3 L386.2,470.3 C388.1,470.3 388.1,467.3 386.2,467.3 L337.6,467.3 C335.6,467.3 335.6,470.3 337.6,470.3 Z M361,459 L417.7,459 C419.6,459 419.6,456 417.7,456 L361,456 C359.1,456 359.1,459 361,459 Z M461.4,565.9 L556.9,565.9 C558.8,565.9 558.8,562.9 556.9,562.9 L461.4,562.9 C459.5,562.9 459.5,565.9 461.4,565.9 Z M539.9,574 L590.1,574 C592,574 592,571 590.1,571 L539.9,571 C538,571 538,574 539.9,574 Z M583.6,561.8 L633,561.8 C634.9,561.8 634.9,558.8 633,558.8 L583.6,558.8 C581.7,558.8 581.7,561.8 583.6,561.8 Z M667.8,290.7 L759.3,290.7 C761.2,290.7 761.2,287.7 759.3,287.7 L667.8,287.7 C665.9,287.7 665.9,290.7 667.8,290.7 Z M639.5,295.5 L668.6,295.5 C670.5,295.5 670.5,292.5 668.6,292.5 L639.5,292.5 C637.5,292.5 637.5,295.5 639.5,295.5 Z M645.1,303.6 L743,303.6 C744.9,303.6 744.9,300.6 743,300.6 L645.1,300.6 C643.2,300.6 643.2,303.6 645.1,303.6 Z M765.8,296.3 L784.4,296.3 C786.3,296.3 786.3,293.3 784.4,293.3 L765.8,293.3 C763.8,293.3 763.8,296.3 765.8,296.3 Z M741.5,418.5 L769,418.5 C770.9,418.5 770.9,415.5 769,415.5 L741.5,415.5 C739.5,415.5 739.5,418.5 741.5,418.5 Z M723.7,426.6 L753.6,426.6 C755.5,426.6 755.5,423.6 753.6,423.6 L723.7,423.6 C721.7,423.6 721.7,426.6 723.7,426.6 Z M738.2,434.7 L797.3,434.7 C799.2,434.7 799.2,431.7 797.3,431.7 L738.2,431.7 C736.3,431.7 736.3,434.7 738.2,434.7 Z M775.5,425 L793.3,425 C795.2,425 795.2,422 793.3,422 L775.5,422 C773.5,422 773.5,425 775.5,425 Z M363.6,300.3 L405.5,300.3 C407.4,300.3 407.4,297.3 405.5,297.3 L363.6,297.3 C361.7,297.3 361.7,300.3 363.6,300.3 Z M394.1,308.9 L456,308.9 C457.9,308.9 457.9,305.9 456,305.9 L394.1,305.9 C392.2,305.9 392.1,308.9 394.1,308.9 Z M448.4,297.4 L483.6,297.4 C485.5,297.4 485.5,294.4 483.6,294.4 L448.4,294.4 C446.5,294.4 446.5,297.4 448.4,297.4 Z M90.5,137.8 L97.1,365.6 C97.7,387.2 98.3,408.7 99,430.3 C99.1,432.2 102.1,432.2 102,430.3 L95.4,202.5 C94.8,180.9 94.2,159.4 93.5,137.8 C93.5,135.9 90.5,135.9 90.5,137.8 Z M817.4,385.9 L821.9,536.4 C822,538.3 825,538.3 824.9,536.4 L820.4,385.9 C820.4,384 817.4,384 817.4,385.9 L817.4,385.9 Z" id="Shape" fill="#161616"></path>
<path d="M610.3,362.9 C610.9,369 611.5,375.2 612,381.3 C617.8,379.8 623.5,378.2 629.3,376.7 C628.5,370.6 627.8,364.4 627,358.3 C621.4,359.8 615.9,361.4 610.3,362.9 Z M606.8,409.6 C612.8,408.8 618.7,408.1 624.7,407.3 C625.5,414.6 626.2,421.9 627,429.2 C621.6,429.4 616.2,429.6 610.9,429.8 C609.5,423 608.2,416.3 606.8,409.6 L606.8,409.6 Z M628.7,453.9 C630.6,460.2 632.5,466.6 634.5,472.9 C639.9,470.4 645.3,467.9 650.6,465.4 C648.9,459.8 647.1,454.3 645.4,448.7 C639.9,450.5 634.3,452.2 628.7,453.9 L628.7,453.9 Z" id="Shape" fill="#E5261F"></path>
<path d="M233.4,513.5 C234.7,532.9 236,552.3 237.3,571.6 C271.3,569.4 305.3,567.3 339.3,565.1 C339.9,547.7 340.6,530.2 341.2,512.8 C305.3,513.1 269.3,513.3 233.4,513.5 L233.4,513.5 Z" id="Path" fill="#E5261F"></path>
<ellipse id="Oval" fill="#E5261F" cx="656.1" cy="112.9" rx="7.1" ry="5.9"></ellipse>
<ellipse id="Oval" fill="#EC615B" cx="173.6" cy="159.1" rx="5.9" ry="3.9"></ellipse>
<ellipse id="Oval" fill="#EC615B" cx="267.5" cy="270.7" rx="4.6" ry="5.4"></ellipse>
<path d="M225.3,141.4 C227.1,141.1 230.6,157.8 239.2,188.1 C250.5,228 261.7,260.2 269.8,282.2 C257.5,289.8 230,304.3 192.5,304.8 C166,305.1 145.1,298.3 132.7,293.1 C157,295.8 176.6,295.1 190.3,293.8 C212,291.8 208.2,289.5 224.6,288.7 C231.4,288.4 240.3,288.4 249.4,282.9 C252.7,280.9 255.1,278.7 256.7,277.1 C250.3,263.9 242.1,244.5 235.5,220.2 C225,180.7 222.7,141.9 225.3,141.4 L225.3,141.4 Z" id="Path" fill="#6D6C6C" opacity="0.21"></path>
<path d="M319,249.9 C320.6,262.6 323.5,276.8 328.3,292 C342,335.2 365.1,366 382.5,385 C372.1,392.7 359.2,400.7 343.7,407.4 C296.7,427.7 252.8,424.7 229.3,421.1 L226.6,405.2 C236.6,405.5 247.2,405.3 258.3,404.7 C297.9,402.2 331.9,393.3 359,383.4 C350.4,368.8 344.2,356.2 339.9,346.7 C329.5,324 321.8,306.9 319.1,283.8 C317.4,269.7 318.1,257.8 319,249.9 L319,249.9 Z" id="Path" fill="#6D6C6C" opacity="0.25"></path>
<path d="M636.9,316.1 C637.9,338.9 640.3,357.8 642.4,371.4 C647.3,402.6 650.9,424.2 663.7,448.5 C671.7,463.6 680.7,474.7 687.2,481.9 C675.9,491.6 660.7,502.6 641.2,511.4 C592.2,533.7 546.2,529.2 524.7,525.6 C523.6,520.7 522.5,515.8 521.4,510.8 C524.1,511 528.3,511.2 533.4,511.3 C550.4,511.7 585.8,512.3 626.4,498.7 C637.8,494.9 653.8,488.5 671.8,477.9 C664.7,468.4 657.7,457.1 651.6,444 C627.5,392.3 632.3,342.1 636.9,316.1 L636.9,316.1 Z" id="Path" fill="#6D6C6C" opacity="0.14"></path>
<path d="M713.5,91.8 C715.5,101.1 718.4,115.3 721.3,133 C726.7,167.2 726.3,179.6 732.6,199.8 C735.9,210.3 741.8,225.2 752.9,242.2 C743.6,249.8 732,257.7 717.7,264.3 C670.9,286 626.1,279.9 605.5,275.6 C605.7,271.6 605.9,267.6 606.1,263.7 C608.7,264.4 612.6,265.3 617.4,266.1 C623.7,267.1 647,270.5 690.8,259.5 C702.9,256.5 719.2,251.7 737.9,244 C734.3,237.6 729,227.6 724.2,214.8 C710.2,177.7 710.3,145.5 710.5,128.9 C710.6,119.8 711.2,107.1 713.5,91.8 L713.5,91.8 Z" id="Path" fill="#6D6C6C" opacity="0.18"></path>
<g id="Group" transform="translate(111.000000, 89.000000)" fill="#161616">
<path d="M4.7,46.7 C-5.2,99.1 4.8,152.1 14.8,203.7 C15.2,205.6 18.1,204.8 17.7,202.9 C7.8,151.9 -2.1,99.4 7.6,47.5 C7.9,45.7 5,44.8 4.7,46.7 Z" id="Path"></path>
<path d="M7.5,46.3 C21.8,55.9 39.1,57.6 56,56.4 C75.3,55 94.4,50.9 113.5,47.7 C115.4,47.4 114.6,44.5 112.7,44.8 C94.4,47.8 76.1,51.7 57.6,53.2 C40.7,54.6 23.4,53.3 9,43.6 C7.4,42.6 5.9,45.2 7.5,46.3 L7.5,46.3 Z M111.5,49.8 C114.3,97.6 121.5,146.4 145.7,188.4 C146.7,190.1 149.3,188.6 148.3,186.9 C124.4,145.3 117.3,97 114.5,49.8 C114.4,47.9 111.4,47.9 111.5,49.8 Z" id="Shape"></path>
<path d="M17.3,204.5 C40,211.1 64.4,207.1 87.5,205.2 C108,203.5 130,202.7 147.6,190.7 C149.2,189.6 147.7,187 146.1,188.1 C128.4,200.2 106.2,200.6 85.6,202.3 C63.4,204.1 40,207.8 18.1,201.5 C16.2,201.1 15.4,204 17.3,204.5 L17.3,204.5 Z M55.7,70.7 C53.7,69.8 55.9,67.9 57.1,67.6 C58.6,67.2 61.5,67 62.2,68.7 C62.7,70 61.9,71.7 60.7,72.2 C58.8,73.1 56.7,72 55.4,70.7 C54,69.3 51.9,71.4 53.3,72.8 C55.8,75.3 59.9,76.6 63,74.3 C65.5,72.5 66.4,68.5 64.3,66.1 C61.9,63.4 56.8,63.7 54.1,65.7 C51.7,67.5 51.2,71.8 54.3,73.2 C56,74.1 57.5,71.5 55.7,70.7 L55.7,70.7 Z" id="Shape"></path>
<path d="M95.8,204.9 C88.6,241.4 96.3,278.3 104.1,314.1 C104.5,316 107.4,315.2 107,313.3 C99.3,278.1 91.7,241.7 98.7,205.7 C99.1,203.8 96.2,203 95.8,204.9 L95.8,204.9 Z M137.1,166.6 C160.2,162.2 183.6,160.6 207,161.5 L205.5,160 C200.8,208.2 221.4,254.1 246.4,294 C247.4,295.6 250,294.1 249,292.5 C224.3,253 203.8,207.7 208.5,160 C208.6,159.2 207.7,158.5 207,158.5 C183.3,157.6 159.6,159.3 136.3,163.7 C134.4,164.1 135.2,167 137.1,166.6 L137.1,166.6 Z" id="Shape"></path>
<path d="M105.7,316.2 C154.3,321.9 203.6,314.6 248.6,295.4 C250.4,294.6 248.8,292.1 247.1,292.8 C202.7,311.8 153.7,318.8 105.7,313.2 C103.8,313 103.8,316 105.7,316.2 L105.7,316.2 Z M155.9,178.9 C155.9,178.8 156.2,178.3 156.2,178.1 C156.3,177.7 156.6,177.3 156.9,177 C157.5,176.5 158.2,176.1 159,176 C160.5,175.8 161.9,176.6 162.3,178.1 C162.6,179.3 162.1,180.9 160.7,181.1 C159.4,181.3 158.2,180.4 158,179.1 C157.7,177.2 154.8,178 155.1,179.9 C155.6,183.4 160.1,185.1 163,183.4 C166.2,181.5 166,176.6 163.3,174.3 C160.3,171.8 155.3,173.1 153.6,176.5 C152.8,178.2 152.8,180.5 154.7,181.5 C156.2,182.3 158.4,181.6 158.8,179.7 C159.1,177.8 156.2,177 155.9,178.9 L155.9,178.9 Z M14.6,101.1 C41.2,104.8 67.6,99.3 93.1,92 C95,91.5 94.2,88.6 92.3,89.1 C67.3,96.2 41.4,101.8 15.4,98.2 C13.5,97.9 12.7,100.8 14.6,101.1 L14.6,101.1 Z M19.6,120.7 C33.4,122.2 47.2,120.8 60.5,116.6 C62.3,116 61.6,113.1 59.7,113.7 C46.7,117.8 33.2,119.1 19.6,117.7 C17.7,117.5 17.7,120.5 19.6,120.7 L19.6,120.7 Z M19.6,144.9 C46,148 72.6,146.1 98.2,139.4 C100.1,138.9 99.3,136 97.4,136.5 C72,143.2 45.7,145 19.6,141.9 C17.7,141.6 17.7,144.6 19.6,144.9 Z M118.4,298.4 C144.9,299.6 171.4,296.4 196.8,288.8 C198.6,288.3 197.9,285.4 196,285.9 C170.8,293.4 144.7,296.6 118.4,295.4 C116.4,295.3 116.4,298.3 118.4,298.4 Z M123.5,275.5 C135.3,275.1 147.1,274.2 158.9,272.9 C160.8,272.7 160.8,269.7 158.9,269.9 C147.1,271.2 135.4,272.1 123.5,272.5 C121.6,272.6 121.6,275.6 123.5,275.5 Z M133.1,234.3 C140.9,235.3 149,233.3 156.7,232.2 C165.2,230.9 173.6,229.7 182.1,228.4 C184,228.1 183.2,225.2 181.3,225.5 C173.5,226.7 165.6,227.9 157.8,229 C149.7,230.2 141.3,232.4 133.1,231.3 C131.2,231 131.2,234 133.1,234.3 Z M486.5,10.1 C475.6,63.6 474.5,118.6 483.2,172.5 C483.5,174.4 486.4,173.6 486.1,171.7 C477.5,118.4 478.7,63.8 489.4,10.9 C489.8,9 486.9,8.2 486.5,10.1 Z" id="Shape"></path>
<path d="M489.9,10.8 C526.2,2.5 563.7,0.8 600.7,5.8 C602.6,6.1 603.4,3.2 601.5,2.9 C564,-2.2 526,-0.5 489.1,7.9 C487.3,8.4 488.1,11.3 489.9,10.8 L489.9,10.8 Z" id="Path"></path>
<path d="M599.8,3.1 C598.7,54.6 599.4,109 625.5,155.1 C626.5,156.8 629,155.3 628.1,153.6 C602.3,108 601.7,54.1 602.8,3.1 C602.9,1.2 599.9,1.2 599.8,3.1 L599.8,3.1 Z" id="Path"></path>
<path d="M485.5,174.1 C496.7,177.5 508.7,177.7 520.3,177.8 C532.8,177.9 545.3,177.1 557.8,175.4 C581.7,172.2 605,165.7 627.3,156.3 C629.1,155.6 627.5,153 625.8,153.7 C603.5,163.1 580,169.5 556,172.6 C544.8,174 533.5,174.8 522.2,174.7 C510.3,174.7 497.8,174.6 486.4,171.1 C484.4,170.7 483.7,173.6 485.5,174.1 L485.5,174.1 Z M546.7,14 C543.3,15.2 541.8,19.1 543,22.4 C544.4,26.1 548.7,27 551.9,24.8 C555,22.6 556,18.2 553,15.4 C550.4,13 545.9,12.9 543.5,15.5 C542.2,16.9 544.3,19 545.6,17.6 C548.6,14.4 554.5,18.9 550.4,22.1 C548.8,23.3 546.5,23.3 545.8,21.2 C545.3,19.6 545.8,17.4 547.5,16.8 C549.3,16.2 548.5,13.3 546.7,14 L546.7,14 Z M488,56.6 C515.3,57.3 542.5,56.8 569.7,55 C571.6,54.9 571.6,51.9 569.7,52 C542.5,53.8 515.2,54.4 488,53.6 C486,53.6 486,56.6 488,56.6 Z M490.7,71.8 C500.9,72.2 511.1,72.6 521.2,73 C523.1,73.1 523.1,70.1 521.2,70 C511,69.6 500.8,69.2 490.7,68.8 C488.7,68.7 488.7,71.7 490.7,71.8 Z M487.9,93 C513.6,94.4 539.6,95.6 564.9,90 C566.8,89.6 566,86.7 564.1,87.1 C539,92.6 513.3,91.4 487.9,90 C486,89.9 486,92.9 487.9,93 Z M115.1,418.1 C112.8,438.1 112,458.2 112.7,478.3 C112.8,480.2 115.8,480.2 115.7,478.3 C115,458.2 115.8,438.1 118.1,418.1 C118.3,416.2 115.3,416.2 115.1,418.1 Z" id="Shape"></path>
<path d="M116.1,419.3 C151.7,419.3 187.4,418.8 223,417.7 C224.9,417.6 224.9,414.6 223,414.7 C187.4,415.8 151.7,416.3 116.1,416.3 C114.2,416.3 114.2,419.3 116.1,419.3 Z" id="Path"></path>
<path d="M222.7,416.3 L223.6,468.4 C223.6,470.3 226.6,470.3 226.6,468.4 L225.7,416.3 C225.7,414.4 222.6,414.4 222.7,416.3 Z" id="Path"></path>
<path d="M112.4,476.1 C112.6,482.6 123.9,479.7 127.6,479.5 C138.2,478.8 148.8,478.1 159.3,477.3 C180.8,475.8 202.3,474.4 223.8,472.9 C225.7,472.8 225.7,469.8 223.8,469.9 C205.5,471.1 187.3,472.4 169,473.6 L142.9,475.4 C140.3,475.6 115.4,478 115.3,476.1 C115.4,474.2 112.4,474.2 112.4,476.1 L112.4,476.1 Z M124.2,432.8 C148.2,431.7 172.2,432.6 196,435.6 C197.9,435.8 197.9,432.8 196,432.6 C172.2,429.6 148.2,428.7 124.2,429.8 C122.2,429.9 122.2,432.9 124.2,432.8 Z M125.1,448 C138.5,447 152,445.9 165.4,444.9 C167.3,444.8 167.3,441.8 165.4,441.9 C152,442.9 138.5,444 125.1,445 C123.2,445.1 123.2,448.1 125.1,448 Z M129.6,463.3 C148.9,460.8 169.9,455.7 189.3,459.2 C191.2,459.5 192,456.7 190.1,456.3 C170.3,452.7 149.3,457.7 129.6,460.3 C127.8,460.6 127.7,463.6 129.6,463.3 Z M389.7,247.9 C373.8,304.5 375.8,365.1 395.3,420.6 C395.9,422.4 398.8,421.6 398.2,419.8 C378.9,364.8 376.9,304.8 392.6,248.7 C393.1,246.8 390.2,246 389.7,247.9 L389.7,247.9 Z" id="Shape"></path>
<path d="M391.7,248.9 C436.2,248.7 480.5,242.9 523.6,231.6 C525.5,231.1 524.7,228.2 522.8,228.7 C480,239.9 436,245.7 391.7,245.9 C389.7,245.9 389.7,248.9 391.7,248.9 Z" id="Path"></path>
<path d="M522.8,229.8 C521,257.6 522.2,285.6 527.2,313.1 C529.7,327 532.7,340.9 538.2,353.9 C543.7,366.8 551.3,378.5 560.2,389.2 C561.4,390.7 563.6,388.6 562.3,387.1 C553.2,376.2 545.5,364.1 540.1,350.9 C535,338.3 532.2,324.8 529.9,311.5 C525.1,284.6 524,257.1 525.7,229.8 C525.9,227.9 522.9,227.9 522.8,229.8 L522.8,229.8 Z" id="Path"></path>
<path d="M395.7,422.2 C452.3,426.2 511.4,419.8 561,390.6 C562.7,389.6 561.2,387 559.5,388 C510.2,417 451.7,423.1 395.7,419.2 C393.8,419 393.8,422 395.7,422.2 Z M455.9,257.9 C454.2,255 457.6,251.4 460.5,253.7 C463.6,256.2 460.3,260.2 457,258.9 C455.2,258.2 454.4,261.1 456.2,261.8 C458.9,262.9 462.2,261.7 463.8,259.3 C465.6,256.6 464.8,253.2 462.3,251.3 C456.9,247 450.1,253.7 453.3,259.4 C454.3,261.1 456.9,259.6 455.9,257.9 L455.9,257.9 Z M392.7,292.4 C422.6,291.9 452.5,289.8 482.3,286.2 C484.2,286 484.2,283 482.3,283.2 C452.6,286.9 422.7,288.9 392.7,289.4 C390.8,289.5 390.8,292.5 392.7,292.4 Z M493,272.3 C493.9,276.9 494.8,281.6 495.7,286.2 C496.1,288.1 499,287.3 498.6,285.4 C497.7,280.8 496.8,276.1 495.9,271.5 C495.6,269.6 492.7,270.4 493,272.3 Z" id="Shape"></path>
<path d="M495,271.9 C500.5,271.1 506,270.3 511.6,269.4 C513.5,269.1 512.7,266.2 510.8,266.5 C505.3,267.3 499.8,268.1 494.2,269 C492.3,269.3 493.1,272.2 495,271.9 Z" id="Path"></path>
<path d="M510.7,268.5 C511.5,272.8 512.2,277.1 513,281.3 C513.3,283.2 516.2,282.4 515.9,280.5 C515.1,276.2 514.4,271.9 513.6,267.7 C513.3,265.9 510.4,266.7 510.7,268.5 Z" id="Path"></path>
<path d="M498.2,288.5 C504.1,287.3 509.7,285.7 515.3,283.5 C517.1,282.8 516.3,279.9 514.5,280.6 C508.9,282.7 503.2,284.4 497.4,285.6 C495.5,286 496.3,288.9 498.2,288.5 Z M498.7,275.3 C499.8,277.8 501.3,279.8 503.5,281.5 C504.3,282.1 505.8,282.1 506,280.8 C506.8,275.4 508.7,270.6 511.9,266.1 C513,264.5 510.4,263 509.3,264.6 C506,269.2 503.9,274.4 503.1,280 C503.9,279.8 504.8,279.6 505.6,279.3 C503.7,277.8 502.3,276 501.3,273.7 C500.5,272 497.9,273.5 498.7,275.3 L498.7,275.3 Z M499.8,318.2 C498.2,325.4 498.9,332.4 501.8,339.1 C502.6,340.9 505.1,339.3 504.4,337.6 C501.8,331.7 501.3,325.3 502.7,319 C503.1,317.1 500.2,316.3 499.8,318.2 Z" id="Shape"></path>
<path d="M501.8,319.2 C507.8,318.2 513.8,317.3 519.8,316.3 L518,314.5 C517,320.9 517.7,327 520.2,333 C520.9,334.8 523.8,334 523.1,332.2 C520.8,326.8 520,321.1 520.9,315.3 C521.1,314.1 520.3,313.3 519.1,313.5 C513.1,314.4 507.1,315.4 501.1,316.4 C499.1,316.6 499.9,319.5 501.8,319.2 L501.8,319.2 Z" id="Path"></path>
<path d="M503.1,339.2 C509.7,339 516,337.7 522.2,335.5 C524,334.8 523.2,331.9 521.4,332.6 C515.5,334.8 509.4,336 503.1,336.2 C501.2,336.2 501.2,339.2 503.1,339.2 L503.1,339.2 Z M504,325.3 C504.9,327.9 506.4,329.7 508.8,331.1 C509.9,331.7 510.9,330.9 511.1,329.8 C511.7,324.5 513.1,319.4 515.3,314.5 C516.1,312.8 513.5,311.2 512.7,313 C510.3,318.4 508.8,324 508.1,329.8 C508.9,329.4 509.6,328.9 510.4,328.5 C508.7,327.5 507.7,326.3 507,324.4 C506.3,322.7 503.4,323.5 504,325.3 L504,325.3 Z M506,364.6 C506.7,371.3 508.5,377.6 511.5,383.6 C512.3,385.3 514.9,383.8 514.1,382.1 C511.4,376.6 509.7,370.7 509.1,364.6 C508.8,362.7 505.8,362.7 506,364.6 Z" id="Shape"></path>
<path d="M507.4,364.3 C515.1,365 522.3,363.6 529.2,360.2 C528.5,359.9 527.7,359.6 527,359.3 C528.3,365.4 531,370.7 535.2,375.4 C536.5,376.8 538.6,374.7 537.3,373.3 C533.5,369 531.1,364.2 529.9,358.6 C529.7,357.6 528.5,357.3 527.7,357.7 C521.3,360.8 514.5,362 507.4,361.4 C505.5,361.2 505.5,364.2 507.4,364.3 Z" id="Path"></path>
<path d="M514.2,384.7 C522,381.8 529.7,378.7 537.2,375.3 C539,374.5 537.4,371.9 535.7,372.7 C528.4,376 520.9,379 513.4,381.8 C511.6,382.5 512.4,385.4 514.2,384.7 Z M512.6,369.6 C515,371.7 520.5,378.9 523.3,373.6 C524.6,371.2 524.3,367.9 525.1,365.2 C526.3,361.4 528.3,357.9 530.9,354.9 C532.1,353.4 530,351.3 528.8,352.8 C526,356.1 523.8,359.7 522.5,363.9 C521.9,365.8 521.4,367.8 521.1,369.8 C520.7,372.3 520,371.7 518.1,370.5 C516.9,369.7 515.8,368.5 514.7,367.5 C513.3,366.2 511.2,368.3 512.6,369.6 L512.6,369.6 Z M395.4,341.3 C423.4,341 451.3,338.7 478.9,334.3 C480.8,334 480,331.1 478.1,331.4 C450.7,335.7 423.1,338 395.4,338.2 C393.5,338.3 393.5,341.3 395.4,341.3 Z M392.2,300.7 C410.3,301.2 428.3,300.6 446.3,299.1 C448.2,298.9 448.2,295.9 446.3,296.1 C428.3,297.6 410.2,298.1 392.2,297.7 C390.3,297.6 390.3,300.6 392.2,300.7 Z M396.5,347.2 C415.5,348.1 434.5,347.4 453.3,345 C455.2,344.8 455.2,341.8 453.3,342 C434.4,344.3 415.4,345.1 396.5,344.2 C394.6,344.1 394.6,347.1 396.5,347.2 Z M459.7,343.6 C465.1,343.7 470.4,343 475.6,341.3 C477.4,340.7 476.6,337.8 474.8,338.4 C469.9,340 464.9,340.7 459.7,340.6 C457.8,340.6 457.8,343.6 459.7,343.6 L459.7,343.6 Z M406.7,384.8 C429.5,383.4 452.2,381.3 474.8,378.2 C476.7,377.9 476.7,374.9 474.8,375.2 C452.2,378.2 429.5,380.4 406.7,381.8 C404.7,381.9 404.7,384.9 406.7,384.8 Z M409.3,391.8 L431.8,391.8 C433.7,391.8 433.7,388.8 431.8,388.8 L409.3,388.8 C407.4,388.8 407.4,391.8 409.3,391.8 Z M415.8,398.5 C427.5,397.8 439.2,396.7 450.9,395.3 C460.3,394.1 470.4,393.6 478.5,388.1 C480.1,387 478.6,384.4 477,385.5 C468.5,391.3 457.1,391.6 447.2,392.7 C436.8,393.9 426.3,394.8 415.9,395.5 C413.9,395.6 413.8,398.6 415.8,398.5 L415.8,398.5 Z M530,317.7 C548.2,316.8 566.3,314.4 584.2,310.6 C583.6,310.3 583,309.9 582.4,309.6 C590.8,334.6 603.2,357.9 619.1,379 C620.2,380.5 622.9,379 621.7,377.5 C606,356.7 593.7,333.6 585.3,308.9 C585,308.1 584.3,307.7 583.5,307.9 C565.9,311.7 548.1,314 530.1,314.9 C528,314.8 528,317.8 530,317.7 L530,317.7 Z" id="Shape"></path>
<path d="M533.1,402.1 C535.8,405.9 538,409.9 539.9,414.2 C540.1,414.8 541,415.1 541.6,414.9 C556.3,410 570.8,404.6 585,398.5 C592.2,395.4 599.3,392.2 606.4,388.8 C609.8,387.2 613.2,385.5 616.5,383.8 C618.5,382.8 620.8,382.2 621.5,380 C621.7,379.4 621.4,378.6 620.8,378.3 C619.9,377.8 619.4,377.8 618.5,378.3 C617.9,378.6 617.6,379.4 617.8,380 C617.8,380.1 617.9,380.2 617.9,380.3 C618.4,382.2 621.3,381.4 620.8,379.5 C620.8,379.4 620.7,379.3 620.7,379.2 C620.5,379.8 620.2,380.3 620,380.9 L619.3,380.9 C619.1,380.3 618.8,379.8 618.6,379.2 C618,381 611.7,382.9 610,383.8 C607.2,385.2 604.4,386.5 601.5,387.9 C594.8,391.1 588,394.1 581.1,397 C567.9,402.6 554.4,407.6 540.8,412.1 C541.4,412.3 541.9,412.6 542.5,412.8 C540.7,408.5 538.4,404.5 535.7,400.7 C534.6,399 532,400.5 533.1,402.1 L533.1,402.1 Z M550.5,325.5 C550.3,324.2 552.7,323 553.6,323.9 C554.8,325.1 552.8,327.3 551.4,326.8 C549.6,326.1 548.8,329 550.6,329.7 C554.9,331.3 559.1,325.1 555.8,321.8 C554.3,320.3 552,320.4 550.2,321.3 C548.3,322.3 547.3,324.2 547.7,326.3 C547.9,328.2 550.8,327.3 550.5,325.5 Z M107.4,245.5 C118.5,245.7 129.7,245.2 140.7,243.7 C152.2,242.1 163.6,238.8 175.3,239.3 C177.2,239.4 177.2,236.4 175.3,236.3 C164.6,235.9 154.2,238.6 143.7,240.2 C131.7,242.1 119.5,242.8 107.3,242.5 C105.5,242.5 105.5,245.5 107.4,245.5 L107.4,245.5 Z M109,212.4 C126,213.7 143,212.2 159.5,207.9 C161.4,207.4 160.6,204.5 158.7,205 C142.4,209.2 125.8,210.7 109,209.4 C107.1,209.3 107.1,212.3 109,212.4 Z M493.8,128.2 C492.1,139.2 490.7,151.1 497.6,160.7 C498.7,162.3 501.3,160.8 500.2,159.2 C493.8,150.3 495.2,139.2 496.7,129 C497,127.1 494.1,126.3 493.8,128.2 Z" id="Shape"></path>
<path d="M494.7,128.1 C518.5,129 542.3,126.7 565.5,121.2 C564.9,120.9 564.3,120.5 563.7,120.2 C565.8,130.5 569.8,140.1 575.4,148.9 C576.4,150.5 579,149 578,147.4 C572.5,138.8 568.7,129.4 566.6,119.4 C566.4,118.6 565.5,118.2 564.8,118.4 C541.9,123.8 518.4,126.1 494.8,125.2 C492.8,125 492.8,128 494.7,128.1 L494.7,128.1 Z" id="Path"></path>
<path d="M500.1,160.6 C525.9,159.8 551.4,156 576.2,149.2 C578.1,148.7 577.3,145.8 575.4,146.3 C550.8,153.1 525.6,156.9 500.1,157.6 C498.1,157.7 498.1,160.7 500.1,160.6 L500.1,160.6 Z M852.7,859.1 L852.7,892.9 C772.7,924.6 756.4,935.9 757.6,940 C757.9,941 760,944 802,939.1 C843.6,934.2 877.3,927.1 900.7,921.3 C896.6,898.2 892.4,875.1 888.3,852 C876.4,854.4 864.5,856.8 852.7,859.1 L852.7,859.1 Z" id="Shape"></path>
</g>
<path d="M999.6,469.8 C997.3,474.1 996.5,477.6 996.3,478.4 C982,539.2 963.3,575.1 951.1,645.6 C927.8,781.4 947.9,935.7 949.8,950.2 C956.2,953 968.5,957.2 984.2,956.6 C998,956 1008.7,951.9 1014.8,949 C1012.5,904.7 1014.8,850 1030.1,789.7 C1048.8,715.8 1072.5,691.3 1093.8,604.9 C1109.6,540.9 1127.9,466.4 1096.3,444.3 C1072.1,427.1 1015.4,439.7 999.6,469.8 L999.6,469.8 Z" id="Path" fill="#D6D6D6"></path>
<path d="M1054.9,501.7 C1038.9,574.7 1024,652.5 1011.4,734.8 C999.5,812.2 990.6,886.3 984,956.7 C994.1,954.6 1004.1,952.5 1014.2,950.4 C1012.9,919.3 1014.3,892.8 1016.3,872.5 C1018.7,847.3 1024.8,788.6 1049.3,730 C1052.5,722.5 1056.6,713.4 1063.3,696.3 C1074.6,668 1082.8,643.8 1086.5,632.4 C1103.9,578 1112.6,514.9 1115.3,494.1 C1095.1,496.5 1075,499.1 1054.9,501.7 L1054.9,501.7 Z" id="Path" fill="#6D6C6C" opacity="0.2"></path>
<path d="M1087.9,628.8 C1048.7,679.9 1030.4,726.2 1021.2,757.3 C1012.8,785.6 1009.1,810.6 1004.3,843 C997.5,889 994.9,927.8 993.8,955.4 C1000.4,953.8 1006.9,952.1 1013.5,950.5 C1012.4,911.8 1015.1,878.7 1018.4,852.9 C1022.4,822.3 1027,786.8 1043,744.1 C1048.8,728.6 1051.6,724.2 1064.8,690.7 C1075,664.5 1082.8,643 1087.9,628.8 L1087.9,628.8 Z" id="Path" fill="#6D6C6C" opacity="0.19"></path>
<path d="M1179.7,936.6 C1185.3,950.5 1191,964.4 1196.6,978.4 C1149.6,1008.3 1127.4,1025.7 1129.9,1030.8 C1133,1037.1 1173.6,1024.6 1251.7,993.5 C1243.4,966.5 1235.1,939.6 1226.8,912.6 L1179.7,936.6 Z" id="Path" fill="#161616"></path>
<path d="M1141.1,471 C1165.6,493.4 1164.8,524.8 1167.9,576.8 C1167.9,576.8 1175.5,704.7 1201,807.5 C1207.4,833.2 1219,873.1 1240.5,920.9 C1236.9,925.5 1227.1,936.7 1209.9,942.6 C1192.3,948.6 1177.3,945.4 1171.7,943.9 C1141.1,891.7 1119.4,847.2 1105.4,816.4 C1040.5,674.2 1035.3,599.3 1035.3,560.2 C1035.3,520 1036,471.8 1065.9,455.7 C1088.4,443.6 1121.4,453 1141.1,471 Z" id="Path" fill="#D6D6D6"></path>
<path d="M1071.7,486.3 C1082.8,529 1094.8,572.4 1107.6,616.4 C1141,730.6 1177.3,838.5 1215.4,939.7 C1219.1,937.8 1223.6,935.2 1228.2,931.7 C1232.9,928.1 1236.6,924.5 1239.4,921.3 C1234.2,909.2 1227,891.7 1219.4,870.2 C1207.9,837.3 1189.2,776.8 1179.5,696.2 C1170.2,618.8 1165.5,580.1 1165.9,555.7 C1166.2,535.6 1168,494.7 1142,472.7 C1136.6,468.2 1131.3,465.5 1127.6,463.9 C1108.9,471.4 1090.3,478.9 1071.7,486.3 L1071.7,486.3 Z" id="Path" fill="#6D6C6C" opacity="0.15"></path>
<path d="M1167.1,581.7 C1162.5,628.2 1161,690.5 1172.2,762.5 C1183.5,834.9 1204,894 1222.5,937 C1228.2,932.3 1233.9,927.6 1239.6,922.8 C1232.8,906.7 1223.9,884.3 1215,856.9 C1197.9,804.2 1190.5,763.1 1184.1,726.2 C1177.6,688.4 1170.8,639.5 1167.1,581.7 L1167.1,581.7 Z" id="Path" fill="#6D6C6C" opacity="0.22"></path>
<path d="M698.9,105.7 C694.9,107.7 689.4,111.2 685.1,117.2 C682.8,120.3 680,124.4 679.6,130.2 C679.5,132.5 679.2,137.5 682.4,140.8 C683.3,141.8 685.7,143.7 697.5,143.3 C708,142.9 713.3,142.7 716,139.9 C721.2,134.5 719.3,124.3 716,118.2 C710.8,108.5 700.6,106.1 698.9,105.7 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M759.3,130.8 C773.4,146.9 796,156.5 837.5,173.6 C889.8,195.2 916,206 947,209.8 C980.5,213.9 998.4,209.6 1004.6,220.5 C1012.7,234.6 993.7,261 974.1,283.1 C959.5,279.9 944.4,275.9 928.8,270.7 C843.3,242.4 781.5,192.6 740.9,151.2 C735.8,152.3 727.1,153.4 717.2,150.4 C708.7,147.9 696.7,141.5 697.4,136.4 C698.3,130.2 720,129.1 721.3,129 C714.7,126.3 705.2,121.7 694.9,114.2 C691.9,112 674.7,99.3 676.8,95.3 C678.6,91.8 694.2,96.6 708.9,101.1 C722.3,105.2 731.6,108.1 741.8,115.1 C751.6,121.7 757.3,128.5 759.3,130.8 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M690.1,106.8 C692.5,109.5 693,113.1 695.1,115.9 C696.9,118.4 699.5,120.2 702.2,121.7 C710.3,126.2 718.9,129.9 727.2,134 C728.6,134.7 730.4,132.8 729,131.6 C724.7,127.9 720.1,124.6 715.3,121.6 C713.7,120.6 712.1,123.2 713.8,124.2 C718.4,127.1 722.8,130.2 726.9,133.7 L728.7,131.3 C720.8,127.5 712.9,123.8 705.1,119.7 C701.4,117.8 698.1,115.6 696.2,111.8 C694.9,109.2 694.2,106.7 692.2,104.5 C690.9,103.3 688.8,105.4 690.1,106.8 L690.1,106.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M697.9,117.3 C702.5,119.3 706.9,121.9 710.9,125 C712.4,126.2 714.5,124.1 713,122.9 C708.8,119.6 704.3,116.9 699.4,114.7 C697.6,113.9 696.1,116.5 697.9,117.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M686.1,105 C689.9,111.1 694.9,116.1 700.8,120.1 C702.4,121.2 703.9,118.6 702.3,117.5 C696.8,113.8 692.2,109.1 688.7,103.4 C687.7,101.9 685.1,103.4 686.1,105 Z" id="Path" fill="#FFFFFF"></path>
<path d="M690.6,113.2 C692.6,115.9 694.8,118.4 697.3,120.6 C699.1,122.2 707,127.9 702.9,130.8 C702.1,131.3 702.9,132.6 703.7,132.1 C706.5,130.2 705.4,126.8 703.7,124.5 C702.4,122.8 700.6,121.5 698.9,120 C696.3,117.7 694,115.2 691.9,112.5 C691.3,111.6 690,112.4 690.6,113.2 L690.6,113.2 Z" id="Path" fill="#161616"></path>
<path d="M688.5,123.6 C691.5,127.7 697.2,133.5 702.8,131.8 C703.7,131.5 703.3,130.1 702.4,130.4 C697.6,131.9 692.3,126.4 689.8,122.9 C689.2,122.1 687.9,122.8 688.5,123.6 L688.5,123.6 Z M684.1,130.6 C687.4,135.1 692.2,137.7 697.8,138 C698.8,138.1 698.8,136.6 697.8,136.5 C692.8,136.2 688.4,133.8 685.4,129.8 C684.8,129 683.5,129.8 684.1,130.6 L684.1,130.6 Z M680.9,139.6 C685.6,144.5 693.4,144.6 698.1,139.6 C698.8,138.9 697.7,137.8 697,138.5 C692.9,142.9 686.1,142.8 682,138.5 C681.3,137.8 680.2,138.9 680.9,139.6 Z M681.9,104.8 C693,112.1 701,124.4 714.9,126.8 C715.8,127 716.3,125.5 715.3,125.4 C701.6,123.1 693.6,110.8 682.7,103.6 C681.8,102.9 681.1,104.2 681.9,104.8 L681.9,104.8 Z" id="Shape" fill="#161616"></path>
<path d="M680.7,137.5 C677.1,132.6 680.1,122.1 688.8,112.2 C698.6,117.9 708.3,123.7 718.1,129.4 C716.3,129.4 700.5,129.6 699.4,134.5 C699.2,135.3 699.4,136.5 700.9,138.2 C705.9,140.6 714.3,143.8 725.1,144.1 C730.7,144.2 735.6,143.5 739.4,142.6 C759.8,163.2 795.7,194.3 848.5,216.9 C894.9,236.7 936.5,242.4 964,244 C963.1,255.8 962.2,267.5 961.3,279.3 C916,267.3 854.6,244.5 793.6,198.7 C772.8,183.1 755,167 739.8,151.5 C725.8,153.8 717.1,151.4 711.6,148.6 C706.9,146.2 703.9,143.2 697.7,142.7 C693.6,142.4 690.1,143.4 685.6,141.2 C685.1,141 682.2,139.5 680.7,137.5 L680.7,137.5 Z" id="Path" fill="#6D6C6C" opacity="0.2"></path>
<path d="M809.5,208.1 C823.5,215.6 839.7,223.2 858.2,229.7 C898.5,244 935,248.5 962.9,249.5 C962.5,259.7 962.2,270 961.8,280.2 C932.8,273.4 896.4,261.5 857.8,239.9 C839.3,229.6 823.3,218.7 809.5,208.1 L809.5,208.1 Z" id="Path" fill="#6D6C6C" opacity="0.14"></path>
<path d="M967.6,236.6 C961.9,249.5 961.6,260.2 961.1,279.4 C960.7,293.9 961.7,309.5 969.5,350.5 C979,400.1 983.5,408.1 985,434.4 C986.2,455 984.6,471.9 983.1,483.1 C995.7,490 1016.8,499.4 1044.4,501.5 C1093.2,505.2 1129.3,483.7 1141.7,475.5 C1143.2,444.1 1144.7,412.6 1146.3,381.2 C1140.8,354.4 1134.3,333.4 1129.6,319.6 C1114.8,276.1 1101,255.5 1109.8,233.7 C1114.7,221.6 1124.4,214.2 1131.1,210.1 C1126.4,206.5 1077.1,170 1023.3,188.9 C1017.7,190.8 982.3,203.3 967.6,236.6 L967.6,236.6 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1023.1,188.8 C1038.1,212.8 1046.5,234 1051.3,248.8 C1051.3,248.8 1074.8,320.2 1057.6,416 C1053.9,436.4 1047.3,465.4 1034.3,498.6 C1039.3,499.7 1045.3,500.6 1052.1,500.9 C1052.1,500.9 1062.6,501.4 1074.4,499.9 C1088.8,498 1113.5,490.3 1142.6,475.5 L1144.1,375.1 C1136.7,346.8 1129.2,324.1 1123.6,308.2 C1110.1,270.3 1100.6,252.5 1108.4,233.7 C1113.5,221.4 1123.9,213.8 1132,209.4 C1121.4,202.4 1101.8,191.5 1075,187.3 C1052.9,183.9 1034.7,186.3 1023.1,188.8 L1023.1,188.8 Z" id="Path" fill="#6D6C6C" opacity="0.19"></path>
<path d="M1036.8,186.5 C1052.9,206.3 1071.7,235.2 1083.3,273.3 C1116.2,382.1 1062.1,477.5 1049.6,498.4 C1060.1,498.3 1072.4,497.4 1085.8,494.8 C1109.7,490.2 1128.8,482 1142.5,474.7 C1143,443.5 1143.5,412.3 1144,381.2 C1135.5,352.3 1127.5,324.9 1116.6,287.7 C1109.2,262.2 1103.4,241.3 1114.3,224.6 C1119.6,216.5 1127,212 1132.6,209.4 C1100.7,201.7 1068.7,194.1 1036.8,186.5 Z" id="Path" fill="#6D6C6C" opacity="0.11"></path>
<path d="M1029.4,390.8 C1029.1,369.4 1028.9,348.1 1028.6,326.7 C1079.9,324.1 1131.2,321.5 1182.6,318.9 C1184.4,338.7 1186.2,358.5 1188.1,378.3 C1135.2,382.5 1082.3,386.6 1029.4,390.8 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1013.8,383.8 L1013.8,360.4 C1079.7,355.5 1145.6,350.5 1211.5,345.6 C1212,355.2 1212.5,364.9 1213.1,374.5 C1146.7,377.5 1080.2,380.7 1013.8,383.8 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1019.3,348.6 C1020.1,360.1 1020.9,371.5 1021.6,383 C1082.6,378.1 1143.5,373.1 1204.5,368.2 C1205,357.8 1205.5,347.4 1206.1,336.9 C1143.8,340.8 1081.5,344.7 1019.3,348.6 L1019.3,348.6 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1004.4,374.4 C1006.2,420 1008,465.6 1009.9,511.2 C1077.9,503.6 1145.9,496.1 1213.9,488.5 L1220.2,354.1 C1148.2,360.9 1076.3,367.6 1004.4,374.4 L1004.4,374.4 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1016,392.2 C1046.9,388.1 1077.8,385.2 1108.9,383.4 C1110.3,383.3 1110.3,381.1 1108.9,381.1 C1077.8,382.9 1046.8,385.8 1016,389.9 C1014.6,390.1 1014.6,392.4 1016,392.2 Z M1050.5,398.3 C1074.2,395.3 1097.9,392.2 1121.7,389.2 C1123.1,389 1123.1,386.8 1121.7,386.9 C1098,389.9 1074.3,393 1050.5,396 C1049.1,396.3 1049.1,398.5 1050.5,398.3 Z M1164.4,462.3 C1164,468.6 1164,475 1164.6,481.3 C1164.7,482.7 1167,482.7 1166.9,481.3 C1166.3,475 1166.2,468.6 1166.7,462.3 C1166.8,460.9 1164.5,460.9 1164.4,462.3 Z" id="Shape" fill="#161616"></path>
<path d="M1165.4,462.5 C1177.8,462.8 1190.1,462.1 1202.4,460.5 L1201.3,459.4 C1201.1,465.2 1201.3,470.9 1201.7,476.6 C1201.8,478 1204.1,478 1204,476.6 C1203.5,470.9 1203.4,465.1 1203.6,459.4 C1203.6,458.8 1203.1,458.2 1202.5,458.3 C1190.2,459.9 1177.9,460.5 1165.5,460.3 C1163.9,460.2 1163.9,462.4 1165.4,462.5 L1165.4,462.5 Z" id="Path" fill="#161616"></path>
<path d="M1166.3,483.1 C1178.6,483.3 1190.7,482 1202.7,479.3 C1204.1,479 1203.5,476.8 1202.1,477.1 C1190.3,479.7 1178.4,481 1166.3,480.8 C1164.9,480.8 1164.9,483 1166.3,483.1 L1166.3,483.1 Z M1171,469.5 C1178.6,470 1186.1,469.6 1193.7,468.4 C1195.1,468.2 1194.5,466 1193.1,466.2 C1185.8,467.4 1178.4,467.7 1171,467.2 C1169.6,467.1 1169.6,469.4 1171,469.5 L1171,469.5 Z M1175.8,475.8 C1183.7,475.6 1191.3,474.1 1198.8,471.4 C1200.1,470.9 1199.6,468.7 1198.2,469.2 C1191,471.9 1183.5,473.3 1175.8,473.6 C1174.4,473.5 1174.3,475.8 1175.8,475.8 Z" id="Shape" fill="#161616"></path>
<path d="M1036.7,506 C1038.5,463.8 1040.3,421.6 1042,379.3 C1100.4,374.6 1158.9,370 1217.3,365.3 C1216,405.3 1214.6,445.3 1213.3,485.3 C1154.4,492.2 1095.6,499.1 1036.7,506 Z" id="Path" fill="#6D6C6C" opacity="0.2"></path>
<path d="M1195.3,338 C1195.6,349.6 1195,363.4 1192,378.7 C1184.6,416.3 1166.8,443.4 1154.7,458.7 C1162.9,469.6 1171.1,480.5 1179.4,491.4 L1104.1,500.1 C1108.1,454.3 1112.1,408.5 1116.1,362.8 C1114.8,356.8 1113.4,350.8 1112.1,344.8 C1139.8,342.4 1167.6,340.2 1195.3,338 L1195.3,338 Z" id="Path" fill="#6D6C6C" opacity="0.2"></path>
<path d="M1125.7,207.4 C1146.6,204.6 1171.5,252.6 1181.4,287.1 C1192.8,326.8 1187.8,361.1 1183.7,379.2 C1175.7,414.7 1159.1,439.7 1148.7,453.2 C1150.3,458.5 1154,472.9 1147.9,488.7 C1138.9,511.8 1114.5,522.9 1112.6,520.8 C1112,520.1 1113.2,517.2 1122.7,506.3 C1120.7,508.4 1106.3,522.7 1090.1,519.3 C1087.3,518.7 1083.8,518 1081.8,515.2 C1077.1,508.4 1084.9,493 1101.5,475.9 C1083.4,480.4 1078.6,479.2 1077.7,477.2 C1075.4,472.4 1093.9,458.8 1100.6,453.8 C1110.5,446.5 1119.4,441.5 1125.5,438.4 C1142.6,402.9 1141.7,375.2 1140.2,362.2 C1138,343 1130.8,322.1 1129.4,318.1 C1125.4,306.6 1123.5,304 1115.5,283.3 C1102.6,250.1 1102.6,244.4 1103.1,240 C1104.9,226.8 1113.8,209 1125.7,207.4 L1125.7,207.4 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M1082.2,512.4 C1093.3,506.1 1103,498 1111.1,488.2 C1112.3,486.7 1110.2,484.6 1109,486.1 C1101.1,495.7 1091.6,503.7 1080.7,509.9 C1079,510.7 1080.5,513.3 1082.2,512.4 L1082.2,512.4 Z M1092,519.1 C1103,513.4 1112.4,505.5 1120,495.7 C1121.2,494.2 1118.6,492.7 1117.4,494.2 C1110.2,503.6 1101,511.1 1090.5,516.5 C1088.8,517.4 1090.3,520 1092,519.1 Z" id="Shape" fill="#161616"></path>
<path d="M1117.3,212.2 C1097.4,229.5 1178.6,305.4 1164.7,391.6 C1155.2,450.7 1115.8,489.3 1115.8,489.3 C1104.8,500.3 1084.1,513.8 1086.6,518.5 C1088.4,521.9 1100.9,518.8 1105.4,517.4 C1113.9,514.8 1119.8,510.4 1123.1,507.5 C1118.1,513.1 1112.4,520 1113.6,521.4 C1115.3,523.2 1129.5,515.8 1138.4,505.4 C1153.8,487.4 1151.6,462.4 1150.1,452.2 C1153.7,447.5 1158.4,440.9 1163.2,432.5 C1167.6,425 1180.3,401.6 1185.8,369.8 C1195.5,313.5 1175.6,269.1 1167.6,251.7 C1160.4,236.2 1148.2,210.5 1129.7,209.4 C1127.3,209.1 1121.2,208.8 1117.3,212.2 L1117.3,212.2 Z" id="Path" fill="#6D6C6C" opacity="0.17"></path>
<path d="M1184.7,368.2 C1179.3,383.9 1172.9,400.4 1165.3,417.7 C1159.9,430 1154.4,441.5 1148.8,452.4 C1146,461.4 1140.7,474.9 1130.2,488.8 C1119.2,503.4 1107.1,512.3 1099,517.4 C1101.3,517.5 1104.1,517.3 1107.2,516.5 C1115,514.7 1120.2,510.4 1122.8,507.8 C1119.8,511.6 1116.7,515.3 1113.7,519.1 C1116.1,518.7 1119.9,518 1124.1,516.1 C1146.1,506.2 1150.7,479.3 1151,477.5 C1151.8,472.6 1152.3,464.2 1149.3,453.8 C1156.5,445.3 1165.6,432.6 1172.9,415.5 C1181,396.7 1183.7,379.8 1184.7,368.2 Z" id="Path" fill="#6D6C6C" opacity="0.22"></path>
<path d="M944.6,141.6 C928.5,160 939.6,185.7 941.1,189.2 C946.7,202.2 961.2,220.7 979.6,219.2 C993,218 1001.5,206.7 1003.6,203.7 C1018.4,182.4 1013.5,141.7 988.5,131.2 C974.7,125.4 955.7,128.8 944.6,141.6 Z" id="Path" fill="#E5261F"></path>
<path d="M985.2,158 C985.9,165.9 994.2,167.6 999.8,180.6 C1003.8,190 1003.8,199.2 1003.1,205.8 C1009.6,206.4 1021.6,206.7 1035.2,201.5 C1045.9,197.4 1053.4,191.5 1057.9,187.4 C1055.8,182.7 1052.7,175.8 1049,167.6 C1033,132.7 1030.4,129.7 1026.5,128.2 C1010.9,122.3 983.9,143.3 985.2,158 L985.2,158 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M927.6,54.7 C924.2,59.5 922.1,65.4 921.8,90.7 C921.6,112.3 922.8,132 924.8,149.5 L938.3,141.7 C940.3,146.6 943.7,153.3 949.5,159.8 C961,172.7 975,177.1 981.2,178.7 C987.7,177.1 1003.9,172.1 1016.2,156.8 C1024.3,146.6 1026.9,136.5 1027.5,134.2 C1031.2,119.1 1027.6,106.6 1025.7,101.4 C1028.1,100.3 1031.8,98.2 1034.6,94.4 C1040.5,86.4 1042.1,72.1 1034.8,67.3 C1029.4,63.7 1019.8,65.8 1012.6,73.2 C1011,69.5 1008.5,64.4 1004.5,59.1 C1003.5,57.8 996,48 986.8,42.9 C969.1,32.7 939.8,37.5 927.6,54.7 L927.6,54.7 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M920.3,86.1 C916.3,85.4 908.9,83.3 905.4,77.2 C899.4,66.9 908.2,51.2 910.4,47.3 C912.2,44 917,36.1 937.4,21.8 C952.9,10.9 960.7,5.5 969.1,2.9 C998.9,-6 1026.2,9.4 1031.3,12.3 C1042,18.4 1048.8,25 1054.2,30.2 C1062.5,38.2 1071.8,47.4 1082.2,58 C1108.9,92.6 1118.3,124.2 1122.1,143.1 C1126.4,164.5 1130.8,186.3 1118,199.1 C1105.2,211.9 1081.8,209.3 1067.5,203.2 C1047.6,194.7 1039.1,176.7 1032.5,162.8 C1021.3,139 1020.6,116.2 1021.7,101.4 C1031.7,98.5 1036.8,89.1 1034.5,82 C1032.7,76.4 1026,70.8 1019.1,72.8 C1013.8,74.3 1010,79.8 1010.3,86.2 C1005.5,86.1 992.7,85 980.5,75.8 C971.6,69.1 967.1,61.1 965,56.7 C959.5,57.4 948.5,59.4 937.4,67.4 C928.1,73.8 922.9,81.5 920.3,86.1 L920.3,86.1 Z" id="Path" fill="#E5261F"></path>
<path d="M986.5,105.2 C998.5,119.7 1002.3,135 1002.3,135 C1006.2,152.2 1000.6,166.8 998.1,172.7 C1004.4,167.9 1010.8,163.1 1017.1,158.3 C1021.5,172.9 1025.8,187.4 1030.2,202 C1033.5,201.7 1040.3,200.5 1047.1,195.7 C1052.3,192 1055.4,187.7 1057.1,185 C1049,177.5 1033.5,160.9 1026.4,134.8 C1023,122.2 1022.5,111 1022.9,102.6 C1032,98.9 1036.7,90 1034.8,82.6 C1033.4,77.2 1027.9,70.7 1020.8,71.7 C1014.9,72.6 1010,78.4 1010.1,85.5 C1005.6,85.5 995,85 983.9,78.3 C972.4,71.4 966.9,61.8 964.8,57.7 C965.3,76.9 971.2,88 976.5,94.6 C980,99.1 981.6,99.3 986.5,105.2 L986.5,105.2 Z" id="Path" fill="#6D6C6C" opacity="0.24"></path>
<path d="M940,101 C938.9,105 939,109.1 940.5,113 C941,114.4 942.9,114.5 943.4,113 C944.6,109.4 944.6,105.6 943.5,102 C942.9,100.2 940,100.9 940.6,102.8 C941.6,106 941.5,109.1 940.5,112.3 L943.4,112.3 C942.1,108.9 941.9,105.4 942.9,101.9 C943.4,99.9 940.6,99.1 940,101 Z M936.4,94.8 C939,93.2 942.2,93.5 944.4,95.6 C945.8,96.9 947.9,94.8 946.5,93.5 C943.4,90.5 938.6,89.9 934.9,92.2 C933.3,93.2 934.8,95.8 936.4,94.8 Z M947.2,120.2 C949.1,120.2 949.1,117.2 947.2,117.2 C945.2,117.2 945.2,120.2 947.2,120.2 Z M953.8,111.5 L953.8,111.8 C953.8,112.6 954.5,113.3 955.3,113.3 C956.1,113.3 956.8,112.6 956.8,111.8 L956.8,111.5 C956.8,110.7 956.1,110 955.3,110 C954.5,110 953.8,110.6 953.8,111.5 Z M954.1,119 C956,119 956,116 954.1,116 C952.2,116 952.2,119 954.1,119 Z M912.9,105.6 C911.7,109.6 911.8,113.7 913.2,117.6 C913.7,119 915.6,119 916.1,117.6 C917.3,114 917.4,110.2 916.4,106.6 C915.9,104.7 913,105.5 913.5,107.4 C914.4,110.6 914.3,113.7 913.2,116.8 L916.1,116.8 C914.9,113.4 914.7,109.9 915.8,106.4 C916.3,104.5 913.4,103.7 912.9,105.6 Z M911.2,98.1 C913.3,97 916.2,97.5 917.6,99.5 C918.7,101 921.3,99.5 920.2,98 C917.7,94.7 913.4,93.6 909.7,95.5 C908,96.4 909.5,99 911.2,98.1 Z M944.9,152.5 C952.6,151.1 959.3,147 964.3,140.9 C965.2,139.8 963.6,138.2 962.7,139.3 C958,145.1 951.7,148.9 944.3,150.3 C942.9,150.6 943.5,152.8 944.9,152.5 Z" id="Shape" fill="#161616"></path>
<path d="M960.5,139.5 C962.3,140.1 963.8,141 965.1,142.3 C966.1,143.3 967.7,141.7 966.7,140.7 C965.1,139.1 963.2,138 961.1,137.3 C959.7,136.9 959.1,139.1 960.5,139.5 Z" id="Path" fill="#161616"></path>
<path d="M1022.8,8.7 C1035.5,26.3 1051.8,51.2 1067.3,83 C1083.7,116.6 1095.7,141.9 1086.4,151.9 C1074.1,165.2 1031.6,144.1 1024.8,140.6 C1026.2,149.7 1029.7,164.2 1040,178.7 C1045.2,186 1054.3,198.9 1071.1,204.9 C1081.2,208.5 1090.2,208.3 1093.7,208 C1098.4,207.7 1103.8,207.3 1109.7,204.1 C1109.7,204.1 1117.4,200 1122.6,191.6 C1130.5,178.8 1126.3,161.5 1120.7,139.8 C1114,113.8 1105,96.5 1096.2,79.4 C1094,75.2 1091.4,70.3 1087.2,64.6 C1083,58.8 1079.9,55.7 1066.9,43.2 C1047.6,24.5 1044.6,21.8 1038.8,17.9 C1032.4,13.5 1026.7,10.6 1022.8,8.7 Z" id="Path" fill="#371B9B" opacity="0.45"></path>
<path d="M998.7,178.8 C999.5,181.1 1001.3,187.6 998.7,194.8 C994.8,205.5 984,209.1 982.3,209.6 C970,213.6 954.5,207.3 944.1,193.6 C945.5,197.2 948.6,203.6 955,209.2 C958.2,212 966.9,219.5 979.2,218.6 C981.3,218.4 994.8,217.4 1001,205.7 C1005.5,197.4 1004.5,187 998.7,178.8 L998.7,178.8 Z" id="Path" fill="#371B9B" opacity="0.43"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 56 KiB

View File

@ -1,260 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1545px" height="1052px" viewBox="0 0 1545 1052" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>reading</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="pixeltrue-chatting-using-apps-1" transform="translate(25.000000, 20.000000)" fill-rule="nonzero">
<g id="Group" fill="#E8E8E8">
<path d="M102.4,754.1 C170.4,720.4 248.6,733.8 320.1,746.5 C358.2,753.3 396.2,759.6 434.8,762.8 C476.1,766.3 517.6,767 559,765 C639.1,761 717.8,745.2 796.8,732.1 C875.8,719.1 956.4,708.9 1036.4,718.4 C1114.3,727.7 1190.3,760.6 1269.7,754 C1278.6,753.3 1287.4,752 1296.2,750.2 C1298.1,749.8 1297.3,746.9 1295.4,747.3 C1215.5,763.5 1137,731.5 1059.1,718.6 C981.1,705.7 901.8,712.8 824.2,724.7 C743.6,737 663.7,754.4 582.3,760.5 C500.2,766.6 418.5,760.8 337.5,746.5 C268.2,734.2 193.4,718 124.6,741.5 C116.5,744.3 108.6,747.6 100.9,751.4 C99.2,752.4 100.7,755 102.4,754.1 Z" id="Path"></path>
<path d="M1043.1,885.8 C1039.4,878 1018.2,827.6 1037.5,828.8 C1038.6,828.9 1039.1,827.8 1038.9,826.9 C1036.4,811.3 1036.7,795.3 1039.9,779.7 C1041.4,772.5 1043.5,765.5 1046.2,758.7 C1048.6,752.6 1054.3,735.3 1063.5,743.4 C1069.1,748.4 1068.5,759.2 1069.1,766 C1069.7,774 1070,782 1070,790.1 C1069.9,806.3 1068.5,822.5 1065.8,838.5 C1064.3,847 1062.5,855.5 1060.3,863.8 C1059.1,868.3 1057.8,872.7 1056.5,877.1 C1055.2,881.1 1054.2,887.2 1049.6,888.7 C1047.8,889.3 1048.6,892.2 1050.4,891.6 C1056.8,889.4 1058.2,881.8 1059.9,876.1 C1062.8,866.7 1065.2,857.1 1067.2,847.4 C1071,828.2 1073,808.6 1073,789 C1073,778.8 1072.5,768.6 1071.5,758.5 C1070.8,752.1 1070.3,744.3 1064.5,740.2 C1050.6,730.4 1043.2,757.3 1040.5,766 C1034.2,785.9 1032.8,806.9 1036.1,827.5 C1036.6,826.9 1037.1,826.2 1037.5,825.6 C1025.5,824.9 1025.8,839.2 1027.3,847.2 C1029.9,861 1034.4,874.4 1040.5,887.1 C1041.4,889.1 1043.9,887.5 1043.1,885.8 L1043.1,885.8 Z" id="Path"></path>
<path d="M1073.3,803.5 C1073,796.7 1073.7,789.9 1075.6,783.4 C1076.5,780.2 1077.7,777.1 1079.1,774 C1079.8,772.6 1080.5,771.2 1081.3,769.9 C1081.8,769.2 1082.4,768.6 1082.9,767.9 C1085.9,764.9 1088.4,765.4 1090.3,769.5 C1090,771.4 1092.6,772.2 1093.2,770.3 C1095.2,763.7 1099.1,755.5 1107.1,755.1 C1115.6,754.7 1117.9,763.3 1118.2,770.1 C1118.9,783.2 1116.6,796.6 1113.2,809.2 C1106.2,834.9 1093.3,858.6 1080.5,881.9 C1079.6,883.6 1082.2,885.1 1083.1,883.4 C1099,854.4 1115.4,824.3 1120,791.2 C1121,783.8 1121.7,776.2 1121.1,768.7 C1120.7,763.5 1119.3,757.7 1114.9,754.4 C1110.7,751.3 1105,751.6 1100.6,754 C1094.9,757.2 1092,763.4 1090.2,769.4 C1091.2,769.7 1092.1,769.9 1093.1,770.2 C1093.6,766.8 1091.7,763.9 1088.2,763.1 C1084.4,762.2 1081.1,764.7 1079,767.7 C1071.9,777.6 1069.7,791.6 1070.2,803.4 C1070.3,805.4 1073.3,805.4 1073.3,803.5 L1073.3,803.5 Z" id="Path"></path>
<path d="M1002.7,934.3 C1045.7,910.8 1096.7,912.3 1143.8,919.1 C1195.1,926.5 1246.7,940.1 1298.8,933.6 C1327.7,930 1357,920.1 1386.2,927 C1388.1,927.4 1388.9,924.6 1387,924.1 C1361.7,918.1 1336.3,924.4 1311.3,928.7 C1284.2,933.3 1257,932.9 1229.7,929.6 C1178.5,923.5 1128,909.3 1076,912 C1050,913.3 1024.2,919.1 1001.2,931.6 C999.5,932.6 1001,935.2 1002.7,934.3 Z" id="Path"></path>
<path d="M1134.4,865.4 C1172.7,868.9 1209.9,857.7 1246.9,849.3 C1266.4,844.9 1286.2,841.1 1306.2,840.9 C1327.1,840.6 1347.6,844.8 1368.1,848.3 C1389.9,852.1 1411.9,854.9 1433.9,850.8 C1435.8,850.4 1435,847.6 1433.1,847.9 C1392.2,855.5 1352.2,838.5 1311.5,837.8 C1273.4,837.2 1236.7,849.4 1199.8,857.1 C1178.3,861.6 1156.5,864.4 1134.5,862.4 C1132.5,862.3 1132.5,865.3 1134.4,865.4 L1134.4,865.4 Z" id="Path"></path>
<path d="M245.4,732.5 C241.9,728.7 238.8,724.4 236.5,719.7 C235.4,717.4 234.4,715.1 233.7,712.6 C233.1,710.7 232.5,708.7 232.9,706.8 C233.3,704.6 235.7,699.7 239.2,702.9 C240.3,703.9 242.1,702.9 241.7,701.4 C236.2,681.6 234.9,661.5 233.5,641.1 C232.1,620.8 230.6,600 234.6,579.9 C235.6,575.1 236.3,568.1 241.7,566.4 C248.4,564.2 253.1,571.3 255,576.6 C258.4,585.8 260.5,595.8 262.7,605.4 C267.4,625.8 270.6,646.5 272.5,667.3 C274.5,690.2 274.8,713.2 273.5,736.1 C273.4,738 276.4,738 276.5,736.1 C279.2,689.5 275,642.5 263.8,597.2 C262.4,591.6 261,586.1 259.4,580.6 C258.1,576.2 256.7,571.7 253.8,568.2 C249.9,563.6 242.5,561.1 237.4,565.3 C234.4,567.8 233.4,572 232.6,575.6 C231.4,580.9 230.5,586.2 230,591.6 C228.8,603.1 229,614.7 229.6,626.3 C231,651.8 232.1,677.7 238.9,702.4 C239.7,701.9 240.6,701.4 241.4,700.9 C235.9,695.8 229.6,702.3 229.9,708.3 C230.3,718 237.1,727.9 243.4,734.7 C244.6,736.1 246.7,734 245.4,732.5 L245.4,732.5 Z" id="Path"></path>
<path d="M274.7,646.1 C270.6,636.6 272.9,626.4 275.4,616.8 C277.6,608.1 279.8,599.6 279.8,590.6 C279.9,580.4 279.2,570.5 281.8,560.5 C283,555.9 284.7,551.5 286.8,547.2 C287.7,545.4 288.8,542.5 290.3,541.2 C294.8,537.2 297.1,544.6 298.1,547.4 C304.9,566.1 306.1,586.3 306.4,606 C306.8,626.7 306.2,647.4 304.7,668 C303,691.7 300,715.3 295.9,738.8 C295.6,740.7 298.5,741.5 298.8,739.6 C307.1,692.6 310.9,644.6 309.1,597 C308.7,586 307.8,574.9 305.6,564.1 C304.6,558.8 303.2,553.5 301.5,548.4 C300.3,544.9 299.1,540.1 295.9,537.8 C288.9,532.7 284.2,545.2 282.3,549.7 C278.4,558.8 276.5,568.5 276.5,578.4 C276.5,585 277,591.6 276.3,598.2 C275.6,604.6 273.7,610.7 272.2,616.9 C269.6,627.2 267.7,637.6 272,647.7 C272.9,649.3 275.5,647.8 274.7,646.1 L274.7,646.1 Z" id="Path"></path>
<path d="M139.1,512.8 C196.1,470.3 254.3,427.5 320.4,399.9 C353,386.3 387.5,376.8 422.8,374 C461.8,370.9 501,376.1 538.8,385.9 C616,406.1 686.1,445.1 759.1,476.1 C829.8,506.2 903.9,525.9 979.5,538.8 C1055.2,551.7 1131.8,558.4 1208.3,564.3 C1217.8,565 1227.3,565.8 1236.8,566.5 C1238.7,566.6 1238.7,563.6 1236.8,563.5 C1158.5,557.6 1080.1,551.6 1002.5,539.5 C925.8,527.6 849.7,509.7 777.6,480.6 C704.4,451.1 635.2,411.8 559.5,388.7 C522.7,377.5 484.5,370.1 445.9,370.1 C410.4,370.1 375.3,376.9 341.9,388.5 C274.8,411.9 215.4,452.8 158.6,494.6 C151.6,499.8 144.6,505 137.6,510.2 C136,511.4 137.5,514 139.1,512.8 L139.1,512.8 Z" id="Path"></path>
<path d="M1001.9,537 C1063.2,538.3 1122.4,520.5 1181.2,505.5 C1211.4,497.8 1241.8,490.7 1272.8,487.4 C1303.7,484 1334.9,484.8 1365.5,490.6 C1400.1,497.1 1433.4,509.7 1463.7,527.5 C1465.4,528.5 1466.9,525.9 1465.2,524.9 C1412.3,493.9 1350.7,479.1 1289.5,483 C1227.1,486.9 1167.6,507.4 1107,521.2 C1072.5,529.1 1037.3,534.8 1001.8,534.1 C1000,534 1000,537 1001.9,537 L1001.9,537 Z" id="Path"></path>
<path d="M1320.1,744.8 C1362.9,738.3 1406.6,738.1 1449.5,744.4 C1451.4,744.7 1452.2,741.8 1450.3,741.5 C1406.8,735.2 1362.8,735.4 1319.3,741.9 C1317.4,742.2 1318.2,745 1320.1,744.8 Z" id="Path"></path>
<path d="M3.3,653.1 C35.6,613.9 70.6,576.9 108,542.6 C109.4,541.3 107.3,539.2 105.9,540.5 C68.4,574.8 33.4,611.7 1.2,651 C0,652.5 2.1,654.6 3.3,653.1 Z" id="Path"></path>
<path d="M1165.3,108.1 C1151.8,112.8 1141.2,101.5 1134.6,91.2 C1128.1,81.2 1123.4,70.3 1123.4,58.1 C1123.5,35.2 1138.8,15.1 1160,7.1 C1179.6,-0.2 1203.5,3.7 1218.7,18.5 C1234.4,33.8 1238.4,57.6 1228.5,77 C1225.7,82.5 1222.1,87.7 1218.5,92.7 C1216.4,95.6 1214.4,98.8 1211.5,101.1 C1208.1,103.7 1204.3,104.2 1200.2,104.7 C1186.2,106.4 1172.1,107.9 1158,109.5 C1156.1,109.7 1156.1,112.7 1158,112.5 C1173.2,110.8 1188.7,109.7 1203.8,107.3 C1216.1,105.3 1222.7,92.9 1228.5,83 C1240.3,62.9 1239.4,38.4 1224.2,20.2 C1209.1,2.1 1182.5,-3.8 1160.5,3.7 C1138.4,11.3 1121.9,31.2 1120.4,54.8 C1119.5,69.7 1125.4,83.4 1133.7,95.4 C1140.9,105.8 1152.4,115.6 1165.9,110.9 C1167.9,110.4 1167.1,107.5 1165.3,108.1 L1165.3,108.1 Z" id="Path"></path>
<path d="M251.8,145.7 C247.6,135.4 258.6,127 267.9,126.3 C277.8,125.6 287.3,129.8 296.9,131.6 C315,135.1 333.6,133.7 351.1,127.9 C367.9,122.3 384.3,113.1 402.4,112.7 C421,112.4 437.6,123.4 456.4,121.1 C465.5,120 474.3,117.1 483.5,116.4 C492,115.7 504.8,117.3 507.8,127 C510.8,136.7 497.2,144.8 490,148.3 C482,152.2 473.1,154.3 464.3,154.4 C454.9,154.4 446.5,151.6 437.7,148.7 C429.6,146 421.6,144.4 413.1,144.6 C396.9,144.9 381.3,150.1 365.8,154.4 C356.2,157.1 346.4,159.6 336.4,160.4 C326.1,161.2 316.7,159.4 306.8,157 C297,154.6 288.4,155.5 278.5,156.9 C272.6,157.7 266.4,158.2 260.9,155.3 C256,152.7 252,148.1 253.2,142.2 C253.6,140.3 250.7,139.5 250.3,141.4 C248.8,148.3 252.8,154.1 258.8,157.5 C266.9,162.1 275.9,160.2 284.7,158.9 C290.8,158 296.5,157.8 302.6,159 C308,160.1 313.3,161.9 318.8,162.8 C327.4,164.2 336.1,163.7 344.7,162.4 C364.3,159.2 382.8,151.3 402.4,148.5 C412.9,147 423.3,147.4 433.5,150.5 C443,153.4 452,157.1 462,157.4 C478.1,158 499.2,151.6 508.6,137.6 C512.8,131.3 511.5,124 505.8,119.2 C499.5,113.7 490.7,112.8 482.7,113.6 C472.4,114.6 462.5,118.1 452.2,118.6 C440.7,119.2 430.1,114.8 419.1,112 C398.6,106.8 380.6,113.5 361.6,120.9 C350,125.4 338.4,129.1 325.9,130.2 C312.3,131.4 299.3,129.4 286.1,126 C276.7,123.6 265.9,121.1 257.1,126.6 C250.4,130.8 245.8,138.7 248.9,146.5 C249.6,148.2 252.5,147.5 251.8,145.7 L251.8,145.7 Z" id="Path"></path>
<path d="M1087.9,310.8 C1102.3,296.8 1123.2,297 1142,298.8 C1164,300.9 1185.3,303.7 1207.5,301.3 C1218.9,300 1230,297.6 1241.1,294.7 C1252.7,291.7 1264.6,288.5 1276.8,288.9 C1289.1,289.3 1300.6,294.2 1312.7,295.9 C1323.7,297.4 1334.8,296.1 1345.7,294 C1355.5,292.2 1365.2,289.2 1375.3,289.7 C1384.2,290.1 1395.1,294.6 1394.3,305.4 C1393.5,315.5 1382.1,322.5 1373,324 C1361.4,325.8 1349.6,321.6 1338.1,320.7 C1316.5,319 1300.2,333.5 1279.7,337.2 C1258.1,341.1 1237.8,329.2 1217.3,324.8 C1192.1,319.5 1168.2,330.5 1143.6,334.5 C1131.3,336.5 1117,339.2 1104.6,336.7 C1098.5,335.4 1092.7,332.4 1089.7,326.7 C1087,321.4 1086.9,315 1091.4,310.7 C1092.8,309.4 1090.7,307.2 1089.3,308.6 C1083.5,314.1 1083.8,322.8 1087.8,329.4 C1092.6,337.3 1101.8,340 1110.5,340.5 C1136.1,342 1161.1,333.3 1185.7,328.1 C1199.4,325.2 1212,326.2 1225.4,330 C1236.6,333.2 1247.4,337.6 1258.9,339.7 C1269.8,341.7 1280.3,341.1 1290.7,337.3 C1301.6,333.4 1311.8,327.3 1323.2,324.7 C1344.8,319.8 1369.1,335.7 1388.5,320.5 C1395,315.4 1399.5,307.2 1396.4,299 C1393.7,291.9 1386.8,288.4 1379.7,287.4 C1370.5,286 1361.6,288 1352.6,289.9 C1338.3,292.9 1323.7,295.3 1309.1,292.5 C1296.5,290.1 1284.6,285.6 1271.5,286.2 C1259.1,286.8 1247.1,290.4 1235.1,293.4 C1219.9,297.2 1204.4,299.4 1188.7,299.7 C1175.1,299.9 1161.7,298.2 1148.2,296.7 C1126.9,294.3 1102.6,292.8 1086,308.9 C1084.4,310 1086.5,312.1 1087.9,310.8 L1087.9,310.8 Z" id="Path"></path>
<path d="M436.6,990.7 C432.1,986.6 428.2,982 425,976.8 C423.5,974.4 422.1,971.8 421,969.2 C420.4,967.7 419.4,965.5 419.6,963.8 C419.9,960.9 422.7,956.5 426.1,959.2 C427.4,960.3 429.3,959 428.5,957.4 C424.7,950 422.4,941.5 422.8,933.1 C422.9,931.5 423.1,930 423.7,928.5 C424.2,927.2 424.9,926 425.8,924.9 C427.6,923.1 429.2,923.1 430.6,925.1 C434.3,927.8 435.8,933 437.5,937.1 C443.6,951.7 448.1,966.9 451.2,982.4 C452.2,982.1 453.1,981.9 454.1,981.6 C451.4,974.1 449.3,966.4 448,958.5 C447.1,952.9 445.5,934.3 457,940.5 C464.4,944.5 465.8,956.4 465.8,963.9 C465.9,972.2 464.3,980.3 462.7,988.4 C462.3,990.3 465.2,991.1 465.6,989.2 C467.6,978.9 469.7,968.2 468.4,957.6 C467.4,949.9 464,937.6 454.7,936.4 C447.3,935.5 444.3,943 444.1,949.1 C443.7,960.2 447.5,972.2 451.2,982.5 C451.9,984.3 454.5,983.6 454.1,981.7 C451.8,970.1 448.6,958.6 444.6,947.5 C442.8,942.5 440.9,937.6 438.7,932.7 C437.1,929 435.5,923.7 431.6,921.6 C425.4,918.2 421,925.1 420,930.3 C418.2,939.8 421.5,950.7 425.7,959.1 L428.1,957.3 C422,952.2 415.8,959.5 416.7,965.9 C418.2,976.1 427.2,986.2 434.4,993 C435.9,994.1 438,992 436.6,990.7 L436.6,990.7 Z" id="Path"></path>
<path d="M316.2,238 C338.4,233.5 361,229 383.8,231 C405.7,232.9 426.4,240.7 447.6,246.1 C489,256.5 531.9,260.2 574.5,260.1 C598.9,260 623.2,258.8 647.5,256.8 C649.4,256.6 649.4,253.6 647.5,253.8 C604.1,257.2 560.3,258.6 516.8,254.6 C494.7,252.6 472.7,249.1 451.1,243.9 C430.5,238.9 410.5,231.4 389.4,228.7 C364.5,225.5 339.7,230.3 315.4,235.2 C313.5,235.5 314.3,238.4 316.2,238 L316.2,238 Z" id="Path"></path>
<path d="M550.2,238.2 C623.6,234.4 694.9,209.4 768.9,214 C770.8,214.1 770.8,211.1 768.9,211 C695,206.4 623.6,231.5 550.2,235.2 C548.2,235.3 548.2,238.3 550.2,238.2 Z" id="Path"></path>
<path d="M1154.1,737.4 C1151.2,730.1 1149.7,722.4 1149.8,714.5 C1149.8,710.5 1150.3,706.5 1151.2,702.6 C1152,699 1156,689.7 1160.6,695.6 C1161.4,696.6 1163.3,695.8 1163.2,694.5 C1162.2,685.9 1162.4,677.3 1164,668.8 C1164.7,665.1 1165.7,661.4 1167,657.8 C1167.8,655.6 1168.6,653.2 1169.7,651.1 C1171.3,648.1 1173.1,647.3 1176.1,645.8 C1181.5,643.3 1181.6,636.8 1182.9,631.6 C1184.7,624.5 1186.8,617.3 1190.9,611.2 C1193.3,607.6 1197.8,601.8 1202.7,603.1 C1206.6,604.1 1208,608.3 1208.7,611.9 C1210.3,619.8 1209.2,628.6 1208.8,636.6 C1207.9,654.3 1205.6,672 1202,689.3 C1198,708.3 1192.3,726.9 1185.2,745 C1184.5,746.8 1187.4,747.6 1188.1,745.8 C1202.9,708.4 1211.2,668.5 1212.2,628.2 C1212.4,620.4 1213.4,594.4 1198,600.4 C1191.5,603 1187.1,610.9 1184.5,617 C1183,620.5 1181.9,624.1 1180.9,627.7 C1179.4,633.2 1179.4,640 1174.1,643.2 C1171,645.1 1169,645.9 1167.2,649.5 C1165.1,653.6 1163.6,658.3 1162.4,662.8 C1159.7,673.1 1159,683.8 1160.3,694.4 C1161.2,694 1162,693.7 1162.9,693.3 C1160.9,690.8 1157.6,690.2 1154.7,691.5 C1150.8,693.3 1149.4,697.8 1148.5,701.6 C1145.7,713.7 1146.9,726.4 1151.4,738 C1151.9,740 1154.8,739.2 1154.1,737.4 L1154.1,737.4 Z" id="Path"></path>
<path d="M1125.7,732.2 C1121.4,725.5 1117.2,718.5 1115,710.7 C1114,707.1 1113.4,703.4 1113.6,699.7 C1113.9,695.6 1115.6,692.4 1117,688.6 C1119.2,682.5 1115.7,676.7 1114.3,670.8 C1113.6,668 1109.5,643.1 1118.3,646.5 C1119.4,646.9 1120.4,645.7 1120.1,644.7 C1117.2,631.8 1114.2,618.1 1118.3,605.2 C1120.1,599.5 1127.4,584.7 1134.9,591.5 C1139.5,595.7 1142.1,603.5 1144.2,609.1 C1153.4,634.4 1157.4,662.5 1159.2,689.3 C1159.3,691.2 1162.3,691.2 1162.2,689.3 C1161,671.8 1158.6,654.4 1154.9,637.3 C1151.7,622.3 1148.2,605.6 1139.5,592.6 C1136.8,588.6 1132.9,585.2 1127.8,587.3 C1122.4,589.5 1118.7,596.1 1116.6,601.1 C1110.7,615.4 1114,631 1117.2,645.6 C1117.8,645 1118.4,644.4 1119,643.8 C1113.7,641.7 1110.5,647.7 1109.7,652.2 C1108.1,662.2 1111.8,671.5 1114.1,681 C1115.5,686.8 1112,690.9 1111,696.3 C1110.2,700.1 1110.4,703.9 1111.1,707.7 C1112.8,717.2 1118,725.9 1123.1,734 C1124.1,735.3 1126.7,733.8 1125.7,732.2 L1125.7,732.2 Z" id="Path"></path>
<path d="M1206,681.9 C1208.7,672.6 1211.5,663.3 1217.2,655.4 C1222.7,647.8 1229.1,640.6 1235.2,633.5 C1238.4,629.9 1241.6,626.3 1245.1,623 C1246.9,621.3 1248.7,619.5 1251,618.3 C1255.5,615.9 1258.5,619 1259.7,623.1 C1262.4,632.5 1260.2,642.7 1257.8,652 C1248.6,687.2 1232.6,720.5 1211.2,750 C1210.1,751.6 1212.7,753.1 1213.8,751.5 C1233.5,724.4 1248.5,694.1 1258.1,662 C1260.4,654.3 1262.7,646.4 1263.5,638.4 C1264.2,631.9 1264.4,622.9 1260.5,617.3 C1252.3,605.7 1235.3,628.8 1230.8,634.1 C1225,640.9 1218.8,647.7 1213.7,655.1 C1208.4,662.9 1205.7,672 1203.1,681 C1202.5,682.9 1205.4,683.7 1206,681.9 L1206,681.9 Z" id="Path"></path>
<path d="M1200.2,604.3 C1196.4,650.9 1186.4,696.7 1170.5,740.6 C1169.8,742.4 1172.7,743.2 1173.4,741.4 C1189.4,697.2 1199.4,651.1 1203.2,604.3 C1203.3,602.4 1200.3,602.4 1200.2,604.3 L1200.2,604.3 Z" id="Path"></path>
<path d="M1173,644.6 C1178.4,664.9 1181.2,685.6 1181.4,706.6 C1181.4,708.5 1184.4,708.5 1184.4,706.6 C1184.2,685.4 1181.4,664.3 1175.9,643.8 C1175.4,641.9 1172.5,642.7 1173,644.6 Z" id="Path"></path>
<path d="M1186.6,621.9 C1190.1,635.7 1191.8,649.8 1191.9,664 C1191.9,665.9 1194.9,665.9 1194.9,664 C1194.8,649.5 1193,635.1 1189.5,621.1 C1189,619.2 1186.1,620 1186.6,621.9 L1186.6,621.9 Z" id="Path"></path>
<path d="M1178.1,729.8 C1185.8,723.8 1192.7,716.9 1198.7,709.3 C1199.9,707.8 1197.8,705.7 1196.6,707.2 C1190.5,714.9 1183.7,721.7 1176,727.7 C1174.5,728.9 1176.6,731 1178.1,729.8 Z" id="Path"></path>
<path d="M1126,589.9 C1134.7,626.2 1141.5,662.9 1146.2,699.9 C1146.4,701.8 1149.4,701.8 1149.2,699.9 C1144.4,662.6 1137.6,625.6 1128.9,589.1 C1128.5,587.2 1125.6,588 1126,589.9 Z" id="Path"></path>
<path d="M1114.1,624.3 C1122.9,629.6 1130.4,636.4 1136.4,644.8 C1137.5,646.4 1140.1,644.9 1139,643.3 C1132.7,634.5 1124.9,627.3 1115.7,621.8 C1113.9,620.7 1112.4,623.3 1114.1,624.3 Z" id="Path"></path>
<path d="M1152.4,645.2 C1148.8,654.2 1145.9,663.4 1143.7,672.9 C1143.3,674.8 1146.1,675.6 1146.6,673.7 C1148.8,664.3 1151.7,655 1155.3,646 C1156,644.2 1153.1,643.4 1152.4,645.2 Z" id="Path"></path>
<path d="M1113.9,690.6 C1124.9,693.7 1135.6,697.3 1146.2,701.5 C1148,702.2 1148.8,699.3 1147,698.6 C1136.4,694.4 1125.6,690.8 1114.7,687.7 C1112.8,687.2 1112,690.1 1113.9,690.6 Z" id="Path"></path>
<path d="M1254.8,619.2 C1241.5,665.5 1204.7,701 1192.9,747.9 C1192.4,749.8 1195.3,750.6 1195.8,748.7 C1207.6,701.8 1244.4,666.3 1257.7,620 C1258.3,618.1 1255.4,617.3 1254.8,619.2 Z" id="Path"></path>
<path d="M1228,638.7 C1225.5,654.9 1222.9,671.1 1220.4,687.3 C1220.1,689.2 1223,690 1223.3,688.1 C1225.8,671.9 1228.4,655.7 1230.9,639.5 C1231.2,637.6 1228.3,636.8 1228,638.7 Z" id="Path"></path>
<path d="M1231,674.3 C1239.9,667.9 1249.2,662.1 1258.9,656.8 C1260.6,655.9 1259.1,653.3 1257.4,654.2 C1247.7,659.4 1238.4,665.2 1229.5,671.7 C1227.9,672.9 1229.4,675.5 1231,674.3 Z" id="Path"></path>
<path d="M1202.3,732.3 C1211.4,721.6 1224.4,716.2 1237.2,711.1 C1239,710.4 1238.2,707.5 1236.4,708.2 C1223.2,713.5 1209.7,719.1 1200.2,730.2 C1198.9,731.7 1201,733.8 1202.3,732.3 Z" id="Path"></path>
<path d="M1057,741.8 C1060.7,765.2 1057.6,788.7 1054.1,812 C1050.7,834.9 1047.3,857.9 1043.9,880.8 C1043.6,882.7 1046.5,883.5 1046.8,881.6 C1050.4,857.4 1054.1,833.2 1057.6,809 C1060.9,786.5 1063.5,763.7 1059.9,741.1 C1059.5,739.1 1056.7,739.9 1057,741.8 L1057,741.8 Z" id="Path"></path>
<path d="M1037.5,784.5 C1040.9,798.5 1045.5,812.1 1051.3,825.3 C1052.1,827.1 1054.7,825.5 1053.9,823.8 C1048.3,810.8 1043.8,797.5 1040.4,783.7 C1039.9,781.9 1037,782.7 1037.5,784.5 L1037.5,784.5 Z" id="Path"></path>
<path d="M1067.6,756.1 C1066.2,765.2 1062.9,773.5 1057.7,781 C1056.6,782.6 1059.2,784.1 1060.3,782.5 C1065.6,774.8 1069.1,766.1 1070.5,756.8 C1070.7,755 1067.8,754.2 1067.6,756.1 L1067.6,756.1 Z" id="Path"></path>
<path d="M1108.9,757.6 C1096.6,800.3 1080.9,841.9 1062.1,882.2 C1061.3,883.9 1063.9,885.5 1064.7,883.7 C1083.6,843.2 1099.4,801.3 1111.8,758.4 C1112.3,756.6 1109.4,755.8 1108.9,757.6 L1108.9,757.6 Z" id="Path"></path>
<path d="M1101,755.8 C1100.6,765.5 1100.3,775.1 1099.9,784.8 C1099.8,786.7 1102.8,786.7 1102.9,784.8 C1103.3,775.1 1103.6,765.5 1104,755.8 C1104.1,753.9 1101.1,753.9 1101,755.8 Z" id="Path"></path>
<path d="M1078.8,768.8 C1073.4,791.4 1078.8,815 1082,837.6 C1082.3,839.5 1085.2,838.7 1084.9,836.8 C1081.8,814.8 1076.5,791.7 1081.7,769.6 C1082.2,767.7 1079.3,766.9 1078.8,768.8 Z" id="Path"></path>
<path d="M1074.4,860.9 C1084.1,858.5 1093.1,854.4 1101.2,848.6 C1102.8,847.5 1101.3,844.9 1099.7,846 C1091.8,851.6 1083.1,855.6 1073.6,858 C1071.7,858.4 1072.5,861.3 1074.4,860.9 Z" id="Path"></path>
<path d="M240.9,567.7 C251,622.3 257.3,677.6 259.6,733 C259.7,734.9 262.7,734.9 262.6,733 C260.3,677.2 254,621.7 243.8,566.9 C243.4,565 240.5,565.8 240.9,567.7 L240.9,567.7 Z" id="Path"></path>
<path d="M230,631.1 C240.6,644.4 249.1,659.1 255.3,674.9 C256,676.7 258.9,675.9 258.2,674.1 C251.8,657.8 243.1,642.7 232.2,629 C231,627.5 228.8,629.6 230,631.1 Z" id="Path"></path>
<path d="M260,594.4 C256.4,609.3 253.7,624.4 251.8,639.6 C251.6,641.5 254.6,641.5 254.8,639.6 C256.6,624.7 259.3,609.9 262.9,595.2 C263.3,593.3 260.4,592.5 260,594.4 L260,594.4 Z" id="Path"></path>
<path d="M291.4,540.7 C293.2,606 290,671.3 281.8,736.1 C281.6,738 284.6,738 284.8,736.1 C293,671.3 296.2,606 294.4,540.7 C294.3,538.8 291.3,538.8 291.4,540.7 Z" id="Path"></path>
<path d="M274.6,609.4 C281.8,626.5 286.8,644.4 289.5,662.8 C289.8,664.7 292.7,663.9 292.4,662 C289.7,643.6 284.7,625.7 277.5,608.6 C276.7,606.9 273.8,607.6 274.6,609.4 Z" id="Path"></path>
<path d="M286.1,722.5 C290.4,714.1 296.1,706.8 303.1,700.5 C304.5,699.2 302.4,697.1 301,698.4 C293.8,704.8 287.9,712.4 283.5,721 C282.6,722.7 285.2,724.2 286.1,722.5 Z" id="Path"></path>
<path d="M281.8,551.8 C284.4,560.1 287.3,568.2 290.5,576.3 C291.2,578.1 294.1,577.3 293.4,575.5 C290.1,567.5 287.2,559.3 284.7,551 C284.1,549.1 281.2,549.9 281.8,551.8 Z" id="Path"></path>
<path d="M67,945.8 C132.6,939.4 199,941.4 264,952 C282.3,955 300.6,958.7 318.7,963 C320.6,963.4 321.4,960.6 319.5,960.1 C255.4,944.8 189.5,937.8 123.6,939.3 C104.7,939.8 85.8,940.9 67,942.8 C65.1,942.9 65,945.9 67,945.8 Z" id="Path"></path>
<path d="M655,974.5 C655.1,970.2 665.8,969.4 668.4,969.7 C672.8,970.1 677,972.4 679.4,976.1 C687.3,988.3 671.3,993.2 662.1,990.2 C660.3,989.6 659.5,992.5 661.3,993.1 C667.7,995.3 676.2,995 681.4,989.9 C685.8,985.6 684.9,978.7 681.6,974 C677.9,968.8 671.8,966.2 665.5,966.6 C661.1,966.9 652.1,968.9 652,974.5 C652,976.4 655,976.4 655,974.5 L655,974.5 Z" id="Path"></path>
<path d="M654.5,972.9 C660.9,963.9 674.3,959.8 684.3,956.6 C695.4,953.1 706.9,951 718.6,950.4 C720.5,950.3 720.5,947.3 718.6,947.4 C705.5,948.1 692.5,950.5 680.1,954.8 C670.1,958.3 658.3,962.4 651.9,971.4 C650.8,973 653.4,974.5 654.5,972.9 L654.5,972.9 Z" id="Path"></path>
<path d="M720.1,950.8 C727.8,951.7 734,957.7 735.5,965.2 C735.9,967.1 738.8,966.3 738.4,964.4 C736.6,955.4 729.1,948.9 720.1,947.8 C718.1,947.6 718.2,950.6 720.1,950.8 L720.1,950.8 Z" id="Path"></path>
<path d="M723.8,947.7 C735,940.7 745.9,949.7 748.2,961 C748.6,962.9 751.5,962.1 751.1,960.2 C748.3,946.9 735.1,937.1 722.3,945.1 C720.7,946.2 722.2,948.8 723.8,947.7 Z" id="Path"></path>
<path d="M736.2,967.3 C742.4,969.3 749,965.8 751.2,959.8 C751.9,958 749,957.2 748.3,959 C746.7,963.5 741.5,965.9 737,964.4 C735.1,963.8 734.3,966.7 736.2,967.3 L736.2,967.3 Z" id="Path"></path>
<path d="M654.1,971.4 C648.9,974.4 649.2,981.5 651.2,986.4 C653.4,992 658.8,995.7 664.9,994.2 C666.8,993.7 666,990.9 664.1,991.3 C659.4,992.4 655.6,989.4 654,985.2 C652.7,981.8 651.8,976.2 655.7,974 C657.3,973 655.8,970.4 654.1,971.4 L654.1,971.4 Z" id="Path"></path>
<path d="M655.5,982.8 C652.5,974.7 667.1,969.8 672.2,974.4 C675.4,977.3 674.6,981.9 671.2,984.3 C669.7,985.4 667.8,986.2 665.9,985.8 C659.2,984.5 664.7,976.8 668,981.2 C669.2,982.7 671.8,981.2 670.6,979.7 C666.7,974.6 658.1,977.2 659.7,984.1 C661.4,991.7 672.2,989 675.5,984.3 C680.1,977.7 675.1,969.7 667.5,969.6 C660.3,969.5 649.4,974.7 652.7,983.5 C653.3,985.4 656.2,984.6 655.5,982.8 L655.5,982.8 Z" id="Path"></path>
<path d="M679.4,990.6 C700.4,986.1 720.4,978.4 739,967.7 C740.7,966.7 739.2,964.1 737.5,965.1 C719.1,975.7 699.3,983.2 678.6,987.7 C676.7,988.1 677.5,991 679.4,990.6 Z" id="Path"></path>
<path d="M735.8,943 C752.8,928.7 769.8,911.7 791.6,905.2 C793.4,904.6 792.7,901.8 790.8,902.3 C768.5,909 751.1,926.3 733.7,940.9 C732.2,942.1 734.4,944.2 735.8,943 L735.8,943 Z" id="Path"></path>
<path d="M791.4,906.3 C802.6,910.1 810.7,920.1 811.9,931.9 C812.1,933.8 815.1,933.8 814.9,931.9 C813.6,918.7 804.8,907.6 792.2,903.4 C790.4,902.8 789.6,905.7 791.4,906.3 Z" id="Path"></path>
<path d="M750.9,962.7 C771.4,953.6 791.8,944.1 812,934.2 C813.7,933.4 812.2,930.8 810.5,931.6 C790.3,941.5 769.9,950.9 749.4,960.1 C747.6,960.9 749.2,963.5 750.9,962.7 Z" id="Path"></path>
<path d="M722.9,949.1 C723.6,948.6 724.3,948.2 724.9,947.7 C725.6,947.2 725.9,946.4 725.4,945.6 C725,944.9 724,944.6 723.3,945.1 C722.6,945.6 721.9,946 721.3,946.5 C720.6,947 720.3,947.8 720.8,948.6 C721.2,949.2 722.2,949.6 722.9,949.1 Z" id="Path"></path>
<path d="M426.2,924.3 C428.1,946.7 433.1,968.6 441.2,989.5 C441.9,991.3 444.8,990.5 444.1,988.7 C436.1,968 431,946.4 429.2,924.3 C429.1,922.4 426.1,922.4 426.2,924.3 L426.2,924.3 Z" id="Path"></path>
<path d="M421,969.2 C427.2,972.4 432.7,976.6 437.6,981.7 C438.9,983.1 441,981 439.7,979.6 C434.7,974.3 429,970 422.5,966.7 C420.8,965.7 419.3,968.3 421,969.2 L421,969.2 Z" id="Path"></path>
<path d="M442.9,954.2 C438.6,960.4 436.7,967.6 437.4,975.1 C437.6,977 440.6,977 440.4,975.1 C439.8,968.1 441.5,961.6 445.5,955.7 C446.5,954.2 443.9,952.7 442.9,954.2 Z" id="Path"></path>
<path d="M451.8,945.9 C454.7,958.3 455.6,970.9 454.3,983.6 C454.1,985.5 457.1,985.5 457.3,983.6 C458.5,970.7 457.6,957.8 454.6,945.1 C454.3,943.3 451.4,944.1 451.8,945.9 Z" id="Path"></path>
<path d="M447.4,950.3 C449.8,954.9 452.2,959.6 454.6,964.2 C455.5,965.9 458.1,964.4 457.2,962.7 C454.8,958.1 452.4,953.4 450,948.8 C449.1,947.1 446.5,948.6 447.4,950.3 Z" id="Path"></path>
</g>
<circle id="Oval" fill="#E5261F" cx="506.6" cy="306.8" r="16.9"></circle>
<circle id="Oval" fill="#161616" cx="1051.2" cy="671.6" r="12.2"></circle>
<circle id="Oval" fill="#161616" cx="1069" cy="655.2" r="5"></circle>
<circle id="Oval" fill="#161616" cx="260.3" cy="348" r="8.6"></circle>
<circle id="Oval" fill="#E5261F" cx="292.7" cy="365.8" r="9.4"></circle>
<circle id="Oval" fill="#E5261F" cx="589" cy="579.1" r="5.2"></circle>
<circle id="Oval" fill="#E5261F" cx="994.5" cy="84.8" r="9"></circle>
<circle id="Oval" fill="#E5261F" cx="1034.5" cy="118" r="6.8"></circle>
<circle id="Oval" fill="#E5261F" cx="1027.5" cy="626.6" r="7"></circle>
<circle id="Oval" fill="#E5261F" cx="559" cy="89.3" r="4.5"></circle>
<path d="M448.1,469.4 C446.9,467.8 448.1,465 449.6,464.1 C451.5,462.9 454.1,463.5 456.1,464 C458.2,464.5 460.1,465.5 462.1,466 C464.7,466.7 467.6,467 470.2,466 C473,464.9 474.4,462.7 475,459.9 C475.6,457.5 475.4,454.5 477.4,452.6 C479.3,450.7 482.3,450.5 484.8,450.5 C491.2,450.6 497.5,454.2 501,446.8 C502.8,442.8 503.1,438.4 507.5,436.1 C512.8,433.3 519.2,435.7 524.4,437.5 C526.2,438.1 527,435.3 525.2,434.6 C517.3,431.8 505.9,429.2 501,438.5 C500.2,440.1 499.7,441.9 499.1,443.5 C498.5,445 497.8,447.6 496.2,448.3 C494.4,449.1 491.1,448.2 489.2,447.9 C485.5,447.4 481.6,447 478,448.6 C474.4,450.3 473.2,453.2 472.5,457 C470.7,467.1 462.7,462.4 456.1,460.8 C452.5,459.9 448.6,460.2 446.1,463.2 C444.2,465.5 443.7,468.4 445.5,470.8 C446.6,472.5 449.2,471 448.1,469.4 L448.1,469.4 Z" id="Path" fill="#E5261F"></path>
<path d="M471.3,485.6 C472.3,479.8 476.8,476.6 482.6,476.9 C485.8,477 489.3,478.1 492.5,477.1 C494.7,476.4 496.4,474.9 497.3,472.8 C499.4,468.2 499.4,464.3 503.9,460.9 C507.7,458 512.2,457.1 516.8,458.2 C519.7,458.9 522.8,460.2 525.8,459.1 C529,457.9 530.5,454.2 533.4,452.3 C537.1,449.9 541.6,449.1 545.8,448.4 C547.7,448.1 546.9,445.2 545,445.5 C541.1,446.2 537.2,447 533.7,448.7 C532.1,449.5 530.7,450.4 529.4,451.6 C526.8,454 525.7,456.4 521.4,456.2 C517.7,456.1 514.8,454.3 510.9,454.8 C507.4,455.3 504.1,456.8 501.4,459 C498.9,461.1 496.9,463.8 495.9,467 C494.8,470.3 494.1,474.3 489.6,474.4 C487.5,474.5 485.4,474 483.3,473.9 C476,473.3 469.7,477.3 468.4,484.7 C468.1,486.7 470.9,487.5 471.3,485.6 L471.3,485.6 Z" id="Path" fill="#E5261F"></path>
<path d="M998.4,457 C1004.9,458.2 1008.3,466.7 1015.7,463.9 C1020,462.3 1022.6,458.3 1027.6,458.2 C1033.1,458.1 1035.6,462.7 1040.3,464.2 C1048.1,466.7 1054.3,458.1 1061.8,459.5 C1068.6,460.8 1072.8,469 1080.4,466.8 C1082.3,466.3 1081.5,463.4 1079.6,463.9 C1072.9,465.8 1067.7,456.5 1060.8,456.3 C1057.7,456.2 1054.7,457.5 1052,458.7 C1046.3,461.3 1042.7,462.9 1037.2,458.8 C1031.7,454.6 1025.4,454 1019.5,457.9 C1017.7,459.1 1016.3,460.4 1014.2,461 C1011.1,461.9 1009.1,460.3 1006.8,458.4 C1004.4,456.5 1002.2,454.6 999.1,454 C997.3,453.7 996.5,456.6 998.4,457 L998.4,457 Z" id="Path" fill="#E5261F"></path>
<path d="M1019,447.1 C1024.1,451.2 1030,445.5 1035.4,448.9 C1040.5,452.1 1043.4,453.1 1049.2,451.1 C1052.4,450 1055.6,448.4 1059.1,448.9 C1061.9,449.4 1064.1,451.5 1067,451.8 C1069.7,452.1 1072,450.6 1074.4,449.5 C1079.2,447.4 1083.9,447.6 1088.4,450.5 C1090,451.6 1091.5,449 1089.9,447.9 C1085.2,444.9 1079.8,444.1 1074.5,446.1 C1072.9,446.7 1071,448.2 1069.3,448.5 C1066.8,448.9 1064.8,447.8 1062.6,446.8 C1060.6,445.9 1058.7,445.6 1056.5,445.8 C1053.7,446.1 1051.1,447.3 1048.4,448.1 C1044.1,449.5 1041.3,449.3 1037.5,446.6 C1035.4,445.1 1033.5,444.3 1030.9,444.4 C1027.9,444.5 1023.8,447 1021.1,444.9 C1019.6,443.8 1017.5,445.9 1019,447.1 L1019,447.1 Z" id="Path" fill="#E5261F"></path>
<path d="M689.1,536.8 C689.5,531.5 695.6,531.7 698.8,533.5 C700.4,534.4 701.7,535.7 703,537 C705.3,539.2 707.5,541.7 710.4,543.1 C715.8,545.5 719.1,542.6 723.6,540 C737.8,532 748.3,558 762.6,548.9 C763.4,548.4 762.7,547.1 761.8,547.6 C752.3,553.7 743.4,541.9 735.5,538.4 C732.9,537.2 730.1,536.5 727.3,537 C723.2,537.7 720.5,541.3 716.6,542.3 C707.4,544.8 703.9,531.8 695.6,530.9 C691.6,530.4 687.8,532.8 687.5,536.9 C687.5,537.8 689,537.8 689.1,536.8 L689.1,536.8 Z" id="Path" fill="#E8E8E8"></path>
<path d="M942.9,594.1 C944.7,587 950.8,583.3 957.9,583.9 C961.5,584.2 964.4,584.1 966.8,581 C969.6,577.3 969.7,572.3 973.1,568.8 C977.1,564.8 983.2,563.6 988.6,562.6 C989.5,562.4 989.1,561 988.2,561.2 C983.2,562.1 977.8,563.2 973.7,566.3 C969.8,569.3 968.8,573.4 966.9,577.7 C964.4,583.2 960.6,582.2 955.5,582.3 C953.5,582.3 951.6,582.8 949.8,583.6 C945.5,585.6 942.6,589.3 941.4,593.8 C941.2,594.7 942.6,595.1 942.9,594.1 L942.9,594.1 Z" id="Path" fill="#E8E8E8"></path>
<path d="M977.1,588.5 C977.1,583.4 980.2,578.5 985.1,576.9 C988.6,575.7 992.3,577.1 995.8,575.9 C1001.4,573.9 1004.2,566.9 1010.5,566.6 C1011.5,566.5 1011.5,565 1010.5,565.1 C1007.4,565.3 1005.1,566.7 1002.8,568.7 C1001,570.3 999.4,572.2 997.3,573.4 C994,575.5 991,574.6 987.5,574.9 C980.5,575.5 975.5,581.7 975.5,588.5 C975.6,589.5 977.1,589.5 977.1,588.5 L977.1,588.5 Z" id="Path" fill="#E8E8E8"></path>
<path d="M609,154.9 C610.6,159.7 614.1,166 620.1,163 C623.7,161.2 625.4,157.3 629.7,156.5 C634.5,155.6 639.5,158 641.8,162.3 C642.4,163.5 644.1,163.1 644.5,161.9 C647.5,153.2 658.5,152.5 662.9,160.4 C663.8,162.1 666.4,160.6 665.5,158.9 C659.8,148.5 645.5,150 641.7,161.1 C642.6,161 643.5,160.9 644.4,160.7 C641.8,155.8 636.6,153 631.1,153.3 C628.6,153.4 626.2,154.1 624.2,155.6 C622.9,156.5 621.9,158.2 620.5,159 C619.1,159.8 614.7,159.2 613.5,158 C612.6,157.1 612.2,155.2 611.9,154.1 C611.3,152.3 608.4,153.1 609,154.9 L609,154.9 Z" id="Path" fill="#161616"></path>
<path d="M652.8,141.7 C654.7,143.2 656.5,143.2 658.8,142.5 C661.9,141.6 663.9,139.7 666.6,143.2 C667.5,144.4 667.8,146 669,147.1 C671.2,149.3 674.4,149.6 677.4,149.3 C680.9,149 690.9,146.6 690.4,153.1 C690.3,155 693.3,155 693.4,153.1 C694.1,143.9 682,146.2 676.7,146.4 C672.8,146.5 671,144.9 669.2,141.7 C668.4,140.3 667.6,139.1 666.1,138.4 C662.7,136.9 657.5,141.5 654.9,139.5 C653.4,138.4 651.2,140.5 652.8,141.7 L652.8,141.7 Z" id="Path" fill="#161616"></path>
<path d="M339.4,686.1 C338.3,682.6 338.5,679 340.4,675.9 C342.4,672.7 345.5,671.7 348.4,669.8 C352.1,667.3 353.5,663.9 354.1,659.6 C354.4,657.3 354.4,655 355,652.7 C356.1,648.7 358.6,646.9 362.3,645.3 C365.7,643.9 368.8,642.7 371,639.6 C372.1,638 369.5,636.5 368.4,638.1 C365.2,642.5 358.9,642.4 355.1,646.1 C351.3,649.9 351.9,655.3 351,660.1 C349.7,667.4 343.1,667.8 339,672.7 C335.7,676.7 334.9,682.1 336.5,686.9 C337.1,688.7 340,687.9 339.4,686.1 L339.4,686.1 Z" id="Path" fill="#161616"></path>
<path d="M340.8,652.9 C348.2,648.5 342,637.7 349.5,633.5 C353.5,631.2 357.1,630.2 360.3,626.6 C363.4,623.1 365.4,618.9 367.4,614.7 C368.2,613 365.6,611.4 364.8,613.2 C362.8,617.4 360.8,621.6 357.6,625 C354.2,628.7 349.6,629.1 345.9,632.1 C340.4,636.6 344.8,646.9 339.2,650.3 C337.6,651.3 339.1,653.8 340.8,652.9 L340.8,652.9 Z" id="Path" fill="#161616"></path>
<path d="M747.3,527.2 C741.2,527.9 736.3,522.5 737.3,516.4 C738.3,510.6 743.8,506.1 749.6,505.7 C754.3,505.4 759.6,507.3 761.8,511.8 C764.2,516.7 762,523.4 756.9,525.3 C755.1,526 755.9,528.9 757.7,528.2 C763.8,525.8 767,519.2 765.4,512.8 C763.5,505.4 755.4,501.8 748.2,502.8 C741.2,503.8 734.8,509.6 734.1,516.8 C733.4,524.2 739.7,530.9 747.2,530.1 C749.2,530 749.2,527 747.3,527.2 Z" id="Path" fill="#161616"></path>
<path d="M292.3,857.4 C298.6,850.6 308.2,841.1 321.1,831.4 C332.2,823 341.2,817.9 352.6,811.5 C368.9,802.4 389.2,791.3 412.9,778.6 C449.3,775.2 479.9,772.8 502.7,771.1 C545.1,767.9 613.2,762.8 691.2,760.8 C707.3,760.4 722.7,760.1 722.7,760.1 C766.3,759.3 777.3,760 822.8,759.4 C856.2,759 856,758.6 874.2,758.7 C901.6,758.9 924.1,759.9 939.3,760.8 C948.4,761.5 966.9,762.9 985.2,764.9 C988.8,765.3 994.1,765.9 1001,767.6 C1009.3,769.7 1015.9,772.4 1020.2,774.5 C1014.8,782.7 1009.3,790.9 1003.8,799.2 C985.7,826 967.3,851.5 949,876 C946.1,877.8 940.8,880.6 933.9,882.9 C919.2,887.7 906.7,886.6 902.4,886.3 C884.4,885 840.7,885.8 777,887.7 C748.7,887 720.3,886.3 692,885.6 C683.8,898.2 675.6,910.7 667.3,923.3 C612.5,920.3 557.7,917.4 502.8,914.4 C513.8,902.3 524.7,890.2 535.7,878.1 C454.5,871.1 373.4,864.2 292.3,857.4 L292.3,857.4 Z" id="Path" fill="#FFFFFF"></path>
<path d="M349.8,839.8 C399.2,843.1 448.5,846.9 497.8,851.3 C499.7,851.5 499.7,848.5 497.8,848.3 C448.5,843.9 399.2,840.1 349.8,836.8 C347.9,836.7 347.9,839.7 349.8,839.8 L349.8,839.8 Z" id="Path" fill="#161616"></path>
<path d="M730.2,864.7 C781.8,864.3 833.5,865.4 885.1,868 C887,868.1 887,865.1 885.1,865 C833.5,862.4 781.9,861.3 730.2,861.7 C728.3,861.7 728.3,864.7 730.2,864.7 Z" id="Path" fill="#161616"></path>
<path d="M439.2,809.5 C464.2,813.9 489.6,813.3 514.9,813.1 C541.7,812.9 568.5,813.5 595.3,814.4 C648.2,816.3 701.1,819.8 754,822 C784.4,823.3 814.9,824.1 845.3,824.1 C847.2,824.1 847.2,821.1 845.3,821.1 C739.3,821.4 633.7,810.2 527.8,810.1 C498.5,810.1 469,811.8 440,806.7 C438.2,806.3 437.3,809.2 439.2,809.5 Z" id="Path" fill="#161616"></path>
<path d="M680.2,788.1 C755.4,788.2 830.6,790.4 905.7,794.7 C907.6,794.8 907.6,791.8 905.7,791.7 C830.6,787.4 755.4,785.2 680.2,785.1 C678.3,785.1 678.3,788.1 680.2,788.1 Z" id="Path" fill="#161616"></path>
<path d="M1019.2,773.6 C997,807.5 973.8,840.6 949.5,872.9 C948.3,874.4 950.9,875.9 952.1,874.4 C976.4,842.1 999.7,808.9 1021.8,775.1 C1022.9,773.5 1020.3,772 1019.2,773.6 Z" id="Path" fill="#161616"></path>
<path d="M318,836.5 C348.8,815.2 380,793.8 414.8,779.5 C416.6,778.8 415.8,775.9 414,776.6 C378.9,791 347.5,812.5 316.4,833.9 C314.9,835 316.4,837.6 318,836.5 Z" id="Path" fill="#161616"></path>
<path d="M411.9,779.9 C491.3,772.6 570.8,767.3 650.4,764.2 C730,761.1 809.7,759.9 889.4,761.1 C911.7,761.4 934,762 956.2,764 C977.6,765.9 1000,768.1 1020,776.4 C1021.8,777.1 1022.6,774.2 1020.8,773.5 C1003.8,766.4 985.1,764.1 966.9,762.1 C947,759.9 927,758.9 907,758.4 C867.1,757.4 827.1,757.5 787.2,757.9 C707.2,758.6 627.2,761.5 547.3,766.5 C502.1,769.3 456.9,772.8 411.8,777 C409.9,777.1 409.9,780.1 411.9,779.9 L411.9,779.9 Z" id="Path" fill="#161616"></path>
<path d="M694,887.2 C768.5,889.7 843,889.8 917.4,887 C930.2,886.5 944.5,885 952.4,873.6 C953.5,872 950.9,870.5 949.8,872.1 C941.9,883.4 926.6,883.7 914.2,884.1 C897.1,884.6 880,885.3 862.8,885.6 C826.8,886.3 790.8,886.3 754.8,885.7 C734.5,885.4 714.2,884.8 693.9,884.2 C692.1,884.1 692.1,887.1 694,887.2 L694,887.2 Z" id="Path" fill="#161616"></path>
<path d="M316.5,833.8 C307.7,841.5 298.9,849.2 290.1,856.9 C289,857.8 290,859.4 291.2,859.5 C372.1,866.5 453,873.5 533.9,878.9 C535.8,879 535.8,876 533.9,875.9 C452.9,870.4 372,863.5 291.2,856.5 C291.6,857.4 291.9,858.2 292.3,859.1 C301.1,851.4 309.9,843.7 318.7,836 C320,834.6 317.9,832.5 316.5,833.8 L316.5,833.8 Z" id="Path" fill="#161616"></path>
<path d="M567.9,846.8 C544.6,867.3 522.7,889.2 502.3,912.5 C501,913.9 503.1,916.1 504.4,914.6 C524.8,891.3 546.8,869.3 570,848.9 C571.5,847.6 569.4,845.5 567.9,846.8 L567.9,846.8 Z" id="Path" fill="#161616"></path>
<path d="M569,848.9 C617.7,844.2 666.7,845.4 715.1,852.6 C717,852.9 717.8,850 715.9,849.7 C667.3,842.4 618,841.1 569,845.9 C567.1,846.1 567.1,849.1 569,848.9 L569,848.9 Z" id="Path" fill="#161616"></path>
<path d="M713.6,851.6 C697.2,875.1 680.7,898.6 664.3,922.1 C663.2,923.7 665.8,925.2 666.9,923.6 C683.3,900.1 699.8,876.6 716.2,853.1 C717.3,851.5 714.7,850 713.6,851.6 L713.6,851.6 Z" id="Path" fill="#161616"></path>
<path d="M502.7,916 C556.7,918.7 610.8,921.3 664.8,924 C666.7,924.1 666.7,921.1 664.8,921 C610.8,918.3 556.7,915.7 502.7,913 C500.8,912.9 500.8,915.9 502.7,916 Z" id="Path" fill="#161616"></path>
<path d="M544.6,897.2 C553,898.7 561.3,900.1 569.7,901.6 C571.6,901.9 572.4,899 570.5,898.7 C562.1,897.2 553.8,895.8 545.4,894.3 C543.5,894 542.7,896.9 544.6,897.2 Z" id="Path" fill="#161616"></path>
<path d="M564.1,888 C559,893.3 554.2,898.9 549.7,904.8 C548.5,906.3 551.1,907.8 552.3,906.3 C556.7,900.7 561.3,895.3 566.3,890.1 C567.5,888.8 565.4,886.6 564.1,888 L564.1,888 Z" id="Path" fill="#161616"></path>
<path d="M578.2,889.5 C578.3,884.3 582.2,880.9 587.3,881 C589.8,881 592.1,881.8 594.6,881.4 C599.2,880.7 603.2,877.8 605.3,873.8 C606.8,871.1 607.2,868 609.5,865.8 C612,863.4 615.5,862.3 618.9,862 C622,861.7 625.4,861.9 628.4,863 C630.9,864 633.5,865.9 633.6,868.9 C633.7,871.2 632.3,873.6 629.7,873.7 C629.8,874.7 630,875.7 630.1,876.6 C632.8,876.2 635.8,879.1 636.6,881.4 C637,882.5 637.1,883.9 637,885 C636.9,887.6 635.6,890.3 633.9,892.3 C632.2,894.3 630,895.9 627.5,896.6 C625.3,897.2 624.9,897.3 623.3,895.5 C621.5,893.4 622.3,893 624.2,891.4 C632.8,884.2 639.9,893.6 648.7,893.9 C654.7,894.1 660.4,890.4 661.6,884.3 C662.2,881.3 661.3,878.6 659.8,875.9 C658.1,872.9 657.1,872.3 657.8,868.6 C657.3,866.4 658,865.3 659.9,865.3 C661,864.8 662,864.8 663,865.5 C665.4,866.2 666.8,867.8 668.3,869.8 C669.4,871.3 672,869.9 670.9,868.3 C667.8,864 662.4,859.9 657,863.1 C651.9,866.1 653.7,871.4 656.2,875.5 C658.8,879.9 660.6,884.5 656,888.5 C650.8,893 644.9,890 639.8,887.5 C634.6,885 628.8,884.7 623.8,888 C620.8,889.9 616.4,894.9 619.7,898.5 C623.3,902.3 630.8,899.1 634,896.5 C638.1,893.2 640.8,887.7 640,882.3 C639.1,876.9 634.9,872.7 629.4,873.6 C627.7,873.9 628.1,876.6 629.8,876.5 C635.9,876.4 638.5,869 635.3,864.3 C630.9,857.8 619.9,857.7 613.3,860.1 C610,861.3 607.1,863.4 605.3,866.5 C604,868.7 603.6,871.4 602.2,873.5 C600,876.7 596.1,878.6 592.2,878.6 C587.6,878.5 584,877.2 580,880.2 C576.9,882.5 575.4,885.9 575.4,889.6 C575.2,891.5 578.2,891.5 578.2,889.5 L578.2,889.5 Z" id="Path" fill="#161616"></path>
<path d="M738,326.6 C737.8,350.5 737.5,374.3 737.3,398.2 C793.5,396.6 849.7,394.9 905.8,393.3 C917.3,402.2 928.7,411.1 940.2,420 C937.2,402.4 934.1,384.9 931.1,367.3 C930.2,352.8 929.2,338.3 928.3,323.8 C864.9,324.7 801.4,325.7 738,326.6 L738,326.6 Z" id="Path" fill="#E5261F"></path>
<path d="M731.9,149.2 C730,183.8 728.1,218.3 726.3,252.9 C716.4,265.2 706.5,277.6 696.6,289.9 C708.4,286.7 720.2,283.5 732,280.3 C802.2,277.9 872.4,275.5 942.6,273.1 C940.7,231.6 938.8,190 937,148.5 C868.5,148.7 800.2,148.9 731.9,149.2 L731.9,149.2 Z" id="Path" fill="#E5261F"></path>
<path d="M849.8,195.2 C851.2,220.1 869.1,240.6 893.6,245.2 C895.5,245.5 896.3,242.7 894.4,242.3 C871.2,238 854.1,218.8 852.8,195.2 C852.6,193.2 849.6,193.2 849.8,195.2 L849.8,195.2 Z" id="Path" fill="#FFFFFF"></path>
<path d="M894.3,245.1 C903.9,245.8 912.5,231.7 916,224.3 C920.6,214.3 922,203.3 919.9,192.6 C919.5,190.7 916.6,191.5 917,193.4 C918.8,202.7 917.8,212.2 914.2,221 C912.4,225.3 910.1,229.4 907.1,233 C904.2,236.6 899.4,242.5 894.3,242.1 C892.4,241.9 892.4,244.9 894.3,245.1 L894.3,245.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M902.7,242 C906.7,246.9 912.1,250.3 918.2,252 C920.1,252.5 920.9,249.6 919,249.1 C913.3,247.5 908.5,244.4 904.8,239.9 C903.6,238.4 901.5,240.6 902.7,242 L902.7,242 Z" id="Path" fill="#FFFFFF"></path>
<path d="M915.3,222.7 C916.5,224.6 917.8,226.4 919.3,228.1 C920.7,229.6 923.2,230.9 924.4,232.5 C927.9,237.2 921.2,246.3 918.3,249.9 C917.1,251.4 919.7,252.9 920.9,251.4 C924.2,247.1 928.8,239.9 928.6,234.1 C928.5,232.5 927.9,231.6 926.8,230.5 C923.6,227.1 920.4,225.2 917.8,221.1 C916.8,219.5 914.2,221 915.3,222.7 L915.3,222.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M913.4,225.7 C912.9,230.5 911.7,235.1 909.6,239.5 C909.3,240.2 908.6,241.1 908.4,241.8 C907.9,243.6 909.2,240.7 909.5,240.3 C910.7,238.2 911.7,236 912.7,233.9 C911.8,233.5 910.9,233.1 910,232.7 C909.1,235.6 907.6,237.8 905.2,239.8 C906,240.4 906.8,241 907.6,241.6 C909.7,238.1 911.7,234.6 913.8,231 C914.8,229.3 912.3,228 911.2,229.5 C909,232.5 906.8,235.5 904.6,238.4 C903.6,239.8 905.8,241.5 907,240.2 C909.4,237.4 911.2,234.4 912.4,231 C913.1,229.2 910.2,228.4 909.5,230.2 C908.4,233.2 906.9,235.7 904.8,238.1 C905.6,238.7 906.4,239.3 907.2,239.9 C909.4,236.9 911.6,233.9 913.8,231 C912.9,230.5 912.1,230 911.2,229.5 C909.1,233 907.1,236.5 905,240.1 C904.1,241.7 906.1,242.9 907.4,241.9 C910.2,239.7 912,236.9 913,233.5 C913.5,231.9 911,230.8 910.3,232.3 C909.2,234.4 908.1,236.6 907.1,238.7 C906.5,239.9 905.5,241.4 905.7,242.8 C905.8,244.5 907.5,246 909.3,245.4 C911.7,244.6 912.9,240.2 913.7,238.1 C915.3,234.1 916.2,229.9 916.7,225.6 C916.6,223.8 913.6,223.8 913.4,225.7 L913.4,225.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M885.6,240.6 C877.3,239.3 870.3,244.7 864.7,250.3 C858.5,256.5 853.9,264 852.3,272.6 C851.9,274.5 854.8,275.3 855.2,273.4 C856.5,266.3 859.9,260.1 864.7,254.7 C869.5,249.2 876.9,242.2 884.8,243.5 C886.7,243.8 887.5,240.9 885.6,240.6 L885.6,240.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M875.6,198.7 C878.7,206.8 882.2,214.8 885.9,222.6 C886.5,223.8 888.3,223.4 888.6,222.2 C889.5,218.6 889.9,215.1 889.7,211.4 C889.6,209.5 886.6,209.5 886.7,211.4 C886.9,214.8 886.6,218.1 885.7,221.4 C886.6,221.3 887.5,221.2 888.4,221 C884.8,213.4 881.4,205.7 878.4,197.8 C877.8,196.1 874.9,196.9 875.6,198.7 L875.6,198.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M861.7,209.6 C861,208.3 862.3,206.9 863.5,206.5 C865.3,205.9 867.2,206.6 869,207.1 C870.8,207.7 871.6,204.8 869.8,204.2 C866.9,203.3 863.4,202.6 860.8,204.6 C858.8,206.2 857.9,208.8 859.2,211.1 C860,212.8 862.6,211.3 861.7,209.6 L861.7,209.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M893.1,202.8 C894.1,198.4 899,196.5 902.5,199.7 C903.9,201 906.1,198.9 904.6,197.6 C899.6,193 891.7,195.3 890.2,202 C889.8,203.9 892.7,204.7 893.1,202.8 L893.1,202.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M899.5,206.1 C899.4,206.2 899.2,206.4 899.1,206.5 C898.5,207.1 898.5,208 899.1,208.6 C899.7,209.2 900.6,209.2 901.2,208.6 C901.3,208.5 901.5,208.3 901.6,208.2 C902.2,207.6 902.2,206.7 901.6,206.1 C901,205.5 900.1,205.5 899.5,206.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M906.2,203.3 C906.3,203.6 906.5,203.8 906.6,204.1 C907,204.8 908,205 908.7,204.6 C909.4,204.2 909.6,203.3 909.2,202.5 C909.1,202.2 908.9,202 908.8,201.7 C908.4,201 907.4,200.8 906.7,201.2 C906,201.6 905.8,202.5 906.2,203.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M905.3,210.1 C905.4,210.2 905.6,210.4 905.7,210.5 C906.3,211.1 907.2,211.1 907.8,210.5 C908.4,209.9 908.4,209 907.8,208.4 C907.7,208.3 907.5,208.1 907.4,208 C906.8,207.4 905.9,207.4 905.3,208 C904.7,208.6 904.7,209.5 905.3,210.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M864,216.8 L864,217.2 C864,218 864.7,218.7 865.5,218.7 C866.3,218.7 867,218 867,217.2 C867,217.1 867,216.9 867,216.8 C867,216 866.3,215.3 865.5,215.3 C864.6,215.3 864,215.9 864,216.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M870.8,214 C870.3,214 869.9,214 869.4,214 C870,214.5 870.9,214.6 871.5,214 C872.1,213.4 872.1,212.4 871.5,211.9 C870.6,211.1 869.5,211.1 868.6,211.9 C868,212.4 868.1,213.5 868.6,214 C869.3,214.6 870.2,214.5 870.8,214 L870.8,214 Z" id="Path" fill="#FFFFFF"></path>
<path d="M872.4,219.1 C872.4,219 872.4,218.8 872.4,218.7 C872.4,217.9 871.7,217.2 870.9,217.2 C870.1,217.2 869.4,217.9 869.4,218.7 L869.4,219.1 C869.4,219.9 870.1,220.6 870.9,220.6 C871.7,220.5 872.4,219.9 872.4,219.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M865.1,192.2 C862.6,190.6 859.4,191.4 857.6,193.7 C857.1,194.3 857.5,195.4 858.1,195.8 C858.9,196.3 859.7,195.9 860.2,195.3 C861,194.3 862.5,194.2 863.5,194.9 C865.3,195.8 866.8,193.2 865.1,192.2 L865.1,192.2 Z" id="Path" fill="#FFFFFF"></path>
<path d="M889,188.8 C890.2,188.3 891.5,188 892.9,187.9 C894.8,187.8 894.8,184.8 892.9,184.9 C891,185 889.2,185.4 887.5,186.2 C886.8,186.5 886.6,187.6 887,188.3 C887.4,189 888.2,189.1 889,188.8 L889,188.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M889.7,230.8 C894.1,231.2 898.2,228.3 899.6,224.1 C900.2,222.3 897.3,221.5 896.7,223.3 C895.7,226.3 892.8,228.1 889.7,227.8 C887.8,227.6 887.8,230.6 889.7,230.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M928.3,234.4 C931.6,234.2 934.7,234.9 937.6,236.5 C939.3,237.4 940.8,234.8 939.1,233.9 C935.7,232.1 932.1,231.2 928.3,231.4 C926.4,231.5 926.4,234.5 928.3,234.4 Z" id="Path" fill="#FFFFFF"></path>
<path d="M854.3,162.4 C845.9,166.2 839.4,173.6 837.1,182.6 C835.7,188.1 836.7,193.5 836.5,199.1 C836.2,205.4 833.3,211 831.4,216.9 C825.9,234 835.3,252.8 852.7,258 C854.6,258.5 855.3,255.7 853.5,255.1 C845.2,252.6 838.5,246.5 835,238.6 C831.2,229.9 832.7,221.7 835.9,213.1 C837.3,209.4 838.7,205.7 839.2,201.7 C839.8,196.9 838.8,192.1 839.3,187.3 C840.2,177.4 846.9,169 855.8,165 C857.5,164.2 856,161.7 854.3,162.4 L854.3,162.4 Z" id="Path" fill="#FFFFFF"></path>
<path d="M852,195 C862.7,190 870.7,181.3 874.9,170.3 C875.6,168.5 872.7,167.7 872,169.5 C868.1,179.7 860.4,187.8 850.5,192.4 C848.7,193.2 850.3,195.8 852,195 Z" id="Path" fill="#FFFFFF"></path>
<path d="M876.2,169.7 C879.5,175.5 886.4,178.1 892.5,180.1 C900.2,182.7 908.3,183.8 916.4,183.7 C918.3,183.7 918.3,180.7 916.4,180.7 C909.7,180.8 903.1,180 896.7,178.2 C890.5,176.5 882.2,174.1 878.8,168.1 C877.9,166.5 875.3,168 876.2,169.7 L876.2,169.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M917.1,185.4 C919.4,181.3 925.3,181.8 926.7,186.5 C928.1,191.1 924.3,194.9 919.9,195.4 C918,195.6 918,198.6 919.9,198.4 C926.6,197.6 932.2,191.3 929.1,184.5 C926.2,178.3 917.8,178.2 914.5,184 C913.6,185.5 916.1,187 917.1,185.4 L917.1,185.4 Z" id="Path" fill="#FFFFFF"></path>
<path d="M919,196.5 C916.8,209.3 918.1,226.6 929.1,235.3 C930.6,236.5 932.7,234.4 931.2,233.2 C921.2,225.3 919.8,209.2 921.9,197.4 C922.3,195.4 919.4,194.6 919,196.5 L919,196.5 Z" id="Path" fill="#FFFFFF"></path>
<path d="M853.8,165.8 C860.4,162.4 867.4,158.7 875,158.8 C881.5,158.9 886.9,161.9 893.5,160.7 C900.4,159.5 906.7,156.3 913.9,155.9 C921.3,155.5 929.3,156.7 934.5,162.4 C935.8,163.8 937.9,161.7 936.6,160.3 C926.5,149.3 910.3,153 897.8,156.6 C892.8,158.1 888.4,158.5 883.3,157.2 C879.7,156.3 876.4,155.6 872.6,155.9 C865.4,156.6 858.7,159.9 852.4,163.2 C850.6,164.1 852.1,166.7 853.8,165.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M852.7,255.4 C852.4,255.5 852,255.6 851.7,255.6 C850.1,256 850.4,258 851.7,258.5 C854.1,259.5 856.6,259.8 859.2,259.5 C861.1,259.3 861.1,256.3 859.2,256.5 C856.9,256.8 854.7,256.5 852.5,255.6 L852.5,258.5 C852.8,258.4 853.2,258.3 853.5,258.3 C855.3,257.9 854.5,255 852.7,255.4 Z" id="Path" fill="#FFFFFF"></path>
<path d="M749.9,185.7 C751.4,188 755,187.5 755.5,184.7 C755.7,183.8 754.3,183.4 754.1,184.3 C753.8,185.7 752.1,186.2 751.2,185 C750.7,184.2 749.4,184.9 749.9,185.7 L749.9,185.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M761.4,184.6 C762,185.6 762.7,186.7 764,186.9 C765.1,187.1 766.1,186.6 766.5,185.5 C766.8,184.6 765.4,184.2 765.1,185.1 C764.9,185.5 764.3,185.4 764,185.2 C763.5,184.9 763.2,184.3 762.9,183.7 C762.2,183 760.9,183.7 761.4,184.6 L761.4,184.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M758.2,187.3 C758.3,187.5 758.4,187.7 758.5,187.9 L758.5,187.8 C758.4,188 758.4,188.2 758.3,188.3 C758.3,188.3 758.3,188.2 758.4,188.2 C758.2,188.3 758,188.3 757.9,188.4 L758,188.4 C757.8,188.3 757.6,188.2 757.4,188 C757.2,187.7 757.1,188.3 757.1,188.5 C757.1,188.9 757.2,189.4 757.2,189.8 C757.2,190.2 757.2,190.6 757,190.9 C756.9,191.1 756.5,191.4 756.3,191.2 C755.6,190.6 754.5,191.6 755.2,192.3 C755.9,192.9 756.7,192.9 757.5,192.4 C758.3,191.9 758.6,191 758.6,190 C758.6,189.3 758.5,188.8 758.7,188.2 C758.8,187.8 758.8,187.5 758.6,187.2 C758,186.4 757.1,187 757,187.8 C757,188 757.2,188.3 757.4,188.4 L757.5,188.4 C758.3,189.1 759.1,187.8 758.2,187.3 L758.2,187.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M757.5,187.9 C757.8,189.3 757.4,190.8 758.5,192 C759.3,192.9 760.5,193.1 761.5,192.3 C762.2,191.7 761.2,190.6 760.4,191.2 C759.8,191.7 759.2,190.2 759.2,189.9 C759.1,189.1 759.1,188.3 759,187.5 C758.7,186.6 757.3,187 757.5,187.9 L757.5,187.9 Z" id="Path" fill="#FFFFFF"></path>
<path d="M751.7,180.8 L753.9,180.8 C754.9,180.8 754.9,179.3 753.9,179.3 C753.2,179.3 752.4,179.3 751.7,179.3 C750.7,179.3 750.7,180.8 751.7,180.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M762.6,181.1 C763.3,181.1 763.9,181.2 764.5,181.6 C765.3,182.1 766.1,180.8 765.3,180.3 C764.5,179.8 763.6,179.6 762.7,179.6 C761.6,179.6 761.6,181.1 762.6,181.1 L762.6,181.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M757.6,197.9 C747.8,198.5 748.7,188.1 746.4,181.7 C745.8,179.8 744.7,178.2 744,176.3 C741.4,168.9 747.1,174.1 749,176.8 C749.6,177.6 750.9,176.8 750.3,176 C749.2,174.4 745.2,168.5 742.8,169.2 C740.3,169.9 741.9,175.2 742.5,176.7 C743.6,179.7 745.1,182.1 745.7,185.3 C746.2,188.2 746.3,191.2 747.8,193.8 C749.8,197.4 753.4,199.6 757.5,199.3 C758.5,199.4 758.5,197.9 757.6,197.9 L757.6,197.9 Z" id="Path" fill="#FFFFFF"></path>
<path d="M750.7,177.3 C755.5,174.7 760.5,174.5 765.4,176.8 C765.8,177 766.2,176.9 766.4,176.5 C767.7,174.1 769.3,172.3 771.5,170.7 C771.1,170.5 770.6,170.3 770.2,170.2 C770.4,175.7 770.6,181.5 769.7,186.9 C768.4,194.5 763.4,197.3 756.2,198.2 C755.3,198.3 755.2,199.8 756.2,199.7 C762.1,198.9 767.5,197.5 770,191.6 C772.7,185.2 772,177 771.7,170.2 C771.7,169.5 770.9,169.3 770.4,169.7 C769,170.8 767.4,173.7 765.9,174.5 C764.2,175.4 762.2,174.1 760.3,173.9 C756.6,173.5 753.1,174.4 749.8,176.1 C749.1,176.5 749.8,177.8 750.7,177.3 L750.7,177.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M749.9,195.5 C747.2,199.9 748.2,205.2 749,210.1 C750.2,217.6 752.4,224.9 754.6,232.1 C754.9,233 756.3,232.6 756,231.7 C754.4,226.3 752.7,220.8 751.5,215.3 C750.2,209.6 747.9,201.6 751.2,196.3 C751.7,195.5 750.4,194.7 749.9,195.5 L749.9,195.5 Z" id="Path" fill="#FFFFFF"></path>
<path d="M754.5,231.5 C752.6,231.8 746.5,233.8 748.4,236.8 C749.1,237.9 750.6,238.1 751.8,238.2 C754.1,238.4 756.4,238 758.6,237.3 C759.5,237 759.1,235.6 758.2,235.9 C756.2,236.5 753,237.5 750.9,236.7 C750.5,236.5 749.7,235.8 749.9,235.3 C750,235 750.9,234.6 751.3,234.4 C752.5,233.8 753.7,233.3 755,233.1 C755.9,232.7 755.5,231.3 754.5,231.5 L754.5,231.5 Z" id="Path" fill="#FFFFFF"></path>
<path d="M758.9,208.3 C759.6,216.5 760.5,224.6 761.7,232.8 C761.8,233.8 763.3,233.3 763.1,232.4 C761.9,224.4 761,216.4 760.3,208.3 C760.4,207.3 758.9,207.3 758.9,208.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M762.3,232.2 C760.1,232.5 756.2,234.4 758.2,237.3 C760.4,240.4 766.6,237.8 769.2,236.8 C770.1,236.5 769.7,235 768.8,235.4 C767.1,236.1 765.4,236.7 763.6,237 C762.8,237.1 761.3,237.4 760.5,237 C759.2,235.5 759.3,234.5 760.8,234.1 C761.3,233.9 761.8,233.8 762.3,233.8 C763.2,233.6 763.2,232.1 762.3,232.2 L762.3,232.2 Z" id="Path" fill="#FFFFFF"></path>
<path d="M769.5,191.6 C773.5,194 774.4,198.1 776.2,202.1 C777.5,205 779.1,207 781.5,209.1 C785,212.1 788.2,214.4 789.5,219.2 C790.8,224.2 789.7,229.4 788.3,234.2 C788,235.1 789.5,235.5 789.7,234.6 C792.1,226.3 793,217.2 786,210.8 C784.4,209.3 782.5,208.1 781,206.6 C778.8,204.3 777.7,201.7 776.6,198.8 C775.2,195.3 773.7,192.3 770.4,190.3 C769.4,189.8 768.7,191.1 769.5,191.6 L769.5,191.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M781.5,216.7 C778.2,216.2 775.5,219 774.5,222.1 C773.1,226.3 776.7,230.5 779.1,233.5 C779.3,233.1 779.5,232.6 779.6,232.2 C776.4,232.5 773.8,233.5 771.2,235.4 C770.9,235.6 770.7,236.1 770.9,236.4 C773.4,239.6 779.1,238.2 782.6,238.2 C786.3,238.1 790,237.8 789.9,233.1 C789.9,232.1 788.4,232.1 788.4,233.1 C788.5,237.9 779,236.8 776.4,236.8 C775.8,236.8 775.3,236.8 774.7,236.8 C772.8,236.5 772.4,236.1 773.5,235.6 C774,234.3 778.5,233.8 779.6,233.7 C780.3,233.6 780.5,232.9 780.1,232.4 C778.8,230.7 777,228.7 776.3,226.6 C775.3,223.9 776.5,217.4 781.1,218.1 C782.1,218.3 782.5,216.9 781.5,216.7 L781.5,216.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M768.1,223.6 C768.5,227.6 768.7,231.6 768.8,235.6 C768.8,236.6 770.3,236.6 770.3,235.6 C770.2,231.6 770,227.6 769.6,223.6 C769.5,222.7 768,222.7 768.1,223.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M769.7,232.8 C772.8,234.3 776.1,234.6 779.3,233.6 C780.2,233.3 779.8,231.9 778.9,232.2 C776,233 773.1,232.8 770.4,231.5 C769.6,231.1 768.8,232.4 769.7,232.8 L769.7,232.8 Z" id="Path" fill="#FFFFFF"></path>
<path d="M790.8,227.9 C793.6,226 795.6,223.5 796.3,220.1 C797.4,214.7 794,209.7 796.4,204.4 C798.3,200.3 801.5,197.2 802.4,192.7 C803.4,187.6 801.4,182.4 802.6,177.3 C802.9,176.1 803.3,174.5 804.2,173.5 C805.1,171.5 806.5,172 808.2,175.1 C808,175.6 807.8,176.1 807.6,176.6 C807.3,179.1 805.4,181.7 804.9,184.3 C804.5,186.6 804.7,188.9 804.4,191.2 C804,194.5 802.4,197.1 800.9,200.1 C798.8,204.4 799.2,208.2 799.4,212.9 C799.7,220 796.9,225.9 790.5,229.3 C789.6,229.8 790.4,231.1 791.3,230.6 C795.5,228.3 798.8,224.8 800.2,220.2 C802.4,213.2 799.4,206.5 802.9,199.6 C804.2,196.9 805.5,194.6 805.9,191.6 C806.4,188.1 806.1,185.1 807.2,181.6 C808,179.1 812.5,172.3 809.1,169.9 C806.9,168.4 804,171 802.9,172.6 C799.9,176.8 800.8,182.2 801,187.1 C801.2,191.6 800.4,195.1 798,198.9 C796.7,200.9 795.3,202.9 794.5,205.2 C791.8,213 798.8,220.7 790.1,226.7 C789.3,227.2 790,228.5 790.8,227.9 Z" id="Path" fill="#FFFFFF"></path>
<path d="M824.7,254 C821.2,253.3 818.1,254.4 815.3,256.6 C813.3,258.1 810.7,260.3 811.1,263.1 C812.3,270.4 823.8,266.1 827.4,263.7 C829,262.6 827.5,260 825.9,261.1 C824.4,262.1 822.9,262.9 821.2,263.4 C820.1,263.7 819,264 817.9,264 C816.4,264.1 815.8,264.2 815,262.7 C814.2,261.2 814.6,261.2 815.7,260.1 C816.4,259.4 817.1,258.9 817.9,258.3 C819.7,257.1 821.7,256.4 823.9,256.8 C825.8,257.3 826.6,254.4 824.7,254 Z" id="Path" fill="#FFFFFF"></path>
<path d="M821.7,253.1 C821.1,248.6 819.8,244.3 817.5,240.3 C816,237.7 812.7,232 809.2,231.6 C801.6,230.7 809.8,250.6 811.1,253.3 C812,255 814.5,253.5 813.7,251.8 C812.2,248.7 811,245.6 810.2,242.3 C809.8,240.6 809,238.1 809.2,236.5 C809.2,236 809.1,235.6 809.1,235.1 C809.9,235.5 810.6,236.1 811.2,236.8 C815.4,241.1 817.9,247.2 818.7,253.1 C819,254.9 822,255 821.7,253.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M813.8,251.7 C811.6,247.5 802.5,233.3 796.3,238.8 C790.1,244.3 801.2,256.2 805.1,259.8 C806.5,261.1 808.6,259 807.2,257.7 C805.1,255.7 803.1,253.6 801.5,251.3 C800.6,250 796.2,243.5 797.7,242.1 L801.3,241.5 C802.2,242.1 803,242.8 803.8,243.5 C804.7,244.3 805.6,245.3 806.5,246.2 C808.4,248.3 809.9,250.7 811.2,253.2 C812.1,255 814.7,253.5 813.8,251.7 L813.8,251.7 Z" id="Path" fill="#FFFFFF"></path>
<path d="M804.9,258.6 C801.5,255.8 796.5,258.6 796.8,262.9 C797.2,268.7 803.7,269.9 808.2,268.6 C810.1,268.1 809.3,265.2 807.4,265.7 C805,266.4 801.7,266.6 800.2,264 C799.6,263 799.5,261.8 800.4,261 C801,260.4 802.1,260.1 802.8,260.7 C804.2,262 806.3,259.9 804.9,258.6 Z" id="Path" fill="#FFFFFF"></path>
<path d="M798.4,262.9 C794.2,264.2 794.2,269.2 796.6,272.2 C799,275.2 803.6,277.2 807,274.6 C808.5,273.4 806.4,271.3 804.9,272.5 C803.3,273.7 800.7,272.1 799.6,271 C798.4,269.8 796.8,266.6 799.3,265.8 C801.1,265.2 800.3,262.3 798.4,262.9 L798.4,262.9 Z" id="Path" fill="#FFFFFF"></path>
<path d="M823,254.2 C830.3,254.2 832.5,267.9 831.1,273 C830.6,274.9 833.5,275.7 834,273.8 C836,266.6 832.6,251.2 823,251.2 C821,251.2 821,254.2 823,254.2 Z" id="Path" fill="#FFFFFF"></path>
<path d="M751.6,358.4 L855.1,358.4 C857,358.4 857,355.4 855.1,355.4 C820.6,355.4 786.1,355.4 751.6,355.4 C749.7,355.4 749.7,358.4 751.6,358.4 Z" id="Path" fill="#E8E8E8"></path>
<path d="M778.1,371.8 L873.4,371.8 C875.3,371.8 875.3,368.8 873.4,368.8 C841.6,368.8 809.8,368.8 778.1,368.8 C776.2,368.8 776.2,371.8 778.1,371.8 Z" id="Path" fill="#E8E8E8"></path>
<path d="M867.6,357.9 L879.6,357.9 C881.5,357.9 881.5,354.9 879.6,354.9 C875.6,354.9 871.6,354.9 867.6,354.9 C865.7,354.9 865.7,357.9 867.6,357.9 Z" id="Path" fill="#E8E8E8"></path>
<path d="M901.7,366.9 C898,365.2 895.2,362.2 894.2,358.2 C893.7,356.3 893.3,353.5 894.6,351.8 C897.1,348.3 900.1,353.1 900.9,355.6 C901.3,356.9 903.5,357.1 903.8,355.6 C903.9,354.9 904.1,354.2 904.3,353.5 C905.1,350.5 907,350.8 910.1,354.2 C910.6,356 909.4,359 908.6,360.5 C906.9,363.9 904.1,366.3 900.7,368 C899,368.8 900.5,371.4 902.2,370.6 C908.6,367.6 915.6,358.8 912.4,351.3 C911.4,349 909,347.2 906.4,347.6 C902.9,348.1 901.4,351.8 900.8,354.8 L903.7,354.8 C902,349.3 894.8,342.9 891.5,351 C888.6,358.1 893.8,366.5 900.2,369.5 C901.9,370.3 903.4,367.7 901.7,366.9 L901.7,366.9 Z" id="Path" fill="#E8E8E8"></path>
<path d="M481.7,734.3 C479.4,749.9 477.1,765.6 474.8,781.2 C432.5,794.1 411.8,802.5 412.6,806.2 C413.6,810.8 446.2,808.6 510.6,799.6 C511.5,777.2 512.5,754.9 513.4,732.5 C502.8,733.1 492.3,733.7 481.7,734.3 L481.7,734.3 Z" id="Path" fill="#161616"></path>
<path d="M502.2,591.2 C500.1,592.8 498.9,594.6 494.4,603.3 C490.8,610.2 489.1,613.7 487.9,616.3 C479.8,634.7 471.9,663.6 471.9,663.6 C465.6,686.5 462.4,697.9 460.2,710 C457,727.1 455.7,741.6 455,752.1 C460.9,754.8 468,757.5 476.3,759.5 C495.9,764.2 512.8,762.8 524,760.8 C526,746.7 528.8,731.4 532.7,715.3 C536.1,700.9 540,687.6 544,675.4 C548.3,678.1 554.6,682.3 562.2,687.5 C587.1,704.8 594.9,713.2 609.5,722.6 C619.1,728.8 633.3,736.6 652.9,742.6 C657.4,742 669.7,739.8 680.2,729.6 C696,714.1 694.4,693.1 694.1,690.1 C687.5,683.1 678.2,673.7 666.3,663.6 C645.3,645.8 627.2,634.9 614.3,627.2 C603.9,621 592.3,615.3 569.2,603.8 C569.2,603.8 542.1,590.4 517.2,588.2 C512.8,587.8 506.9,587.6 502.2,591.2 L502.2,591.2 Z" id="Path" fill="#FFFFFF"></path>
<path d="M456.2,750.8 C458.8,724.6 463.6,698.7 470.5,673.4 C473.9,661 477.8,648.7 482.2,636.5 C486.6,624.4 491,611.7 497.2,600.3 C500.9,593.5 505.9,591.2 513.4,590.9 C520.2,590.6 527,591.5 533.6,593.1 C545.7,595.9 557.4,600.6 568.8,605.5 C590.4,614.7 611.2,626 630.7,639.2 C652.9,654.2 673.4,671.5 691.9,690.9 C693.2,692.3 695.4,690.2 694,688.8 C659,652.3 616.8,622.9 570.3,603 C558.9,598.1 547.3,593.5 535.2,590.5 C525.2,588.1 509.7,584.8 500.6,591.3 C496.7,594.1 494.5,598.6 492.5,602.9 C489.9,608.6 487.5,614.4 485.1,620.2 C479.8,633.3 475.1,646.6 471,660.2 C462.1,689.7 456.1,720.1 453.1,750.8 C453,752.7 456,752.7 456.2,750.8 L456.2,750.8 Z" id="Path" fill="#161616"></path>
<path d="M455.6,752.2 C476.2,763.8 500.4,767.1 523.4,761.4 C525.3,760.9 524.5,758 522.6,758.5 C500.4,764 477,760.9 457.1,749.6 C455.4,748.7 453.9,751.2 455.6,752.2 L455.6,752.2 Z" id="Path" fill="#161616"></path>
<path d="M526.4,759.2 C529.9,730.7 536.3,702.6 545.3,675.3 C545.9,673.5 543,672.7 542.4,674.5 C533.3,702.1 527,730.4 523.4,759.2 C523.2,761.1 526.2,761.1 526.4,759.2 L526.4,759.2 Z" id="Path" fill="#161616"></path>
<path d="M536,672.4 C576.1,692.8 606,732 651.1,742.5 C653,742.9 653.8,740 651.9,739.6 C607.1,729.1 577.3,690.1 537.5,669.8 C535.8,668.9 534.3,671.5 536,672.4 L536,672.4 Z" id="Path" fill="#161616"></path>
<path d="M490.2,762.4 C500.4,730 511.6,697 523.9,663.4 C526.8,655.4 529.8,647.5 532.8,639.6 C553.7,650.6 574.7,661.6 595.6,672.6 C624.8,688 654,703.5 683.2,719.1 C682.4,722.8 679.5,732.9 670.4,738.3 C663.6,742.3 656.1,742 648.1,740.4 C623.3,735.4 607.7,720.4 576.5,697.1 C569.4,691.8 558.5,683.8 544.6,674.4 C541.9,682 539.3,689.9 536.8,698.2 C530.1,720.6 525.8,741.7 523,761 C517.2,762.5 509.5,763.8 500.7,763.5 C496.8,763.3 493.3,762.9 490.2,762.4 L490.2,762.4 Z" id="Path" fill="#6D6C6C" opacity="0.12"></path>
<path d="M542,673.3 C539.5,672.3 529.4,691.1 526.4,696.7 C518.7,711 508.7,732.1 499.4,760.2 C501.3,761 503.7,761.9 506.5,762.3 C513.9,763.6 519.9,761.8 523.2,760.5 C528.5,732.7 533.9,710.6 538.1,694.9 C540.7,685.1 543.8,674.1 542,673.3 Z" id="Path" fill="#6D6C6C" opacity="0.12"></path>
<path d="M385.5,746.4 C378.7,764.2 371.8,782.1 365,799.9 C325.1,813.2 305.7,822 306.6,826.3 C307.7,831.3 336.3,830.3 392.4,823.2 C399.1,801.5 405.8,779.9 412.6,758.2 C403.5,754.3 394.5,750.4 385.5,746.4 Z" id="Path" fill="#161616"></path>
<path d="M442.8,572.5 C435.1,577.9 430.7,584.3 428.5,587.7 C418.9,602.2 414,609.5 410.7,615.9 C401.3,634 395.3,649.2 392.5,656.7 C383,681.8 378.2,702.2 373.8,720.5 C370.6,734.2 368.3,745.6 366.9,753.5 C370.9,758.3 376.6,764 384.2,769.1 C400.2,779.8 416.3,782.3 425,783 C432.3,761.9 439.2,744.1 445,730.1 C451.1,715.1 455.6,705.1 463.7,693.7 C469.5,685.4 475.2,679.2 479.3,675 C483.8,681.3 490.3,689.8 498.8,699.3 C509.3,711 528.5,732.1 559.5,750.5 C584.6,765.4 604.3,770.7 624.1,776.1 C644.7,781.7 651,781.1 655.8,778.3 C675.5,766.7 665.5,720.4 664.9,717.6 C645.6,702.8 631.3,689.7 621.5,680.3 C612.7,671.8 602.8,661.5 585.5,646 C580.9,641.9 576.1,637.6 569.5,632.1 C566.4,629.5 554.9,620.1 535.2,606.5 C535.2,606.5 510.2,589.2 485.8,576.6 C485.8,576.6 479.6,573.4 468.9,570.1 C460,567.4 456.3,567.2 452.9,567.9 C451.7,568 448.2,568.8 442.8,572.5 L442.8,572.5 Z" id="Path" fill="#FFFFFF"></path>
<path d="M439.9,572.8 C395.8,621.8 377.2,687 365,750.3 C364.6,752.2 367.5,753 367.9,751.1 C380,688.3 398.3,623.5 442,574.9 C443.4,573.5 441.2,571.3 439.9,572.8 L439.9,572.8 Z" id="Path" fill="#161616"></path>
<path d="M366,753.8 C380.6,770.7 400.7,782 422.7,785.6 C424.6,785.9 425.4,783 423.5,782.7 C401.9,779.2 382.4,768.2 368.1,751.7 C366.9,750.2 364.8,752.3 366,753.8 Z" id="Path" fill="#161616"></path>
<path d="M425.6,784.2 C432,764.3 439.6,744.9 448.6,726 C456.8,708.9 465.2,689.2 479.9,676.6 C481.4,675.3 479.2,673.2 477.8,674.5 C462.9,687.3 454.3,707.2 446.1,724.5 C437,743.6 429.3,763.3 422.8,783.4 C422.1,785.2 425,786 425.6,784.2 L425.6,784.2 Z" id="Path" fill="#161616"></path>
<path d="M469.3,663.8 C510.4,720.4 566.4,771.2 638.4,780.8 C640.3,781.1 640.3,778.1 638.4,777.8 C567.6,768.4 512.4,718 471.9,662.3 C470.7,660.8 468.1,662.3 469.3,663.8 Z" id="Path" fill="#161616"></path>
<path d="M442.4,574.8 C458.9,562.7 479.9,576.1 495.1,584.3 C510.8,592.7 525.9,602 540.6,612.1 C570.2,632.6 597.5,656.4 621.9,682.9 C623.2,684.3 625.3,682.2 624,680.8 C583.8,637.1 535.5,600.4 482.1,574.3 C469.3,568 453.6,563 440.9,572.3 C439.4,573.3 440.9,575.9 442.4,574.8 L442.4,574.8 Z" id="Path" fill="#161616"></path>
<path d="M389.6,769.2 C396.2,755.6 407.8,731.6 422.1,701.3 C449.6,643.4 454.2,632.2 466.8,627.9 C488.6,620.6 509.3,642.5 557.2,676.7 C584,695.9 620.9,720 668,744.3 C668.9,749.5 670.8,763.7 662.5,772.7 C658.8,776.6 650.4,782.6 624.4,778.2 C614.4,776.5 567.6,767.6 510.8,711 C496.5,696.8 485.9,683.8 478.9,674.6 C476,678 471.6,683.5 466.8,690.5 C458.4,702.9 452.8,714.2 439.8,745.5 C435.6,755.5 430.4,768.3 424.6,783.2 C420.8,783.4 413.6,783.4 405.6,780.1 C397.4,777 392.2,772 389.6,769.2 Z" id="Path" fill="#6D6C6C" opacity="0.13"></path>
<path d="M471,661.2 C474.9,663.2 480.6,666.2 487.3,670.2 C529.6,695.4 530.6,710.7 562.1,729.4 C586.6,743.9 595.8,740.5 621,759.5 C630.8,766.9 638.1,774 642.8,778.9 C633.1,778.1 619.7,776.1 604.4,771.3 C584.4,765 570.6,756.7 560.4,750.5 C555.3,747.4 534.1,734.3 510.9,711 C499.3,699.5 484.8,683.1 471,661.2 L471,661.2 Z" id="Path" fill="#6D6C6C" opacity="0.12"></path>
<path d="M475.5,675 C474.1,673.2 463.6,677.7 454.4,684.7 C437.8,697.2 433.1,711.7 417.7,740.1 C413.2,748.4 406.4,760.5 397.3,774.7 C406.2,778.3 415.1,781.9 424,785.4 C426,780 441.3,739.1 452.7,714.4 C456.4,706.5 458.4,702.1 462,696.1 C470,682.9 476.8,676.7 475.5,675 L475.5,675 Z" id="Path" fill="#6D6C6C" opacity="0.12"></path>
<path d="M890.5,503.3 C893.1,504.7 893,506.2 896.3,509 C899,511.3 900,511 901.1,512.9 C902.3,515 902.5,517.4 902.5,519 C903.6,519 905.6,519.3 907.7,520.8 C908.3,521.2 912.4,524.1 913.5,530.4 C914.3,534.7 913.3,538.3 912.8,539.6 C913.9,540.6 915.6,542.4 916.2,545.3 C917,548.9 915.9,552.2 914.5,555.8 C910.4,565.9 906.7,570.1 902.5,578.6 C901.2,581.1 899.5,585 897.7,590 C897.6,593.8 897.6,600 898.4,607.5 C899.6,618.7 901.8,626.8 902.5,629.4 C906,642.4 912.2,672.8 912.8,700.7 C913.1,715 913.4,737.9 903.5,761.3 C899.8,770.1 894.3,782.5 883.2,787.6 C881.4,788.4 868.5,794.3 859.5,785 C856.2,781.6 854.5,777.4 853.7,774.5 C853.5,773 853.3,770.7 853.4,767.9 C853.7,755.8 859.3,747.1 861.3,743.8 C868.1,732.3 870.2,719.5 873.7,697.8 C875.9,684.4 875.4,672.8 874.4,650 C873.7,634.4 872.2,613.3 868.9,588.2 C867.2,587.7 865,586.7 863.4,584.3 C861,580.6 862.4,577.2 860.6,570.7 C859.2,565.8 858.1,566.7 855.8,560.2 C854.1,555.5 852.5,551.2 853.4,546.2 C853.6,545.2 854.5,539.3 857.9,537.9 C862.2,536 867,542.8 868.2,544.5 C870.6,547.9 871.8,551.5 872.3,553.7 C874.7,549.7 877.2,544.9 879.5,539.2 C880.6,536.6 881.5,534.1 882.3,531.7 C881.9,529.5 881.4,526.3 881,522.4 C880.5,517.2 880.3,514.5 880.9,511.1 C881.3,508.8 882.3,503.7 885.4,502.3 C887.3,501.6 889.4,502.7 890.5,503.3 L890.5,503.3 Z" id="Path" fill="#FFFFFF"></path>
<path d="M900.3,586.6 C905.2,577.8 911,569 915,559.7 C917.9,552.9 919.1,544.7 914.6,538.3 C913.5,536.7 910.9,538.2 912,539.8 C917.2,547.1 913.7,556.2 909.9,563.3 C905.9,570.6 901.8,577.8 897.7,585.1 C896.7,586.8 899.3,588.3 900.3,586.6 Z" id="Path" fill="#161616"></path>
<path d="M907.4,554.9 C914.7,545.2 920.6,521.8 903.6,518 C901.7,517.6 900.9,520.5 902.8,520.9 C917.6,524.2 910.9,545.2 904.8,553.4 C903.7,554.9 906.3,556.4 907.4,554.9 L907.4,554.9 Z" id="Path" fill="#161616"></path>
<path d="M899.5,546 C906.4,536.1 906.9,522.5 901.6,511.8 C900.7,510.1 898.2,511.6 899,513.3 C903.8,523.1 903.2,535.5 896.9,544.5 C895.8,546 898.4,547.5 899.5,546 Z" id="Path" fill="#161616"></path>
<path d="M893.6,538.3 C896.4,529.5 897.3,519.9 895.3,510.8 C894.2,505.9 889.3,497.3 883.2,502 C877.5,506.4 880.1,518.5 880.7,524.4 C881.3,530.3 880.6,534.5 877.5,539.6 C874.8,544 872.6,548.6 870.9,553.5 C870.2,555.3 873.1,556.1 873.8,554.3 C876.1,547.8 880.2,542.5 882.9,536.3 C885.4,530.5 883.7,524.2 883.3,518.1 C883.1,515.3 882.3,510.8 883.4,508.1 C883.5,506 884.8,505.6 887.3,506.7 C890.1,505.6 891.7,506.4 892,509.2 C892.7,511.1 893,513.3 893.2,515.3 C894,522.8 893.2,530.2 890.9,537.4 C890.2,539.4 893,540.2 893.6,538.3 L893.6,538.3 Z" id="Path" fill="#161616"></path>
<path d="M902.7,513.3 C901.5,508.7 896.3,505 891.8,508.1 C890.2,509.2 891.7,511.8 893.3,510.7 C896.1,508.8 899,511.3 899.8,514.1 C900.3,516 903.2,515.2 902.7,513.3 Z" id="Path" fill="#161616"></path>
<path d="M872.7,551.1 C871.1,545.2 867.2,537.7 860.6,536.5 C854.3,535.3 852.1,541.4 851.9,546.5 C851.4,556.1 856.5,562.7 859,571.5 C861,578.6 860.4,585.7 867.6,589.9 C869.3,590.9 870.8,588.3 869.1,587.3 C863.7,584.2 863.5,578.8 862.4,573.3 C861.6,568.9 859.5,565.2 857.7,561.1 C855.6,556.4 853.3,549.1 855.1,544 C855.2,543.5 855.3,543.1 855.4,542.6 C857.7,541.9 860,541.1 862.2,540.4 C863.5,540.8 865.1,542.9 866,543.9 C867.9,546.3 869,548.9 869.7,551.9 C870.3,553.8 873.2,553 872.7,551.1 L872.7,551.1 Z" id="Path" fill="#161616"></path>
<path d="M867,588.4 C871.2,623.1 875.7,659.1 872.6,694 C871.1,710.5 867,725.8 860.4,740.9 C855,753.3 851.1,765 853.7,778.6 C854.1,780.5 857,779.7 856.6,777.8 C853.7,762.6 859.9,750.1 865.6,736.5 C871.6,722.4 874.6,707.4 875.8,692.2 C878.5,657.8 874.2,622.5 870.1,588.4 C869.7,586.5 866.7,586.5 867,588.4 L867,588.4 Z" id="Path" fill="#161616"></path>
<path d="M897.3,584 C894.9,590.9 896.1,598.6 896.9,605.7 C897.8,613.2 899,620.7 900.4,628.1 C903.5,644.4 907.4,660.5 909.5,677 C911.6,693.2 911.7,709.6 909.9,725.8 C908.1,741.9 905,759.5 896,773.3 C891.7,779.9 885.3,786.3 877.2,787.8 C868.5,789.5 860.6,784.3 856.5,776.8 C855.6,775.1 853,776.6 853.9,778.3 C859.7,788.8 871.6,794 882.9,789 C896.3,783.1 903.4,768.1 907.3,754.8 C917.6,719.8 914.7,683.3 907.6,648 C905.6,638 903.4,628 901.8,617.9 C900.9,612.5 900.2,607.1 899.6,601.7 C899.1,596 898.3,590 900.2,584.5 C900.9,583 898,582.2 897.3,584 L897.3,584 Z" id="Path" fill="#161616"></path>
<path d="M907.1,521.7 C907.4,526.7 907.4,533.1 906.2,540.1 C903,559.3 893.5,571.4 889.1,576.2 C889,581.9 888.8,590.7 889.1,601.3 C890.3,648.9 897.7,672.2 898.9,694.5 C900.1,716.2 896.1,747.9 871.1,788.9 C874.4,789.2 879.6,789.2 885,786.3 C889.9,783.7 897.5,777.7 904.4,757.6 C910.7,739.2 917.6,705.5 909.9,666.9 C906.5,650.1 901.3,636.9 898.6,608.7 C897.9,601.2 897.6,594.9 897.4,590.6 C899.1,586.6 901.6,581.1 905.2,575.1 C911.1,565.2 914.9,561.9 915.9,554.8 C916.6,549.8 915.6,544.7 913.6,539.7 C913.8,538.4 914.6,533.1 912.2,527.9 C910.6,524.2 908.2,522.4 907.1,521.7 L907.1,521.7 Z" id="Path" fill="#6D6C6C" opacity="0.1"></path>
<path d="M897,597.999265 C896.5,598.1 898.1,615.5 901.3,650.3 C904.2,681 905.6,696.3 905.6,697.5 C906.6,743.1 892.6,775.3 894.9,776.4 C896.5,777.2 904.5,761 909.1,741.4 C915.4,714.3 912.9,690.8 911.4,677.3 C910,665.4 909.5,668.7 902.4,628.3 C898.9,608 897.5,597.9 897,597.999265 L897,597.999265 Z" id="Path" fill="#6D6C6C" opacity="0.11"></path>
<path d="M650.7,692.5 C641.2,711.8 638.5,728.8 636,745.4 C634.6,754.5 633.2,767.4 633.3,783 C664.5,791.3 692.3,795.8 715.1,798.2 C744.7,801.4 736,797.5 810.7,800.1 C848,801.4 867.2,802.7 872.5,792.5 C876.9,783.9 866.1,775.3 865.5,755.5 C865,739.6 871.3,726.6 876.3,718.5 C846.8,706.6 812.7,694.8 774.3,684.8 C736.1,674.8 700.7,668.4 669.2,664.4 C664.2,670.3 657,679.7 650.7,692.5 Z" id="Path" fill="#D6D6D6"></path>
<path d="M653.3,689.1 C660.6,703.7 676,728.7 704.7,742.7 C715.9,748.2 728.6,751.7 766,753.6 C790.2,754.8 823.8,755.4 864.5,752.1 C863.9,760.8 865.7,767 867.4,771.1 C870,777.2 873.6,780.7 873.2,787.1 C873.1,788.6 872.9,792.4 870.3,795.5 C866.7,799.7 860.8,800.1 857.9,800.2 C829.1,801.6 819.2,800.6 819.2,800.6 C795,798 773.5,798.6 755.7,799.1 C748,799.3 743.9,799.6 735.6,799.5 C731,799.4 718.3,799.1 699.9,796.6 C672.8,792.9 647.8,786.6 633.9,782.7 C633.6,764.8 635.2,750 636.8,739.3 C639.3,722.9 642.3,713.8 643.4,710.9 C646.6,701.7 650.3,694.3 653.3,689.1 L653.3,689.1 Z" id="Path" fill="#6D6C6C" opacity="0.12"></path>
<path d="M642.3,715.3 C646.2,723.2 652.9,734.4 664.2,744.8 C683.2,762.2 703.7,766.8 728,772.5 C779.5,784.7 832,798.6 831.6,800.9 C831.4,802.3 811.8,799.1 778,798.7 C769.8,798.6 764.5,798.5 756.8,798.7 C741.8,799 737.7,799.8 728.7,799.4 C719,799 711.9,797.6 704.3,796.1 C673.8,790 643.4,783.3 633.6,781.1 C633.7,774.7 634.1,768 634.7,761 C636.2,744.3 639,728.9 642.3,715.3 L642.3,715.3 Z" id="Path" fill="#6D6C6C" opacity="0.1"></path>
<path d="M934.3,773.7 C913.1,776.7 901,777.3 881.2,782.9 C872,785.5 864.6,788.2 859.7,790.2 C856.6,781.5 852.9,767.4 854.5,750.2 C855.4,740 857.9,731.5 860.5,725.1 C866,726.5 872.9,727.8 881,728.3 C891.1,728.9 899.7,728.1 906.2,727 C908.7,718 911.1,709.1 913.6,700.1 C918.1,698.9 922.7,697.6 927.2,696.4 C927.6,693.9 928.1,691.4 928.5,688.9 C934.1,691.5 943,695.7 954.1,700.4 C975,709.4 978,709.7 982.5,713.7 C994.6,724.6 1000.4,746.3 991.5,758.8 C986.1,766.3 968.8,768.8 934.3,773.7 Z" id="Path" stroke="#161616" stroke-width="2" fill="#FFFFFF"></path>
<path d="M926.8,688.7 C926.1,693.4 925.8,698.1 926,702.9 C926.1,704.8 929.1,704.8 929,702.9 C928.8,698.4 929.1,694 929.7,689.5 C929.9,687.6 927,686.8 926.8,688.7 L926.8,688.7 Z" id="Path" fill="#161616"></path>
<path d="M959.4,714.2 C960.2,717.9 957.9,721.2 954.7,722.7 C952.9,723.5 954.5,726.1 956.2,725.3 C960.8,723.2 963.3,718.3 962.3,713.4 C961.9,711.5 959,712.3 959.4,714.2 L959.4,714.2 Z" id="Path" fill="#161616"></path>
<path d="M948.1,713.2 C949.2,713.3 950.4,713.6 951.3,714.4 C951.5,714.6 951.7,714.8 951.9,715 C952.5,714.5 952.6,714.2 952.1,714.3 C951.8,714.1 951,714.1 950.7,714 C950.2,713.8 949.7,713.7 949.2,713.4 C948.9,713.3 948.7,713.1 948.4,712.9 C947.6,713.4 947.5,713.8 948.2,714 C948.6,714.4 949.4,714.8 949.9,715.1 C950.5,715.5 951,715.8 951.6,716.2 C953.2,717.2 954.4,715.1 953.4,713.8 C952.8,713 952.1,712.6 951.2,712.2 C949.4,711.5 948.6,714.4 950.4,715.1 C950.8,715.3 951,715.6 951.3,715.9 C951.9,715.1 952.5,714.3 953.1,713.5 C951.7,712.6 950.4,711.6 949,710.9 C947.9,710.3 946.5,710.5 945.8,711.6 C944,714.3 947.9,716.2 949.9,716.8 C951,717.1 952.3,717.4 953.4,717 C954.6,716.6 955.2,715.3 954.8,714.1 C954,711.5 950.5,710.4 948.1,710.2 C946.1,710.1 946.2,713.1 948.1,713.2 L948.1,713.2 Z" id="Path" fill="#161616"></path>
<path d="M977.4,709.6 C981.7,710.8 988.8,713.4 995.7,718.8 C998.1,720.7 1003.3,724.8 1006.4,730.7 C1012.3,741.9 1009.6,757.6 999.3,768 C989.2,778.1 973,781.7 957.9,777.2 C964.4,754.7 970.9,732.2 977.4,709.6 Z" id="Path" fill="#E5261F"></path>
<path d="M982.3,671.3 C972.9,706.1 963.5,740.9 954.1,775.7 C952.6,781.3 961.3,783.7 962.8,778.1 C972.2,743.3 981.6,708.5 991,673.7 C992.5,668.1 983.8,665.7 982.3,671.3 Z" id="Path" fill="#161616"></path>
<path d="M961.9,754.4 C960.3,747.8 956.1,743.6 951.2,738.7 C940.8,728.3 936.2,730.4 929.7,723.2 C919.5,711.7 927.6,702.5 917.5,692.1 C908.9,683.3 895.9,682.6 892.9,682.5 C890,682.4 878.3,682.3 869.3,690 C861.5,696.7 858.6,706.8 860,707.6 C860.5,707.9 862,707.2 866.8,702.1 C865.3,703.6 863.5,706 862.4,709.2 C861.2,713 861.4,716.7 862,716.8 C862.5,716.9 862.7,714.8 864.8,713.4 C866,712.6 867.4,712.3 868.4,712.3 C865.8,715.1 863.4,718.8 864.2,722.6 C866.2,733.2 890,738.1 897.9,739.7 C923.5,745 938.5,739.9 946.5,749.5 C947.2,750.3 950.4,754.2 949.2,757.8 C947.6,762.4 939.3,765 934.3,762.8 C930,760.9 929.4,756 928.5,756.2 C927.4,756.5 928,764.7 932.8,772.2 C934.6,774.9 936,777.1 938.9,778.6 C944,781.1 950.5,779.8 954.4,777.4 C962.7,772.7 963.7,761.6 961.9,754.4 L961.9,754.4 Z" id="Path" stroke="#161616" stroke-width="2" fill="#161616"></path>
<path d="M927.3,759.5 C927.3,758 927.5,755.8 928.1,755.8 C928.4,755.8 928.7,756.4 928.7,756.3 C928.7,756.3 926.5,754.2 926.5,751.9 C926.5,750.8 927,749.9 927.4,749.4 C917.8,752.2 906.4,754.9 893.4,756.7 C879.1,758.7 866.3,759.2 855.4,759 C854.9,763.1 854.6,768.9 856,775.8 C857.1,781.4 859,786 860.7,789.4 C876.2,782.7 888.2,779.9 896.3,778.5 C900.1,777.9 909.1,776.5 913.5,775.9 C921.5,774.7 928.1,773.8 932.6,773.2 C932.1,772.5 931.3,771.4 930.5,770 C929.4,768.1 927.3,764.2 927.3,759.5 L927.3,759.5 Z" id="Path" fill="#6D6C6C" opacity="0.22"></path>
<path d="M1009.2,744.3 C1006,753.2 997.3,759.1 987.8,759 C976.6,758.8 970,750.2 969.4,749.4 C966.8,759 964.3,768.7 961.7,778.3 C964.1,778.8 967.4,779.3 971.4,779.2 C984,778.9 992.6,773.2 994.4,771.9 C997.2,770 1006.4,763 1008.7,751.1 C1009.2,748.3 1009.2,745.9 1009.2,744.3 L1009.2,744.3 Z" id="Path" fill="#808080" opacity="0.393484933"></path>
<path d="M830.9,539.1 C835.3,545.2 840.3,551.6 846.1,558.2 C853.9,567.1 861.6,574.6 868.8,580.9 C879.1,570.9 890,560.8 901.5,550.5 C912.4,540.7 923.2,531.5 933.8,522.8 C931.3,517.7 927.9,511.8 923.4,505.8 C914.6,494.1 904.9,486.3 897.5,481.3 C880.6,493.2 862.8,507.4 845.2,524.5 C840.2,529.5 835.5,534.3 830.9,539.1 L830.9,539.1 Z" id="Path" fill="#FFFFFF"></path>
<path d="M851.2,521.8 C865.5,507.6 880.8,494.5 897.1,482.7 C898.6,481.6 897.2,479 895.6,480.1 C879.1,492.1 863.5,505.3 849.1,519.7 C847.7,521.1 849.8,523.2 851.2,521.8 Z" id="Path" fill="#161616"></path>
<path d="M896.4,482.1 C910.8,493 922.9,506.5 932.3,521.9 C933.3,523.5 935.9,522 934.9,520.4 C925.2,504.5 912.7,490.8 897.9,479.5 C896.4,478.4 894.9,481 896.4,482.1 Z" id="Path" fill="#161616"></path>
<path d="M850.7,518.3 C843.4,524.6 836.4,531.3 829.8,538.4 C828.5,539.8 830.6,541.9 831.9,540.5 C838.5,533.4 845.4,526.7 852.8,520.4 C854.3,519.1 852.2,517 850.7,518.3 Z" id="Path" fill="#161616"></path>
<path d="M830.2,541.2 C841.6,555.2 853.8,568.4 866.9,580.9 C868.3,582.2 870.4,580.1 869,578.8 C856,566.3 843.7,553.1 832.3,539.1 C831.1,537.5 828.9,539.7 830.2,541.2 Z" id="Path" fill="#161616"></path>
<path d="M870.2,581.5 C891.3,561.4 913,542 935.2,523.2 C936.7,522 934.5,519.8 933.1,521.1 C910.9,539.9 889.2,559.4 868.1,579.4 C866.7,580.7 868.8,582.8 870.2,581.5 Z" id="Path" fill="#161616"></path>
<path d="M842.6,540.2 C849.4,549 856.5,557.6 863.8,565.9 C865.1,567.4 867.2,565.2 865.9,563.8 C858.6,555.4 851.5,546.8 844.7,538.1 C843.6,536.5 841.5,538.7 842.6,540.2 Z" id="Path" fill="#161616"></path>
<path d="M844.8,540.2 C860,523.5 877.9,509.8 895.7,496.1 C897.2,494.9 895.7,492.3 894.2,493.5 C876.1,507.3 858,521.2 842.7,538 C841.3,539.5 843.5,541.6 844.8,540.2 Z" id="Path" fill="#161616"></path>
<path d="M896,496.1 C905.2,503 913.6,510.7 921.3,519.2 C922.6,520.6 924.7,518.5 923.4,517.1 C915.5,508.4 906.9,500.6 897.5,493.5 C895.9,492.4 894.4,495 896,496.1 Z" id="Path" fill="#161616"></path>
<path d="M865.6,566.7 C870.7,566.5 874.6,564 878.6,561 C883.8,557 888.9,552.9 893.9,548.6 C904.5,539.7 914.6,530.3 924.3,520.6 C925.7,519.2 923.5,517.1 922.2,518.5 C913.8,527 905,535.1 896,543 C891.6,546.8 887.1,550.5 882.6,554.2 C877.7,558.1 872.3,563.6 865.6,563.8 C863.7,563.7 863.7,566.7 865.6,566.7 L865.6,566.7 Z" id="Path" fill="#161616"></path>
<path d="M891.4,483 C889,487.5 885.5,494 881.4,501.9 C871.2,521.7 866,531.7 864.4,538 C862.3,546.2 860.7,560.6 869.2,580.9 C856.5,567.4 843.8,553.8 831.1,540.3 C851.2,521.2 871.3,502.1 891.4,483 L891.4,483 Z" id="Path" fill="#6D6C6C" opacity="0.11"></path>
<path d="M881,515.4 C885.8,520.3 890.3,525.5 894.5,530.9 C895.7,532.4 897.8,530.3 896.6,528.8 C892.4,523.4 887.9,518.2 883.1,513.3 C881.8,511.9 879.7,514 881,515.4 Z" id="Path" fill="#E8E8E8"></path>
<path d="M882.2,515 C884.5,513.5 886.9,512.1 889.2,510.6 C890.4,509.8 891.7,508.6 893.1,508.2 C895,507.5 893.8,507.1 895.3,507.9 C897.1,508.8 899.1,512.7 900.4,514.3 C902.3,516.7 904.1,519 906,521.4 C907.2,522.9 909.3,520.8 908.1,519.3 C905.7,516.2 903.2,513.1 900.8,510 C899.6,508.4 897.7,504.6 895.6,504.1 C894.1,503.8 892.8,504.8 891.6,505.6 C887.9,507.8 884.3,510.2 880.7,512.4 C879.1,513.5 880.6,516.1 882.2,515 L882.2,515 Z" id="Path" fill="#E8E8E8"></path>
<path d="M896.3,530.8 C900.5,529 904.2,526.4 907.4,523.2 C908.8,521.8 906.6,519.7 905.3,521.1 C902.2,524.1 898.7,526.5 894.8,528.2 C893,529 894.5,531.6 896.3,530.8 Z" id="Path" fill="#E8E8E8"></path>
<path d="M889.5,520.7 C890.8,519.4 892,518.1 894,518.4 C895.1,518.6 895.5,518.8 896.7,518.6 C897.7,518.4 898,517.2 897.6,516.4 C896.7,514.9 895.9,517.4 895.9,518.3 C895.9,519.1 896.2,520 896.8,520.6 C898.3,522.2 900.5,521.8 902.3,521 C904.1,520.3 903.3,517.4 901.5,518.1 C900.8,518.4 900.1,518.6 899.3,518.7 C899,518 899,517.3 899.3,516.6 C899.3,515.9 899.4,515.3 899.2,514.6 C898.9,513.6 898.1,512.7 897,512.6 C893.8,512.2 893.8,516 895,518 C895.3,517.3 895.6,516.5 895.9,515.8 C895.1,515.9 894.1,515.3 893.3,515.3 C892.7,515.3 892,515.5 891.4,515.7 C889.8,516.3 888.6,517.5 887.5,518.7 C886,520 888.2,522.1 889.5,520.7 L889.5,520.7 Z" id="Path" fill="#E8E8E8"></path>
<path d="M888,514.3 C889.4,514.4 890.7,514.3 892,514 C893.9,513.6 893.1,510.7 891.2,511.1 C890.1,511.3 889.1,511.4 888,511.3 C887.2,511.2 886.5,512 886.5,512.8 C886.5,513.7 887.2,514.2 888,514.3 L888,514.3 Z" id="Path" fill="#E8E8E8"></path>
<path d="M865.1,528.7 C869.7,534 874.3,539.2 879,544.3 C880.3,545.7 882.4,543.6 881.1,542.2 C876.4,537.1 871.7,531.9 867.2,526.6 C866,525.1 863.9,527.2 865.1,528.7 Z" id="Path" fill="#E8E8E8"></path>
<path d="M867.5,529.1 C868.5,527.3 869,525.8 871.1,525.7 C872.9,525.6 874,527 875.2,528.1 C876.9,529.6 878.3,531.4 880,533 C881.3,534.2 882.7,535.4 884.2,536.4 C885.5,537.3 886.7,537.8 885.3,539.5 C884.5,540.5 882.4,540.9 881.2,541.3 C879.4,541.9 880.2,544.8 882,544.2 C884.7,543.3 889,541.9 889.9,538.7 C890.3,537.4 890,536.8 889.1,535.9 C887.2,534.2 884.6,533.1 882.7,531.3 C879.5,528.4 876.7,524.1 872.6,522.4 C868.7,520.9 866.7,524.5 865,527.5 C864,529.2 866.6,530.8 867.5,529.1 Z" id="Path" fill="#E8E8E8"></path>
<path d="M837,517.5 C833.6,518.9 833.8,520.4 829.5,523.2 C826,525.5 824.8,525.2 823.4,527.1 C821.8,529.2 821.6,531.6 821.6,533.2 C820.2,533.2 817.7,533.5 815,535 C814.2,535.4 809,538.3 807.5,544.6 C806.5,548.9 807.8,552.5 808.4,553.8 C807,554.8 804.9,556.6 804,559.5 C802.9,563.1 804.3,566.4 806.2,570 C811.4,580.1 816.1,584.3 821.5,592.8 C823.1,595.3 825.4,599.2 827.6,604.2 C827.7,608 827.7,614.2 826.7,621.7 C825.2,632.9 822.3,641 821.4,643.6 C816.9,656.6 809,687 808.2,714.9 C807.8,729.2 807.4,752.1 820,775.5 C824.7,784.3 831.7,796.7 845.9,801.8 C848.1,802.6 864.6,808.5 876.1,799.2 C880.3,795.8 882.4,791.6 883.6,788.7 C883.9,787.2 884.1,784.9 884,782.1 C883.6,770 876.4,761.3 873.9,758 C865.2,746.5 862.6,733.7 858.1,712 C855.3,698.6 855.9,687 857.2,664.2 C858.1,648.6 859.9,627.5 864.2,602.4 C866.3,601.9 869.2,600.9 871.2,598.5 C874.2,594.8 872.4,591.4 874.7,584.9 C876.4,580 877.8,580.9 880.8,574.4 C883,569.7 884.9,565.4 883.9,560.4 C883.7,559.4 882.4,553.5 878.2,552.1 C872.8,550.2 866.6,557 865.1,558.7 C862,562.1 860.6,565.7 859.8,567.9 C856.7,563.9 853.5,559.1 850.6,553.4 C849.3,550.8 848.1,548.3 847.1,545.9 C847.6,543.7 848.3,540.5 848.8,536.6 C849.4,531.4 849.7,528.7 848.9,525.3 C848.3,523 847.1,517.9 843.2,516.5 C841.1,515.7 838.4,516.8 837,517.5 L837,517.5 Z" id="Path" fill="#FFFFFF"></path>
<path d="M827.5,599.2 C822.5,592.2 817.4,585.2 812.5,578.1 C807.8,571.3 802.3,561.7 809.1,554.2 C810.4,552.8 808.3,550.6 807,552.1 C801.7,557.9 802.3,565.8 805.6,572.5 C810.6,582.5 818.5,591.6 825,600.7 C826,602.3 828.6,600.8 827.5,599.2 Z" id="Path" fill="#161616"></path>
<path d="M818.1,567.2 C813.3,562.2 809.3,555.4 809.4,548.3 C809.5,541.4 814.5,536.2 821.1,535.1 C823,534.8 822.2,531.9 820.3,532.2 C813.2,533.4 807.5,538.9 806.5,546.1 C805.3,554.7 810.2,563.4 816,569.4 C817.3,570.8 819.4,568.6 818.1,567.2 L818.1,567.2 Z" id="Path" fill="#161616"></path>
<path d="M828.2,558.3 C820.5,549.7 819.6,537.1 825.7,527.4 C826.7,525.8 824.1,524.3 823.1,525.9 C816.2,536.8 817.5,550.9 826,560.4 C827.4,561.9 829.5,559.8 828.2,558.3 Z" id="Path" fill="#161616"></path>
<path d="M836.3,551.7 C833.1,543.9 831.9,535.2 833.9,526.9 C835,522.2 841,513.3 845.8,520.5 C847.8,523.5 847.1,528 846.8,531.4 C846.3,537.8 844,544.8 847.3,550.8 C848.9,553.6 851.3,556 853.1,558.6 C855.4,561.8 857.2,565.3 858.9,568.9 C859.7,570.7 862.3,569.1 861.5,567.4 C859.4,562.8 856.8,558.5 853.7,554.5 C851.9,552.1 849.6,549.9 848.8,546.9 C848,544 848.8,540.8 849.1,537.8 C849.9,531.7 852.4,520.3 845.8,516.2 C839.9,512.5 833.6,518 831.7,523.4 C828.3,532.7 829.7,543.6 833.3,552.6 C834.1,554.3 837,553.5 836.3,551.7 Z" id="Path" fill="#161616"></path>
<path d="M824.7,528.3 C825.9,524.8 830.3,523.2 833.6,524.9 C835.3,525.8 836.8,523.2 835.1,522.3 C830.1,519.6 823.7,522.2 821.8,527.5 C821.1,529.3 824,530.1 824.7,528.3 Z" id="Path" fill="#161616"></path>
<path d="M863,566.1 C864.1,562.9 865.7,560.1 868.1,557.8 C869.1,556.9 870.2,556 871.4,555.3 C874.2,553.7 875.4,553.7 878.5,554.8 C882.1,556.1 882.6,556.9 882.9,560.7 C883,561.9 883,563.1 882.9,564.3 C882.6,568.1 881.2,571.7 879.4,575 C877.3,578.8 874.7,582.3 873.5,586.6 C871.7,593.1 871.6,598.4 864.6,601.5 C862.8,602.3 864.4,604.9 866.1,604.1 C869.1,602.8 871.6,600.8 873.3,598 C875.6,594.3 875.4,589.9 876.8,585.9 C878.4,581.5 881.5,577.8 883.5,573.6 C885.3,569.6 886.2,565.2 885.9,560.8 C885.5,554.8 882,549.8 875.4,550.8 C867.9,551.9 862.4,558.6 860.1,565.4 C859.4,567.1 862.3,567.9 863,566.1 L863,566.1 Z" id="Path" fill="#161616"></path>
<path d="M863.6,602.2 C860.8,620.4 858.5,638.7 856.9,657 C855.5,673.4 854.6,689.9 856.2,706.4 C857.7,721.5 861.5,736.2 868.6,749.6 C875.8,763.3 884.7,775.8 880.7,792.1 C880.2,794 883.1,794.8 883.6,792.9 C887,778.8 881.8,767.3 875.1,755.2 C867.1,740.9 861.7,726.3 859.6,709.9 C857.6,693.5 858.3,677 859.6,660.6 C861.2,641.4 863.5,622.2 866.5,603.1 C866.8,601.1 863.9,600.3 863.6,602.2 L863.6,602.2 Z" id="Path" fill="#161616"></path>
<path d="M825.1,599.3 C827.1,603.7 826.6,608.6 826.1,613.3 C825.5,618.6 824.7,623.9 823.6,629.2 C821.8,638.5 819.3,647.7 816.9,656.9 C812.2,675 807.7,693.1 807.1,711.8 C806.5,730.3 808.9,749.4 815,766.9 C820.1,781.5 829.1,795.6 843.6,802.1 C857.3,808.2 874.2,805.3 883,792.5 C884.1,790.9 881.5,789.4 880.4,791 C870.7,805 851.4,804.7 838.4,795.7 C824.4,786 818,769.3 814.2,753.4 C810,735.8 808.9,717.4 810.9,699.5 C812.9,681.9 817.9,664.9 822.2,647.8 C824.5,638.6 826.7,629.4 828,620 C829.1,612.7 830.6,604.7 827.4,597.8 C826.9,596 824.3,597.6 825.1,599.3 L825.1,599.3 Z" id="Path" fill="#161616"></path>
<path d="M815.9,535.8 C815.5,540.8 815.5,547.2 817,554.2 C821.1,573.4 833.2,585.5 838.7,590.3 C838.9,596 839,604.8 838.7,615.4 C837.2,663 827.8,686.3 826.2,708.6 C824.7,730.3 829.8,762 861.6,803 C857.3,803.3 850.8,803.3 843.9,800.4 C837.7,797.8 828,791.8 819.2,771.7 C811.2,753.3 802.4,719.6 812.2,681 C816.5,664.2 823.2,651 826.6,622.8 C827.5,615.3 827.9,609 828.1,604.7 C825.9,600.7 822.7,595.2 818.1,589.2 C810.6,579.3 805.7,576 804.5,568.9 C803.6,563.9 804.8,558.8 807.4,553.8 C807.1,552.5 806.2,547.2 809.2,542 C811.4,538.4 814.5,536.6 815.9,535.8 L815.9,535.8 Z" id="Path" fill="#6D6C6C" opacity="0.1"></path>
<path d="M828.8,612.099265 C829.5,612.2 827.4,629.6 823.3,664.4 C819.6,695.1 817.8,710.4 817.8,711.6 C816.5,757.2 834.3,789.4 831.4,790.5 C829.3,791.3 819.2,775.1 813.3,755.5 C805.2,728.4 808.4,704.9 810.4,691.4 C812.1,679.5 812.8,682.8 821.8,642.4 C826.3,622.1 828.1,612 828.8,612.099265 Z" id="Path" fill="#6D6C6C" opacity="0.11"></path>
<path d="M349.3,897.9 C348.4,895.5 346.7,892 343.7,888.5 C340.4,884.6 337.6,883.2 335.4,881.6 C331.5,878.6 330,874.9 323.6,847.2 C320.6,834 320.3,832.5 320.8,829.8 C322.1,822.8 325.8,820.4 327.7,811.4 C328.6,807.1 328.6,804 328.4,798.2 C328.1,789.4 327.9,780.4 324.2,770.1 C320.9,760.6 317.1,750.1 307.2,745.4 C300.3,742.2 293.5,743.3 287.4,744.4 C275.1,746.6 272.4,751.2 259.6,756.9 C253.2,759.7 234.8,767.9 213,766.6 C203.3,766 197.9,763.9 191.8,767.6 C185.4,771.6 182.7,779.2 180.7,785 C178.2,792.1 177.6,798.3 177.6,802.4 C176.3,806.7 174.3,813.2 172,821.2 C165.6,844 165.6,848.2 161.2,860.5 C156.8,873 154,880.8 147.3,889.7 C145.1,892.6 145,892.3 124.7,911.9 C114.3,921.9 108.8,927.4 106.3,936.6 C105.3,940.2 103.7,945.9 106.6,949.8 C107.5,950.9 110.4,954.2 128.1,953.6 C136.3,953.3 137.4,952.6 145.8,951.9 C161.3,950.6 173.4,951.9 179.5,952.6 C185.3,953.2 190.1,954.1 193.4,954.7 C196.6,955 201.4,955.6 207,957.1 C217.1,959.9 220.2,963 229.2,966.8 C234.7,969.1 246,973.8 259.8,973.4 C269.2,973.1 276.8,970.6 281.7,968.5 C288.9,969.6 294.8,969.1 298.7,968.5 C305.5,967.4 310.7,965.2 315,963.3 C320.2,961 319.9,960.5 326.5,957.4 C338,951.8 339.9,952.8 343.2,949.8 C345.6,947.6 347.8,944.1 349.1,929.6 C350,921.9 350.5,911.1 349.3,897.9 L349.3,897.9 Z M184,925.5 C184.8,931 186.4,935.4 184,937.8 C180.9,940.8 175.6,936.5 162.2,937.2 C160,937.3 158.7,937.5 152.2,938 C146.5,938.4 146.7,938.3 143.1,938.6 C137.3,939.1 136.8,939.4 134.4,939.2 C130.1,938.8 127.9,938.7 126.1,937.1 C123.2,934.6 122.7,930 123.3,926.9 C124.3,920.7 129.4,918.1 138.5,910.6 C142.3,907.5 147.8,902.7 154,896 C157.7,891.1 161.3,886 165,880.7 C166.7,878.2 168.3,875.8 169.9,873.3 C171.4,869.2 173.3,863.5 175.2,856.6 C180.2,838.4 180.3,827.1 182,827 C184,827 185.7,841.8 186.4,849.9 C187.2,860.3 187,868.9 186.6,874.7 C187.6,876.6 189,879.8 189.4,884 C189.9,888.7 189,892.5 188.3,894.6 C182.9,908.1 182.9,918.4 184,925.5 L184,925.5 Z" id="Shape" fill="#FFFFFF"></path>
<path d="M184.5,773 C171.2,794.6 179.7,820 183.5,843.1 C184.6,849.9 185.2,856.7 184.9,863.5 C184.7,866.7 184.3,869.9 184.7,873.2 C185.1,876.2 186.2,878.9 186.9,881.8 C188.8,889.3 186.1,896.9 184.6,904.2 C183.3,910.5 182,916.8 181.8,923.2 C181.4,933.3 183.9,944.1 191.2,951.4 C199.3,959.5 211.1,958.2 220.8,963.3 C230.9,968.7 240.4,973.2 252,974.3 C257.7,974.8 263.6,974.6 269.2,973.6 C275.2,972.6 280.8,969.7 286.8,968.7 C292.5,967.8 298,969.8 303.7,968.3 C310.1,966.7 316.3,963.1 322.3,960.4 C328.5,957.6 334.7,954.7 341,951.9 C345.1,950 348.8,948.3 349.8,943.5 C351.1,937.5 350.4,930.4 350.5,924.3 C350.7,917.9 351.2,911.5 350.8,905.1 C350.6,901 350,896.9 348.3,893.2 C345.7,887.4 340.2,885.6 336.6,880.8 C329.5,871 325.9,857.3 323.9,845.5 C323.3,841.8 322.9,838.1 322.6,834.4 C322.4,830.6 323.7,828.2 325.1,824.9 C327.1,820.2 328.4,815.2 329,810.2 C330.6,798.6 329.1,786.7 326.4,775.4 C324.1,765.8 321,755.1 313.3,748.3 C293.1,730.5 266.6,751.4 247.9,760.2 C241,763.4 233.8,765.5 226.2,765.5 C218.9,765.5 211.7,764.1 204.4,764.6 C194.7,765.2 184.6,769.6 181.3,779.3 C180.7,781.1 183.6,781.9 184.2,780.1 C188.2,768.4 202.1,767.1 212.6,767.7 C223.8,768.4 234,769.1 244.6,764.9 C262.8,757.7 281.7,739.5 302.8,745.9 C314.4,749.4 319.3,760.7 322.3,771.5 C325.3,782.3 327.2,793.5 326.6,804.7 C326.3,810.2 325.3,815.7 323.5,821 C322.7,823.4 321.6,825.8 320.4,828.1 C319.1,830.7 319.4,832.6 319.6,835.6 C320.3,846.4 322.6,857 326.5,867.1 C328.2,871.5 330.1,875.9 332.4,880.1 C334.9,884.5 338.3,886.3 341.8,889.7 C349.8,897.3 347.7,910.8 347.4,920.7 C347.2,927 347,933.3 346.8,939.6 C346.7,943.8 345.8,946.2 342.2,948.3 C339.3,950 336,951.2 332.9,952.5 C327.3,955.1 321.6,957.6 316,960.2 C309.6,963.1 303.2,966.8 295.9,966.4 C291.1,966.2 287.2,965.6 282.5,966.9 C276.7,968.6 271.2,970.7 265.2,971.4 C253.7,972.8 241.8,971 231.4,966 C227,963.9 222.9,961.1 218.4,959.1 C213.7,957 208.8,956.5 203.8,955.3 C192,952.5 185.7,941.3 184.7,929.9 C183.5,916.3 188.7,903.6 190.3,890.3 C191.2,883.6 187.7,878 187.2,871.4 C186.8,864.7 187.9,858.1 187.2,851.3 C184.7,826.2 172.2,798.3 186.7,774.6 C188.2,772.8 185.6,771.3 184.5,773 L184.5,773 Z" id="Path" fill="#161616"></path>
<path d="M186.4,772.7 C203.9,770.1 217.6,784.1 224.9,798.3 C231.9,811.7 235.5,826.6 243.2,839.7 C249.7,850.7 259.2,859.9 272,862.7 C283.3,865.2 295.8,862.8 305.1,855.8 C317.6,846.4 323,830.9 325.8,816.1 C326.2,814.2 323.3,813.4 322.9,815.3 C320.3,828.8 315.7,843.3 304.7,852.3 C293.6,861.4 277.2,863.3 264.3,856.8 C237.6,843.5 237.4,807.2 220.4,785.8 C212,775.2 199.2,767.8 185.4,769.8 C183.7,770.1 184.5,773 186.4,772.7 L186.4,772.7 Z" id="Path" fill="#161616"></path>
<path d="M292.1,868.1 C292.2,868.3 292.3,868.4 292.4,868.6 C292.5,868 292.6,867.4 292.6,866.8 C292.4,867 292.3,867.1 292.1,867.3 C292.7,867.2 293.3,867.1 293.9,867.1 C292.2,866.2 291.4,862.4 290.8,860.7 C289.9,858.1 289.3,855.3 288.8,852.6 C288.5,850.5 287.1,834.8 291.5,836.3 C292.8,836.8 293.8,842.2 294.2,843.6 C294.9,846.3 295.3,849.1 295.6,851.9 C295.9,854.6 295.9,857.3 296,859.9 C296,861.1 296.1,862.3 296.1,863.5 C296.1,864.1 296.1,864.7 296,865.3 C296.2,866 295.9,866.5 295.2,866.8 C295.4,864.9 292.4,864.9 292.2,866.8 C292,868.8 293.6,870.4 295.7,870.2 C298.6,869.9 299,866.7 299,864.4 C299.2,859 298.9,853.3 298.1,848 C297.5,843.6 296.6,837.3 293.4,833.9 C287.5,827.5 285.5,840 285.4,843.4 C285.1,848.7 285.8,854 287.2,859 C288.1,862 289.4,868.1 292.5,869.7 C293.1,870 293.8,870 294.3,869.5 C294.5,869.3 294.6,869.2 294.8,869 C295.3,868.5 295.4,867.7 295,867.2 C294.9,867 294.8,866.9 294.7,866.7 C293.7,864.9 291.1,866.4 292.1,868.1 L292.1,868.1 Z" id="Path" fill="#161616"></path>
<path d="M268.1,922.3 C268.6,938.3 270,954.3 272.3,970.1 C272.6,972 275.5,971.2 275.2,969.3 C273,953.7 271.6,938 271.1,922.3 C271,920.4 268,920.4 268.1,922.3 L268.1,922.3 Z" id="Path" fill="#161616"></path>
<path d="M270.2,923 C277.3,913 290,908.8 301,905 C313.1,900.8 325.4,897.6 338,895.3 C339.9,895 339.1,892.1 337.2,892.4 C322.8,895 308.6,898.9 294.9,904 C284.6,907.9 274.1,912.3 267.5,921.5 C266.5,923.1 269.1,924.6 270.2,923 Z" id="Path" fill="#161616"></path>
<path d="M270.7,923.6 C282.5,929.9 294,934.7 307.6,931.1 C320.6,927.6 332.7,920.3 342.9,911.8 C344.4,910.6 342.3,908.5 340.8,909.7 C331.3,917.6 320.3,924.2 308.5,927.8 C295.1,931.9 284,927.5 272.2,921.1 C270.5,920.1 269,922.7 270.7,923.6 L270.7,923.6 Z" id="Path" fill="#161616"></path>
<path d="M317.3,921.2 C318.1,925.1 318.9,929.1 319.7,933 C320.1,934.9 323,934.1 322.6,932.2 C321.8,928.3 321,924.3 320.2,920.4 C319.8,918.5 316.9,919.3 317.3,921.2 Z" id="Path" fill="#161616"></path>
<path d="M324,918.4 C324.4,922.1 324.7,925.8 325.1,929.5 C325.3,931.4 328.3,931.4 328.1,929.5 C327.7,925.8 327.4,922.1 327,918.4 C326.8,916.5 323.8,916.4 324,918.4 Z" id="Path" fill="#161616"></path>
<path d="M187.1,896.7 C185.2,902.2 187.1,907.2 193.6,906.1 C195.2,905.8 196.6,905.1 198.2,904.6 C199.1,904.3 200.4,903.8 201.4,903.9 C206.5,904.6 203.6,906.3 204.9,908.1 C206.4,910.1 207.3,911.1 210,911.1 C213.6,911 220.7,907.6 223.1,912 C224,913.8 223.1,918.6 223.1,920.8 C223.1,923.4 223.2,926 223.2,928.6 C223.4,940 223.7,951.4 224.1,962.7 C224.2,964.6 227.2,964.6 227.1,962.7 C226.4,945.2 226.1,927.6 226,910 C226,909.5 225.7,908.9 225.3,908.7 C222,907.2 218.7,906.5 215.1,907 C212.6,907.3 211.5,908.3 209.1,906.9 C206.8,905.6 207.6,904.8 206.2,903 C204.7,901.1 202.5,900.7 200.2,901 C198.6,901.2 197.3,901.9 195.8,902.4 C195,902.7 194,903.2 193.1,903.2 C190.9,903.1 189.3,899.7 190.1,897.6 C190.6,895.7 187.7,894.9 187.1,896.7 L187.1,896.7 Z" id="Path" fill="#161616"></path>
<path d="M180.5,797.6 C180.6,786.1 184.3,765.3 200.7,769.3 C202.6,769.8 203.4,766.9 201.5,766.4 C194.6,764.7 187.8,767.7 183.5,773.2 C178.1,780 177.5,789.2 177.5,797.6 C177.5,799.6 180.5,799.6 180.5,797.6 Z" id="Path" fill="#161616"></path>
<path d="M177.8,791.3 C175.6,795.9 178.7,800.6 181.5,804.4 C184.4,808.4 188.8,812 194,810.9 C196.9,810.3 198.9,807.7 201.8,807.2 C205,806.5 208.1,809.3 211.3,809.2 C218.1,808.9 222.2,802.4 227.1,798.8 C228.6,797.7 227.2,795.1 225.6,796.2 C221.7,799 218.7,803.4 214.2,805.3 C209.5,807.3 206.7,803.8 202.2,804.1 C197.7,804.4 195.1,809 190.3,807.8 C186.3,806.8 178.3,797.6 180.5,792.8 C181.2,791.1 178.6,789.5 177.8,791.3 L177.8,791.3 Z" id="Path" fill="#161616"></path>
<path d="M178.6,789.5 C173.8,810.5 168.2,831.3 161.9,851.8 C158.9,861.5 156.1,871.6 151.1,880.6 C146.8,888.3 140.9,894.8 134.6,900.9 C123.6,911.5 110.9,921.5 104.7,935.9 C102.2,941.7 101.5,947.7 107.2,951.8 C113.5,956.4 122.8,956.2 130.1,955.5 C141.3,954.4 152.4,950.9 163.7,951.8 C174.5,952.7 184.8,957.1 195.6,953.9 C197.4,953.3 196.7,950.5 194.8,951 C185.1,953.9 175.6,950.2 165.9,949 C157.9,948 149.9,949.3 142.1,950.6 C132.7,952.2 122.1,954.5 112.8,951.2 C107,949.2 104.5,944.9 106.6,939 C108,935.1 110.1,931.4 112.5,928.1 C121,915.9 133.4,907.1 143.4,896.2 C154.6,883.9 159.7,869.2 164.6,853.5 C171,832.6 176.7,811.5 181.6,790.2 C182,788.4 179.1,787.6 178.6,789.5 L178.6,789.5 Z" id="Path" fill="#161616"></path>
<path d="M178.7,822.7 C176.9,841.6 174.9,861 165.6,878 C161.5,885.6 156.2,892.5 150,898.4 C144.3,903.8 137.7,908.1 131.8,913.2 C127.4,917 121.1,922.7 120.7,929 C120.3,934.7 125.1,939.2 130.2,940.7 C138.4,943.2 148.3,940.2 156.7,939.7 C166.5,939.2 176.4,939.5 186.2,940.5 C188.1,940.7 188.1,937.7 186.2,937.5 C177.1,936.5 167.9,936.2 158.7,936.6 C154.8,936.8 150.8,937.1 146.9,937.5 C142.3,938 137.4,939.1 132.8,938.2 C127.1,937.1 122.2,932.6 124.6,926.4 C126.1,922.7 129.3,919.5 132.2,916.8 C137.5,911.8 143.7,907.9 149.1,903.1 C159.4,894.2 167.5,882.7 172.6,870.1 C178.7,855 180.2,838.6 181.8,822.5 C181.9,820.8 178.9,820.8 178.7,822.7 L178.7,822.7 Z" id="Path" fill="#161616"></path>
<path d="M204.5,908 C205.4,916.9 206.8,925.6 208.8,934.3 C209.2,936.2 212.1,935.4 211.7,933.5 C209.8,925.1 208.4,916.6 207.5,907.9 C207.3,906.1 204.3,906.1 204.5,908 Z" id="Path" fill="#161616"></path>
<path d="M229.5,781.7 C245.5,794 271.3,801.1 290,790.7 C291.7,789.8 290.2,787.2 288.5,788.1 C270.7,797.9 246.1,790.7 231.1,779.1 C229.4,777.9 227.9,780.5 229.5,781.7 Z" id="Path" fill="#161616"></path>
<path d="M180.8,794.5 C180.2,787.3 181.6,778.9 186.6,773.4 C191.6,768 199.4,768.5 206.2,768.5 C218.7,768.7 231.3,770 243.2,765.6 C245,764.9 244.2,762 242.4,762.7 C227.1,768.4 211.4,763.9 195.7,765.9 C182,767.7 176.8,782.1 177.8,794.5 C177.9,796.4 180.9,796.5 180.8,794.5 L180.8,794.5 Z" id="Path" fill="#161616"></path>
<path d="M181.4,797.4 C182.4,790.5 184.6,784 188.4,778.1 C190.4,775 192.5,772.1 196,770.8 C199.4,769.5 203.4,770 207,770 C219.1,770.2 231.5,770.6 242.5,764.8 C244.2,763.9 242.7,761.3 241,762.2 C233.8,766 225.9,767 217.9,767.1 C211.1,767.2 203.8,766 197.1,767.3 C185.4,769.6 180,786.4 178.5,796.5 C178.2,798.4 181.1,799.3 181.4,797.4 L181.4,797.4 Z" id="Path" fill="#161616"></path>
<path d="M180.5,794.8 C181.2,785.7 182.3,774 191.3,769 C196.2,766.3 202.6,766.9 208,766.8 C212.7,766.8 217.4,766.9 222.2,766.8 C231.3,766.6 240.4,765.9 249.1,762.9 C257.4,760 265.1,755.5 272.6,751 C274.3,750 272.8,747.4 271.1,748.4 C262,753.8 252.7,759.3 242.3,761.7 C230.8,764.4 218.9,763.7 207.2,763.8 C198.6,763.9 190.3,763.9 184.5,771.2 C179.2,777.9 178.4,786.6 177.7,794.8 C177.4,796.7 180.4,796.7 180.5,794.8 L180.5,794.8 Z" id="Path" fill="#161616"></path>
<path d="M248.9,763.9 C253.2,767.9 247.6,775.5 251.5,782.3 C256.6,791.1 271.3,792.2 282.5,791.7 C276.6,793.3 267.6,797 262.6,805.3 C253.8,819.9 259.9,844.3 281,861.5 C282.9,876.5 284.8,891.6 286.8,906.6 C281.2,911.5 275.6,916.4 270,921.3 C270.2,938.1 270.3,954.9 270.5,971.7 C265.5,973.5 257.7,975.5 248.5,974.3 C239.3,973.2 237.2,970 219.6,962.8 C203.3,956.1 200.9,957.2 195.5,952.3 C185.5,943.4 183.6,930.9 183.4,929.7 C182.1,920.5 185.8,919.3 187.6,900.8 C188.5,891.2 188.3,883.6 188.1,880.9 C187.7,872 186.6,868.7 185.5,858.9 C184.1,847.2 184.8,844.8 183.9,833.7 C181.7,805.1 175.8,799.9 179.7,785.4 C181.3,779.5 183.2,772.1 189.7,768.1 C197.8,763 203.7,769 220.7,767.6 C237,766.2 244.5,759.6 248.9,763.9 L248.9,763.9 Z" id="Path" fill="#6D6C6C" opacity="0.05"></path>
<path d="M193.3,770.7 C182.2,772.8 174.5,790.2 179.7,800.6 C181.4,804 185.3,808.4 190.2,809 C194.2,809.5 195.2,806.9 201.2,806.4 C207.3,805.9 208.4,808.3 213.3,807.4 C216.9,806.8 222.2,804.3 223.8,800.1 C226.6,792.6 216.4,783.5 212.8,780.2 C207.1,775.1 200.7,769.3 193.3,770.7 Z" id="Path" fill="#6D6C6C" opacity="0.11"></path>
<path d="M186.5,837.4 C188.9,837 194.4,869.9 205.9,902 C216.7,931.9 230.4,954.8 241.1,970.2 C232.5,965.9 225.2,963.3 220.1,961.8 C213.4,959.8 208.5,959 201.7,955.5 C196.7,952.9 193,950.1 190.7,948.2 C188.5,945.4 185.4,940.8 184.4,934.6 C184,932.3 184.1,931.2 184.9,921 C186,906.2 186,905.7 186.5,903.2 C188,895 189.3,895.1 189.6,889.6 C190,884.4 188.9,883.4 187.5,873.3 C186.3,864.5 186.1,857.8 185.9,853.4 C185.7,843.4 185.5,837.5 186.5,837.4 L186.5,837.4 Z" id="Path" fill="#6D6C6C" opacity="0.14"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 98 KiB

BIN
images/logo-hs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="54px" height="54px" viewBox="0 0 54 54" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>logo-mobile</title>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="logo-mobile">
<rect id="Rectangle-6" stroke="#E5261F" stroke-width="4" fill-rule="nonzero" x="2" y="2" width="50" height="50"></rect>
<path id="." fill="#E5261F" d="M34.402,41.895 C33.9259976,41.3769974 33.688,40.7400038 33.688,39.984 C33.688,39.2279962 33.9329975,38.5840027 34.423,38.052 C34.9130025,37.5199973 35.4939966,37.254 36.166,37.254 C36.8660035,37.254 37.4469977,37.5199973 37.909,38.052 C38.3710023,38.5840027 38.602,39.2279962 38.602,39.984 C38.602,40.7400038 38.3570024,41.3769974 37.867,41.895 C37.3769975,42.4130026 36.7960034,42.672 36.124,42.672 C35.4519966,42.672 34.8780024,42.4130026 34.402,41.895 Z"></path>
<path id="S" fill="#E5261F" fill-rule="nonzero" d="M20.718,42.588 C22.342,42.588 23.826,42.294 25.17,41.706 C26.514,41.118 27.592,40.236 28.404,39.06 C29.216,37.884 29.622,36.4 29.622,34.608 C29.622,33.096 29.293,31.808 28.635,30.744 C27.977,29.68 27.081,28.707 25.947,27.825 C24.813,26.943 23.518,26.054 22.062,25.158 C20.802,24.374 19.633,23.639 18.555,22.953 C17.477,22.267 16.616,21.497 15.972,20.643 C15.328,19.789 15.006,18.732 15.006,17.472 C15.006,16.016 15.489,14.84 16.455,13.944 C17.421,13.048 18.646,12.6 20.13,12.6 C21.698,12.6 22.965,12.992 23.931,13.776 C24.897,14.56 25.632,15.568 26.136,16.8 C26.64,18.032 26.934,19.32 27.018,20.664 L27.018,20.664 L27.984,20.664 C27.984,18.9 27.991,17.479 28.005,16.401 C28.019,15.323 28.047,14.455 28.089,13.797 C28.131,13.139 28.166,12.572 28.194,12.096 L28.194,12.096 L27.228,12.096 C27.06,13.328 26.752,13.944 26.304,13.944 C26.108,13.944 25.905,13.895 25.695,13.797 C25.485,13.699 25.212,13.552 24.876,13.356 C24.316,12.964 23.672,12.607 22.944,12.285 C22.216,11.963 21.152,11.802 19.752,11.802 C18.38,11.802 17.092,12.061 15.888,12.579 C14.684,13.097 13.711,13.895 12.969,14.973 C12.227,16.051 11.856,17.416 11.856,19.068 C11.856,20.636 12.199,21.973 12.885,23.079 C13.571,24.185 14.488,25.158 15.636,25.998 C16.784,26.838 18.016,27.664 19.332,28.476 C21.292,29.652 22.874,30.8 24.078,31.92 C25.282,33.04 25.884,34.454 25.884,36.162 C25.884,38.122 25.317,39.543 24.183,40.425 C23.049,41.307 21.796,41.748 20.424,41.748 C18.632,41.748 17.197,41.307 16.119,40.425 C15.041,39.543 14.243,38.374 13.725,36.918 C13.207,35.462 12.892,33.894 12.78,32.214 L12.78,32.214 L11.814,32.214 C11.814,34.174 11.807,35.798 11.793,37.086 C11.779,38.374 11.765,39.417 11.751,40.215 C11.737,41.013 11.702,41.706 11.646,42.294 L11.646,42.294 L12.612,42.294 C12.78,41.062 13.088,40.446 13.536,40.446 C13.872,40.446 14.348,40.642 14.964,41.034 C15.58,41.398 16.322,41.748 17.19,42.084 C18.058,42.42 19.234,42.588 20.718,42.588 Z"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,256,256" width="50px" height="50px" fill-rule="nonzero"><g fill="#ffffff" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><g transform="scale(5.12,5.12)"><path d="M41.625,10.76953c-3.98047,-3.20313 -10.27734,-3.74609 -10.54687,-3.76563c-0.41797,-0.03516 -0.81641,0.19922 -0.98828,0.58594c-0.01562,0.02344 -0.15234,0.33984 -0.30469,0.83203c2.63281,0.44531 5.86719,1.33984 8.79297,3.15625c0.46875,0.28906 0.61328,0.90625 0.32422,1.375c-0.19141,0.30859 -0.51562,0.47656 -0.85156,0.47656c-0.17969,0 -0.36328,-0.05078 -0.52734,-0.15234c-5.03125,-3.12109 -11.3125,-3.27734 -12.52344,-3.27734c-1.21094,0 -7.49609,0.15625 -12.52344,3.27734c-0.46875,0.29297 -1.08594,0.14844 -1.375,-0.32031c-0.29297,-0.47266 -0.14844,-1.08594 0.32031,-1.37891c2.92578,-1.8125 6.16016,-2.71094 8.79297,-3.15234c-0.15234,-0.49609 -0.28906,-0.80859 -0.30078,-0.83594c-0.17578,-0.38672 -0.57031,-0.62891 -0.99219,-0.58594c-0.26953,0.01953 -6.56641,0.5625 -10.60156,3.80859c-2.10547,1.94922 -6.32031,13.33984 -6.32031,23.1875c0,0.17578 0.04688,0.34375 0.13281,0.49609c2.90625,5.10938 10.83984,6.44531 12.64844,6.50391c0.00781,0 0.01953,0 0.03125,0c0.32031,0 0.62109,-0.15234 0.80859,-0.41016l1.82813,-2.51562c-4.93359,-1.27344 -7.45312,-3.4375 -7.59766,-3.56641c-0.41406,-0.36328 -0.45312,-0.99609 -0.08594,-1.41016c0.36328,-0.41406 0.99609,-0.45312 1.41016,-0.08984c0.05859,0.05469 4.69922,3.99219 13.82422,3.99219c9.14063,0 13.78125,-3.95312 13.82813,-3.99219c0.41406,-0.35937 1.04297,-0.32422 1.41016,0.09375c0.36328,0.41406 0.32422,1.04297 -0.08984,1.40625c-0.14453,0.12891 -2.66406,2.29297 -7.59766,3.56641l1.82813,2.51563c0.1875,0.25781 0.48828,0.41016 0.80859,0.41016c0.01172,0 0.02344,0 0.03125,0c1.80859,-0.05859 9.74219,-1.39453 12.64844,-6.50391c0.08594,-0.15234 0.13281,-0.32031 0.13281,-0.49609c0,-9.84766 -4.21484,-21.23828 -6.375,-23.23047zM18.5,30c-1.93359,0 -3.5,-1.78906 -3.5,-4c0,-2.21094 1.56641,-4 3.5,-4c1.93359,0 3.5,1.78906 3.5,4c0,2.21094 -1.56641,4 -3.5,4zM31.5,30c-1.93359,0 -3.5,-1.78906 -3.5,-4c0,-2.21094 1.56641,-4 3.5,-4c1.93359,0 3.5,1.78906 3.5,4c0,2.21094 -1.56641,4 -3.5,4z"></path></g></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
<defs>
</defs>
<g style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)" >
<path d="M 45 51.815 l 45 -33.87 v -1.967 c 0 -2.03 -1.646 -3.676 -3.676 -3.676 H 3.676 C 1.646 12.302 0 13.948 0 15.978 v 1.967 L 45 51.815 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
<path d="M 47.405 60.019 c -0.712 0.536 -1.559 0.804 -2.405 0.804 s -1.693 -0.268 -2.405 -0.804 L 0 27.958 v 46.064 c 0 2.03 1.646 3.676 3.676 3.676 h 82.648 c 2.03 0 3.676 -1.646 3.676 -3.676 V 27.958 L 47.405 60.019 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,256,256" width="50px" height="50px" fill-rule="nonzero"><g fill="#ffffff" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><g transform="scale(5.12,5.12)"><path d="M25,3c-12.15,0 -22,9.85 -22,22c0,11.03 8.125,20.137 18.712,21.728v-15.897h-5.443v-5.783h5.443v-3.848c0,-6.371 3.104,-9.168 8.399,-9.168c2.536,0 3.877,0.188 4.512,0.274v5.048h-3.612c-2.248,0 -3.033,2.131 -3.033,4.533v3.161h6.588l-0.894,5.783h-5.694v15.944c10.738,-1.457 19.022,-10.638 19.022,-21.775c0,-12.15 -9.85,-22 -22,-22z"></path></g></g></svg>

Before

Width:  |  Height:  |  Size: 827 B

View File

@ -1 +0,0 @@
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub icon</title><path fill="#fff" d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg>

Before

Width:  |  Height:  |  Size: 839 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,256,256" width="50px" height="50px" fill-rule="nonzero"><g fill="#ffffff" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><g transform="scale(5.12,5.12)"><path d="M16,3c-7.17,0 -13,5.83 -13,13v18c0,7.17 5.83,13 13,13h18c7.17,0 13,-5.83 13,-13v-18c0,-7.17 -5.83,-13 -13,-13zM37,11c1.1,0 2,0.9 2,2c0,1.1 -0.9,2 -2,2c-1.1,0 -2,-0.9 -2,-2c0,-1.1 0.9,-2 2,-2zM25,14c6.07,0 11,4.93 11,11c0,6.07 -4.93,11 -11,11c-6.07,0 -11,-4.93 -11,-11c0,-6.07 4.93,-11 11,-11zM25,16c-4.96,0 -9,4.04 -9,9c0,4.96 4.04,9 9,9c4.96,0 9,-4.04 9,-9c0,-4.96 -4.04,-9 -9,-9z"></path></g></g></svg>

Before

Width:  |  Height:  |  Size: 882 B

View File

@ -1 +0,0 @@
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Twitter icon</title><path fill="#fff" d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"/></svg>

Before

Width:  |  Height:  |  Size: 769 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 298 KiB

View File

@ -1,13 +1,17 @@
--- ---
title: Jekyll Serif Theme title: Jekyll Serif Theme
layout: home layout: home
description: Jekyll Serif contains content types for a typical business website. The theme is fully responsive, blazing fast and artfully illustrated.
intro_image: "images/illustrations/pointing.svg"
intro_image_absolute: true
intro_image_hide_on_mobile: true
show_call_box: true
--- ---
# Serif - A Jekyll Business Theme. # Serif - A Jekyll Business Theme.
Serif contains content types for a typical business website. The theme is fully responsive, blazing fast and artfully illustrated. Sed quam et dolorum at in fugiat illum. Dolorum molestias sit rerum. Nesciunt qui aspernatur incidunt ea autem optio. Porro sequi necessitatibus esse officia quia.
Dolor quod harum deleniti. Eum reprehenderit mollitia vel laboriosam maxime et minus cumque. Nostrum qui atque nostrum qui magnam consequatur sequi vero. Earum non aperiam illo aperiam voluptatibus non asperiores expedita. Non et est repellat corporis doloribus commodi.
Accusamus qui ab ut molestias. Fugiat ut rerum eos rerum. In debitis ex quia eaque.
Et labore a voluptatum impedit. Ad vero praesentium aut pariatur et quos. Est illo sint cumque eius illum iure rerum. Saepe esse perspiciatis dignissimos nemo doloremque ullam quae. Quaerat dolorem occaecati voluptatum nam ullam voluptates. Quod molestias quia suscipit.
Tenetur architecto laudantium aut voluptatem quia similique voluptatem. Error necessitatibus porro ut et quo nostrum tenetur autem. Qui autem quos sit et sunt.

View File

@ -1,7 +0,0 @@
[build]
command = "jekyll build"
publish = "_site"
[build.environment]
JEKYLL_ENV = "production"
RUBY_VERSION = "3.2.2"

View File

@ -1,12 +0,0 @@
---
title: Services
layout: services
description: Services
intro_image: "images/illustrations/reading.svg"
intro_image_absolute: true
intro_image_hide_on_mobile: true
---
# Services that grow with your business
Aliquam erat volutpat. Morbi nisl tortor, dignissim eget efficitur vel, auctor non felis. Fusce quis viverra mi. Aenean quis massa pretium, ullamcorper nisi eget, hendrerit odio.

12
team.md
View File

@ -1,12 +0,0 @@
---
title: Team
layout: teams
description: Team
permalink: "/team/"
intro_image_absolute: true
intro_image_hide_on_mobile: false
---
# Meet The Team
Our team of qualified accountants and financial consultants can help your business at any stage of it's growth.