Commit 5ff0e346 authored by seotts's avatar seotts Committed by Karishma Chadha

work on reach section

parent 8b1c008e
......@@ -11,7 +11,6 @@ const FlexRow = require('../../components/flex-row/flex-row.jsx');
const Comment = require('../../components/comment/comment.jsx');
const People = require('./people.json');
const PeopleGrid = require('../../components/people-grid/people-grid.jsx');
const Avatar = require('../../components/avatar/avatar.jsx');
const Page = require('../../components/page/www/page.jsx');
const render = require('../../lib/render.jsx');
......@@ -164,19 +163,19 @@ class AnnualReport extends React.Component {
</a>
<a
className={classNames(
{selectedItem: this.state.currentlyVisible === SECTIONS.reach}
{selectedItem: this.state.currentlyVisible === SECTIONS.milestones}
)}
onClick={this.handleSubnavItemClick(SECTIONS.reach)}
onClick={this.handleSubnavItemClick(SECTIONS.milestones)}
>
<FormattedMessage id="annualReport.subnavReach" />
<FormattedMessage id="annualReport.subnavMilestones" />
</a>
<a
className={classNames(
{selectedItem: this.state.currentlyVisible === SECTIONS.milestones}
{selectedItem: this.state.currentlyVisible === SECTIONS.reach}
)}
onClick={this.handleSubnavItemClick(SECTIONS.milestones)}
onClick={this.handleSubnavItemClick(SECTIONS.reach)}
>
<FormattedMessage id="annualReport.subnavMilestones" />
<FormattedMessage id="annualReport.subnavReach" />
</a>
<a
className={classNames(
......@@ -319,7 +318,7 @@ class AnnualReport extends React.Component {
</div>
</FlexRow>
</div>
<div className="message-transition-images">
<div className="transition-images">
<img src="/images/annual-report/message/blocks.svg" />
<img src="/images/annual-report/message/banana.svg" />
</div>
......@@ -567,13 +566,106 @@ class AnnualReport extends React.Component {
</div>
</div>
</div>
<div className="transition-images">
<img src="/images/annual-report/milestones/vertical-loop.svg" />
<img src="/images/annual-report/milestones/painting-hand.svg" />
</div>
</div>
<div
className="our-reach section"
className="reach-section section"
id="reach"
ref={this.setRef(SECTIONS.reach)}
>
<div className="inner">
<div className="reach-intro">
<h2>
<FormattedMessage id="annualReport.reachTitle" />
</h2>
<p>
<FormattedMessage id="annualReport.reachSubtitle" />
</p>
<div className="reach-numbers">
<div className="reach-datapoint">
<FormattedMessage
id="annualReport.reach170million"
values={{
million: (
<div className="million">
<FormattedMessage id="annualReport.reachMillion" />
</div>
)
}}
/>
<h4>
<FormattedMessage id="annualReport.reachUniqueVisitors" />
</h4>
</div>
<div className="reach-datapoint">
<FormattedMessage
id="annualReport.reach170million"
values={{
million: (
<div className="million">
<FormattedMessage id="annualReport.reachMillion" />
</div>
)
}}
/>
<h4>
<FormattedMessage id="annualReport.reachUniqueVisitors" />
</h4>
</div>
<div className="reach-datapoint">
<FormattedMessage
id="annualReport.reach170million"
values={{
million: (
<div className="million">
<FormattedMessage id="annualReport.reachMillion" />
</div>
)
}}
/>
<h4>
<FormattedMessage id="annualReport.reachUniqueVisitors" />
</h4>
</div>
<div className="reach-datapoint">
<FormattedMessage
id="annualReport.reach170million"
values={{
million: (
<div className="million">
<FormattedMessage id="annualReport.reachMillion" />
</div>
)
}}
/>
<h4>
<FormattedMessage id="annualReport.reachUniqueVisitors" />
</h4>
</div>
</div>
</div>
<div className="reach-growth">
<div className="growth-blurb">
<h3>
<FormattedMessage id="annualReport.reachGrowthTitle" />
</h3>
<p>
<FormattedMessage id="annualReport.reachGrowthBlurb" />
</p>
</div>
<img src="/images/annual-report/milestones/community-growth-graph.svg" />
</div>
<div className="reach-map">
<h3>
<FormattedMessage id="annualReport.reachGlobalCommunity" />
</h3>
<p>
<FormattedMessage id="annualReport.reachMapBlurb" />
</p>
</div>
</div>
</div>
<div
......
......@@ -184,7 +184,7 @@ p {
}
}
.message-transition-images {
.transition-images {
display: flex;
justify-content: space-between;
......@@ -339,6 +339,93 @@ p {
}
}
.transition-images {
width: 100%;
//overflow-x: hidden;
img {
margin-bottom: -200px;
margin-right: -68px;
}
}
}
.reach-section {
.inner {
max-width: 940px;
padding-top: 120px;
display: flex;
flex-direction: column;
align-items: center;
}
background-color: #0EBD8C;
color: $ui-white;
h2, h3, h4, p {
color: $ui-white;
}
.reach-intro {
max-width: 620px;
text-align: center;
p {
font-size: 1.5rem;
}
.reach-numbers {
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 5rem;
}
.reach-datapoint {
width: 300px;
text-align: center;
margin: 32px 0;
}
.million {
font-size: 2rem;
font-weight: bold;
margin-bottom: 16px;
}
}
.reach-growth {
max-width: 940px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 76px;
.growth-blurb {
max-width: 300px;
margin: 20px;
}
img {
width: 600px;
}
}
.reach-map {
max-width: 1064px;
background-color: $ui-white;
border-radius: 6px;
color: $type-gray;
padding: 48px;
margin: 52px 0;
text-align: center;
h3, p {
color: $type-gray;
}
}
}
.financials-section {
......@@ -349,10 +436,10 @@ p {
background-color: #575E75;
width: 100%;
color: #FFFFFF;
color: $ui-white;
h2, h3, p {
color: #FFFFFF;
color: $ui-white;
}
h2 {
......
......@@ -43,6 +43,15 @@
"annualReport.milestones2019MessageScratch3": "Launch of Scratch 3.0, expanding what kids can create with code",
"annualReport.milestones2019MessageMove": "Scratch Team moves from MIT into Scratch Foundation",
"annualReport.reachTitle": "Reaching Children Around the World",
"annualReport.reachSubtitle": "Scratch is the world’s largest coding community for kids.",
"annualReport.reachMillion": "million",
"annualReport.reach170million": "170 {million}",
"annualReport.reachUniqueVisitors": "Unique Visitors",
"annualReport.reachGrowthTitle": "Community Growth",
"annualReport.reachGrowthBlurb": "New accounts created in the Scratch Online Community within the last 5 years.",
"annualReport.reachGlobalCommunity": "A Global Community",
"annualReport.reachMapBlurb": "Total accounts registered in the Scratch Online Community through December 31, 2019",
"annualReport.financialsTitle": "Financials - 2019",
"annualReport.financialsRevenue": "Revenues",
......
<?xml version="1.0" encoding="UTF-8"?>
<svg width="620px" height="380px" viewBox="0 0 620 380" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Community Growth Graph</title>
<g id="Community-Growth-Graph" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Projects-Shared-Graph" transform="translate(10.000000, 29.000000)">
<g id="Graph">
<line x1="93" y1="10" x2="601" y2="10" id="Line-3" stroke="#000000" opacity="0.25" stroke-linecap="square"></line>
<line x1="93" y1="106" x2="601" y2="106" id="Line-3-Copy-7" stroke="#000000" opacity="0.25" stroke-linecap="square"></line>
<line x1="93" y1="202" x2="601" y2="202" id="Line-3-Copy-8" stroke="#000000" opacity="0.25" stroke-linecap="square"></line>
<line x1="93" y1="298" x2="601" y2="298" id="Line-3-Copy-9" stroke="#000000" opacity="0.25" stroke-linecap="square"></line>
<path d="M5.576,16.208 C6.16266667,16.208 6.696,16.104 7.176,15.896 C7.656,15.688 8.06933333,15.4 8.416,15.032 C8.76266667,14.664 9.02933333,14.232 9.216,13.736 C9.40266667,13.24 9.496,12.704 9.496,12.128 C9.496,11.68 9.42666667,11.2373333 9.288,10.8 C9.14933333,10.3626667 8.93066667,9.97333333 8.632,9.632 C8.312,9.28 7.92266667,9 7.464,8.792 C7.00533333,8.584 6.536,8.48 6.056,8.48 C5.512,8.48 5.032,8.576 4.616,8.768 C4.2,8.96 3.83733333,9.28 3.528,9.728 L3.496,9.696 C3.50666667,9.38666667 3.54933333,9.03466667 3.624,8.64 C3.69866667,8.24533333 3.816,7.87466667 3.976,7.528 C4.136,7.18133333 4.352,6.888 4.624,6.648 C4.896,6.408 5.23466667,6.288 5.64,6.288 C6.03466667,6.288 6.36533333,6.42666667 6.632,6.704 C6.89866667,6.98133333 7.06933333,7.30666667 7.144,7.68 L9.304,7.68 C9.24,7.17866667 9.10666667,6.736 8.904,6.352 C8.70133333,5.968 8.44,5.64533333 8.12,5.384 C7.8,5.12266667 7.432,4.92266667 7.016,4.784 C6.6,4.64533333 6.152,4.576 5.672,4.576 C4.872,4.576 4.19466667,4.752 3.64,5.104 C3.08533333,5.456 2.632,5.912 2.28,6.472 C1.928,7.032 1.672,7.65866667 1.512,8.352 C1.352,9.04533333 1.272,9.73866667 1.272,10.432 C1.272,11.1466667 1.336,11.848 1.464,12.536 C1.592,13.224 1.82133333,13.84 2.152,14.384 C2.48266667,14.928 2.92533333,15.368 3.48,15.704 C4.03466667,16.04 4.73333333,16.208 5.576,16.208 Z M5.512,14.352 C5.224,14.352 4.968,14.2933333 4.744,14.176 C4.52,14.0586667 4.33066667,13.9013333 4.176,13.704 C4.02133333,13.5066667 3.904,13.2826667 3.824,13.032 C3.744,12.7813333 3.704,12.528 3.704,12.272 C3.704,11.9946667 3.74133333,11.7306667 3.816,11.48 C3.89066667,11.2293333 4.00266667,11.008 4.152,10.816 C4.30133333,10.624 4.49066667,10.472 4.72,10.36 C4.94933333,10.248 5.21333333,10.192 5.512,10.192 C5.8,10.192 6.05333333,10.2533333 6.272,10.376 C6.49066667,10.4986667 6.66933333,10.6586667 6.808,10.856 C6.94666667,11.0533333 7.05066667,11.2773333 7.12,11.528 C7.18933333,11.7786667 7.224,12.0373333 7.224,12.304 C7.224,12.56 7.18666667,12.8106667 7.112,13.056 C7.03733333,13.3013333 6.92533333,13.52 6.776,13.712 C6.62666667,13.904 6.448,14.0586667 6.24,14.176 C6.032,14.2933333 5.78933333,14.352 5.512,14.352 Z M14.264,16.208 C14.8293333,16.208 15.36,16.112 15.856,15.92 C16.352,15.728 16.7893333,15.408 17.168,14.96 C17.5466667,14.512 17.8453333,13.912 18.064,13.16 C18.2826667,12.408 18.392,11.472 18.392,10.352 C18.392,9.264 18.2826667,8.34933333 18.064,7.608 C17.8453333,6.86666667 17.5466667,6.272 17.168,5.824 C16.7893333,5.376 16.352,5.056 15.856,4.864 C15.36,4.672 14.8293333,4.576 14.264,4.576 C13.7093333,4.576 13.184,4.672 12.688,4.864 C12.192,5.056 11.7573333,5.376 11.384,5.824 C11.0106667,6.272 10.7146667,6.86666667 10.496,7.608 C10.2773333,8.34933333 10.168,9.264 10.168,10.352 C10.168,11.472 10.2773333,12.408 10.496,13.16 C10.7146667,13.912 11.0106667,14.512 11.384,14.96 C11.7573333,15.408 12.192,15.728 12.688,15.92 C13.184,16.112 13.7093333,16.208 14.264,16.208 Z M14.264,14.352 C13.8053333,14.352 13.4533333,14.2026667 13.208,13.904 C12.9626667,13.6053333 12.784,13.2453333 12.672,12.824 C12.56,12.4026667 12.4933333,11.9653333 12.472,11.512 C12.4506667,11.0586667 12.44,10.672 12.44,10.352 C12.44,10.16 12.4426667,9.928 12.448,9.656 C12.4533333,9.384 12.472,9.104 12.504,8.816 C12.536,8.528 12.5893333,8.24266667 12.664,7.96 C12.7386667,7.67733333 12.8426667,7.424 12.976,7.2 C13.1093333,6.976 13.28,6.79466667 13.488,6.656 C13.696,6.51733333 13.9546667,6.448 14.264,6.448 C14.5733333,6.448 14.8346667,6.51733333 15.048,6.656 C15.2613333,6.79466667 15.4373333,6.976 15.576,7.2 C15.7146667,7.424 15.8186667,7.67733333 15.888,7.96 C15.9573333,8.24266667 16.0106667,8.528 16.048,8.816 C16.0853333,9.104 16.1066667,9.384 16.112,9.656 C16.1173333,9.928 16.12,10.16 16.12,10.352 C16.12,10.672 16.1093333,11.0586667 16.088,11.512 C16.0666667,11.9653333 16,12.4026667 15.888,12.824 C15.776,13.2453333 15.5946667,13.6053333 15.344,13.904 C15.0933333,14.2026667 14.7333333,14.352 14.264,14.352 Z M19.72,18.64 C20.0613333,18.5866667 20.384,18.488 20.688,18.344 C20.992,18.2 21.256,18.016 21.48,17.792 C21.704,17.568 21.8826667,17.304 22.016,17 C22.1493333,16.696 22.216,16.3626667 22.216,16 L22.216,13.536 L19.704,13.536 L19.704,16 L20.856,16 C20.8666667,16.1706667 20.8453333,16.3386667 20.792,16.504 C20.7386667,16.6693333 20.6586667,16.8186667 20.552,16.952 C20.4453333,17.0853333 20.32,17.2 20.176,17.296 C20.032,17.392 19.88,17.456 19.72,17.488 L19.72,18.64 Z M27.608,16.208 C28.1733333,16.208 28.704,16.112 29.2,15.92 C29.696,15.728 30.1333333,15.408 30.512,14.96 C30.8906667,14.512 31.1893333,13.912 31.408,13.16 C31.6266667,12.408 31.736,11.472 31.736,10.352 C31.736,9.264 31.6266667,8.34933333 31.408,7.608 C31.1893333,6.86666667 30.8906667,6.272 30.512,5.824 C30.1333333,5.376 29.696,5.056 29.2,4.864 C28.704,4.672 28.1733333,4.576 27.608,4.576 C27.0533333,4.576 26.528,4.672 26.032,4.864 C25.536,5.056 25.1013333,5.376 24.728,5.824 C24.3546667,6.272 24.0586667,6.86666667 23.84,7.608 C23.6213333,8.34933333 23.512,9.264 23.512,10.352 C23.512,11.472 23.6213333,12.408 23.84,13.16 C24.0586667,13.912 24.3546667,14.512 24.728,14.96 C25.1013333,15.408 25.536,15.728 26.032,15.92 C26.528,16.112 27.0533333,16.208 27.608,16.208 Z M27.608,14.352 C27.1493333,14.352 26.7973333,14.2026667 26.552,13.904 C26.3066667,13.6053333 26.128,13.2453333 26.016,12.824 C25.904,12.4026667 25.8373333,11.9653333 25.816,11.512 C25.7946667,11.0586667 25.784,10.672 25.784,10.352 C25.784,10.16 25.7866667,9.928 25.792,9.656 C25.7973333,9.384 25.816,9.104 25.848,8.816 C25.88,8.528 25.9333333,8.24266667 26.008,7.96 C26.0826667,7.67733333 26.1866667,7.424 26.32,7.2 C26.4533333,6.976 26.624,6.79466667 26.832,6.656 C27.04,6.51733333 27.2986667,6.448 27.608,6.448 C27.9173333,6.448 28.1786667,6.51733333 28.392,6.656 C28.6053333,6.79466667 28.7813333,6.976 28.92,7.2 C29.0586667,7.424 29.1626667,7.67733333 29.232,7.96 C29.3013333,8.24266667 29.3546667,8.528 29.392,8.816 C29.4293333,9.104 29.4506667,9.384 29.456,9.656 C29.4613333,9.928 29.464,10.16 29.464,10.352 C29.464,10.672 29.4533333,11.0586667 29.432,11.512 C29.4106667,11.9653333 29.344,12.4026667 29.232,12.824 C29.12,13.2453333 28.9386667,13.6053333 28.688,13.904 C28.4373333,14.2026667 28.0773333,14.352 27.608,14.352 Z M36.504,16.208 C37.0693333,16.208 37.6,16.112 38.096,15.92 C38.592,15.728 39.0293333,15.408 39.408,14.96 C39.7866667,14.512 40.0853333,13.912 40.304,13.16 C40.5226667,12.408 40.632,11.472 40.632,10.352 C40.632,9.264 40.5226667,8.34933333 40.304,7.608 C40.0853333,6.86666667 39.7866667,6.272 39.408,5.824 C39.0293333,5.376 38.592,5.056 38.096,4.864 C37.6,4.672 37.0693333,4.576 36.504,4.576 C35.9493333,4.576 35.424,4.672 34.928,4.864 C34.432,5.056 33.9973333,5.376 33.624,5.824 C33.2506667,6.272 32.9546667,6.86666667 32.736,7.608 C32.5173333,8.34933333 32.408,9.264 32.408,10.352 C32.408,11.472 32.5173333,12.408 32.736,13.16 C32.9546667,13.912 33.2506667,14.512 33.624,14.96 C33.9973333,15.408 34.432,15.728 34.928,15.92 C35.424,16.112 35.9493333,16.208 36.504,16.208 Z M36.504,14.352 C36.0453333,14.352 35.6933333,14.2026667 35.448,13.904 C35.2026667,13.6053333 35.024,13.2453333 34.912,12.824 C34.8,12.4026667 34.7333333,11.9653333 34.712,11.512 C34.6906667,11.0586667 34.68,10.672 34.68,10.352 C34.68,10.16 34.6826667,9.928 34.688,9.656 C34.6933333,9.384 34.712,9.104 34.744,8.816 C34.776,8.528 34.8293333,8.24266667 34.904,7.96 C34.9786667,7.67733333 35.0826667,7.424 35.216,7.2 C35.3493333,6.976 35.52,6.79466667 35.728,6.656 C35.936,6.51733333 36.1946667,6.448 36.504,6.448 C36.8133333,6.448 37.0746667,6.51733333 37.288,6.656 C37.5013333,6.79466667 37.6773333,6.976 37.816,7.2 C37.9546667,7.424 38.0586667,7.67733333 38.128,7.96 C38.1973333,8.24266667 38.2506667,8.528 38.288,8.816 C38.3253333,9.104 38.3466667,9.384 38.352,9.656 C38.3573333,9.928 38.36,10.16 38.36,10.352 C38.36,10.672 38.3493333,11.0586667 38.328,11.512 C38.3066667,11.9653333 38.24,12.4026667 38.128,12.824 C38.016,13.2453333 37.8346667,13.6053333 37.584,13.904 C37.3333333,14.2026667 36.9733333,14.352 36.504,14.352 Z M45.4,16.208 C45.9653333,16.208 46.496,16.112 46.992,15.92 C47.488,15.728 47.9253333,15.408 48.304,14.96 C48.6826667,14.512 48.9813333,13.912 49.2,13.16 C49.4186667,12.408 49.528,11.472 49.528,10.352 C49.528,9.264 49.4186667,8.34933333 49.2,7.608 C48.9813333,6.86666667 48.6826667,6.272 48.304,5.824 C47.9253333,5.376 47.488,5.056 46.992,4.864 C46.496,4.672 45.9653333,4.576 45.4,4.576 C44.8453333,4.576 44.32,4.672 43.824,4.864 C43.328,5.056 42.8933333,5.376 42.52,5.824 C42.1466667,6.272 41.8506667,6.86666667 41.632,7.608 C41.4133333,8.34933333 41.304,9.264 41.304,10.352 C41.304,11.472 41.4133333,12.408 41.632,13.16 C41.8506667,13.912 42.1466667,14.512 42.52,14.96 C42.8933333,15.408 43.328,15.728 43.824,15.92 C44.32,16.112 44.8453333,16.208 45.4,16.208 Z M45.4,14.352 C44.9413333,14.352 44.5893333,14.2026667 44.344,13.904 C44.0986667,13.6053333 43.92,13.2453333 43.808,12.824 C43.696,12.4026667 43.6293333,11.9653333 43.608,11.512 C43.5866667,11.0586667 43.576,10.672 43.576,10.352 C43.576,10.16 43.5786667,9.928 43.584,9.656 C43.5893333,9.384 43.608,9.104 43.64,8.816 C43.672,8.528 43.7253333,8.24266667 43.8,7.96 C43.8746667,7.67733333 43.9786667,7.424 44.112,7.2 C44.2453333,6.976 44.416,6.79466667 44.624,6.656 C44.832,6.51733333 45.0906667,6.448 45.4,6.448 C45.7093333,6.448 45.9706667,6.51733333 46.184,6.656 C46.3973333,6.79466667 46.5733333,6.976 46.712,7.2 C46.8506667,7.424 46.9546667,7.67733333 47.024,7.96 C47.0933333,8.24266667 47.1466667,8.528 47.184,8.816 C47.2213333,9.104 47.2426667,9.384 47.248,9.656 C47.2533333,9.928 47.256,10.16 47.256,10.352 C47.256,10.672 47.2453333,11.0586667 47.224,11.512 C47.2026667,11.9653333 47.136,12.4026667 47.024,12.824 C46.912,13.2453333 46.7306667,13.6053333 46.48,13.904 C46.2293333,14.2026667 45.8693333,14.352 45.4,14.352 Z M50.856,18.64 C51.1973333,18.5866667 51.52,18.488 51.824,18.344 C52.128,18.2 52.392,18.016 52.616,17.792 C52.84,17.568 53.0186667,17.304 53.152,17 C53.2853333,16.696 53.352,16.3626667 53.352,16 L53.352,13.536 L50.84,13.536 L50.84,16 L51.992,16 C52.0026667,16.1706667 51.9813333,16.3386667 51.928,16.504 C51.8746667,16.6693333 51.7946667,16.8186667 51.688,16.952 C51.5813333,17.0853333 51.456,17.2 51.312,17.296 C51.168,17.392 51.016,17.456 50.856,17.488 L50.856,18.64 Z M58.744,16.208 C59.3093333,16.208 59.84,16.112 60.336,15.92 C60.832,15.728 61.2693333,15.408 61.648,14.96 C62.0266667,14.512 62.3253333,13.912 62.544,13.16 C62.7626667,12.408 62.872,11.472 62.872,10.352 C62.872,9.264 62.7626667,8.34933333 62.544,7.608 C62.3253333,6.86666667 62.0266667,6.272 61.648,5.824 C61.2693333,5.376 60.832,5.056 60.336,4.864 C59.84,4.672 59.3093333,4.576 58.744,4.576 C58.1893333,4.576 57.664,4.672 57.168,4.864 C56.672,5.056 56.2373333,5.376 55.864,5.824 C55.4906667,6.272 55.1946667,6.86666667 54.976,7.608 C54.7573333,8.34933333 54.648,9.264 54.648,10.352 C54.648,11.472 54.7573333,12.408 54.976,13.16 C55.1946667,13.912 55.4906667,14.512 55.864,14.96 C56.2373333,15.408 56.672,15.728 57.168,15.92 C57.664,16.112 58.1893333,16.208 58.744,16.208 Z M58.744,14.352 C58.2853333,14.352 57.9333333,14.2026667 57.688,13.904 C57.4426667,13.6053333 57.264,13.2453333 57.152,12.824 C57.04,12.4026667 56.9733333,11.9653333 56.952,11.512 C56.9306667,11.0586667 56.92,10.672 56.92,10.352 C56.92,10.16 56.9226667,9.928 56.928,9.656 C56.9333333,9.384 56.952,9.104 56.984,8.816 C57.016,8.528 57.0693333,8.24266667 57.144,7.96 C57.2186667,7.67733333 57.3226667,7.424 57.456,7.2 C57.5893333,6.976 57.76,6.79466667 57.968,6.656 C58.176,6.51733333 58.4346667,6.448 58.744,6.448 C59.0533333,6.448 59.3146667,6.51733333 59.528,6.656 C59.7413333,6.79466667 59.9173333,6.976 60.056,7.2 C60.1946667,7.424 60.2986667,7.67733333 60.368,7.96 C60.4373333,8.24266667 60.4906667,8.528 60.528,8.816 C60.5653333,9.104 60.5866667,9.384 60.592,9.656 C60.5973333,9.928 60.6,10.16 60.6,10.352 C60.6,10.672 60.5893333,11.0586667 60.568,11.512 C60.5466667,11.9653333 60.48,12.4026667 60.368,12.824 C60.256,13.2453333 60.0746667,13.6053333 59.824,13.904 C59.5733333,14.2026667 59.2133333,14.352 58.744,14.352 Z M67.64,16.208 C68.2053333,16.208 68.736,16.112 69.232,15.92 C69.728,15.728 70.1653333,15.408 70.544,14.96 C70.9226667,14.512 71.2213333,13.912 71.44,13.16 C71.6586667,12.408 71.768,11.472 71.768,10.352 C71.768,9.264 71.6586667,8.34933333 71.44,7.608 C71.2213333,6.86666667 70.9226667,6.272 70.544,5.824 C70.1653333,5.376 69.728,5.056 69.232,4.864 C68.736,4.672 68.2053333,4.576 67.64,4.576 C67.0853333,4.576 66.56,4.672 66.064,4.864 C65.568,5.056 65.1333333,5.376 64.76,5.824 C64.3866667,6.272 64.0906667,6.86666667 63.872,7.608 C63.6533333,8.34933333 63.544,9.264 63.544,10.352 C63.544,11.472 63.6533333,12.408 63.872,13.16 C64.0906667,13.912 64.3866667,14.512 64.76,14.96 C65.1333333,15.408 65.568,15.728 66.064,15.92 C66.56,16.112 67.0853333,16.208 67.64,16.208 Z M67.64,14.352 C67.1813333,14.352 66.8293333,14.2026667 66.584,13.904 C66.3386667,13.6053333 66.16,13.2453333 66.048,12.824 C65.936,12.4026667 65.8693333,11.9653333 65.848,11.512 C65.8266667,11.0586667 65.816,10.672 65.816,10.352 C65.816,10.16 65.8186667,9.928 65.824,9.656 C65.8293333,9.384 65.848,9.104 65.88,8.816 C65.912,8.528 65.9653333,8.24266667 66.04,7.96 C66.1146667,7.67733333 66.2186667,7.424 66.352,7.2 C66.4853333,6.976 66.656,6.79466667 66.864,6.656 C67.072,6.51733333 67.3306667,6.448 67.64,6.448 C67.9493333,6.448 68.2106667,6.51733333 68.424,6.656 C68.6373333,6.79466667 68.8133333,6.976 68.952,7.2 C69.0906667,7.424 69.1946667,7.67733333 69.264,7.96 C69.3333333,8.24266667 69.3866667,8.528 69.424,8.816 C69.4613333,9.104 69.4826667,9.384 69.488,9.656 C69.4933333,9.928 69.496,10.16 69.496,10.352 C69.496,10.672 69.4853333,11.0586667 69.464,11.512 C69.4426667,11.9653333 69.376,12.4026667 69.264,12.824 C69.152,13.2453333 68.9706667,13.6053333 68.72,13.904 C68.4693333,14.2026667 68.1093333,14.352 67.64,14.352 Z M76.536,16.208 C77.1013333,16.208 77.632,16.112 78.128,15.92 C78.624,15.728 79.0613333,15.408 79.44,14.96 C79.8186667,14.512 80.1173333,13.912 80.336,13.16 C80.5546667,12.408 80.664,11.472 80.664,10.352 C80.664,9.264 80.5546667,8.34933333 80.336,7.608 C80.1173333,6.86666667 79.8186667,6.272 79.44,5.824 C79.0613333,5.376 78.624,5.056 78.128,4.864 C77.632,4.672 77.1013333,4.576 76.536,4.576 C75.9813333,4.576 75.456,4.672 74.96,4.864 C74.464,5.056 74.0293333,5.376 73.656,5.824 C73.2826667,6.272 72.9866667,6.86666667 72.768,7.608 C72.5493333,8.34933333 72.44,9.264 72.44,10.352 C72.44,11.472 72.5493333,12.408 72.768,13.16 C72.9866667,13.912 73.2826667,14.512 73.656,14.96 C74.0293333,15.408 74.464,15.728 74.96,15.92 C75.456,16.112 75.9813333,16.208 76.536,16.208 Z M76.536,14.352 C76.0773333,14.352 75.7253333,14.2026667 75.48,13.904 C75.2346667,13.6053333 75.056,13.2453333 74.944,12.824 C74.832,12.4026667 74.7653333,11.9653333 74.744,11.512 C74.7226667,11.0586667 74.712,10.672 74.712,10.352 C74.712,10.16 74.7146667,9.928 74.72,9.656 C74.7253333,9.384 74.744,9.104 74.776,8.816 C74.808,8.528 74.8613333,8.24266667 74.936,7.96 C75.0106667,7.67733333 75.1146667,7.424 75.248,7.2 C75.3813333,6.976 75.552,6.79466667 75.76,6.656 C75.968,6.51733333 76.2266667,6.448 76.536,6.448 C76.8453333,6.448 77.1066667,6.51733333 77.32,6.656 C77.5333333,6.79466667 77.7093333,6.976 77.848,7.2 C77.9866667,7.424 78.0906667,7.67733333 78.16,7.96 C78.2293333,8.24266667 78.2826667,8.528 78.32,8.816 C78.3573333,9.104 78.3786667,9.384 78.384,9.656 C78.3893333,9.928 78.392,10.16 78.392,10.352 C78.392,10.672 78.3813333,11.0586667 78.36,11.512 C78.3386667,11.9653333 78.272,12.4026667 78.16,12.824 C78.048,13.2453333 77.8666667,13.6053333 77.616,13.904 C77.3653333,14.2026667 77.0053333,14.352 76.536,14.352 Z" id="60,000,000" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M8.088,112 L8.088,109.408 L9.576,109.408 L9.576,107.536 L8.088,107.536 L8.088,100.8 L6.056,100.8 L1.192,107.328 L1.192,109.408 L5.928,109.408 L5.928,112 L8.088,112 Z M5.928,107.536 L2.984,107.536 L5.88,103.648 L5.928,103.648 L5.928,107.536 Z M14.264,112.208 C14.8293333,112.208 15.36,112.112 15.856,111.92 C16.352,111.728 16.7893333,111.408 17.168,110.96 C17.5466667,110.512 17.8453333,109.912 18.064,109.16 C18.2826667,108.408 18.392,107.472 18.392,106.352 C18.392,105.264 18.2826667,104.349333 18.064,103.608 C17.8453333,102.866667 17.5466667,102.272 17.168,101.824 C16.7893333,101.376 16.352,101.056 15.856,100.864 C15.36,100.672 14.8293333,100.576 14.264,100.576 C13.7093333,100.576 13.184,100.672 12.688,100.864 C12.192,101.056 11.7573333,101.376 11.384,101.824 C11.0106667,102.272 10.7146667,102.866667 10.496,103.608 C10.2773333,104.349333 10.168,105.264 10.168,106.352 C10.168,107.472 10.2773333,108.408 10.496,109.16 C10.7146667,109.912 11.0106667,110.512 11.384,110.96 C11.7573333,111.408 12.192,111.728 12.688,111.92 C13.184,112.112 13.7093333,112.208 14.264,112.208 Z M14.264,110.352 C13.8053333,110.352 13.4533333,110.202667 13.208,109.904 C12.9626667,109.605333 12.784,109.245333 12.672,108.824 C12.56,108.402667 12.4933333,107.965333 12.472,107.512 C12.4506667,107.058667 12.44,106.672 12.44,106.352 C12.44,106.16 12.4426667,105.928 12.448,105.656 C12.4533333,105.384 12.472,105.104 12.504,104.816 C12.536,104.528 12.5893333,104.242667 12.664,103.96 C12.7386667,103.677333 12.8426667,103.424 12.976,103.2 C13.1093333,102.976 13.28,102.794667 13.488,102.656 C13.696,102.517333 13.9546667,102.448 14.264,102.448 C14.5733333,102.448 14.8346667,102.517333 15.048,102.656 C15.2613333,102.794667 15.4373333,102.976 15.576,103.2 C15.7146667,103.424 15.8186667,103.677333 15.888,103.96 C15.9573333,104.242667 16.0106667,104.528 16.048,104.816 C16.0853333,105.104 16.1066667,105.384 16.112,105.656 C16.1173333,105.928 16.12,106.16 16.12,106.352 C16.12,106.672 16.1093333,107.058667 16.088,107.512 C16.0666667,107.965333 16,108.402667 15.888,108.824 C15.776,109.245333 15.5946667,109.605333 15.344,109.904 C15.0933333,110.202667 14.7333333,110.352 14.264,110.352 Z M19.72,114.64 C20.0613333,114.586667 20.384,114.488 20.688,114.344 C20.992,114.2 21.256,114.016 21.48,113.792 C21.704,113.568 21.8826667,113.304 22.016,113 C22.1493333,112.696 22.216,112.362667 22.216,112 L22.216,109.536 L19.704,109.536 L19.704,112 L20.856,112 C20.8666667,112.170667 20.8453333,112.338667 20.792,112.504 C20.7386667,112.669333 20.6586667,112.818667 20.552,112.952 C20.4453333,113.085333 20.32,113.2 20.176,113.296 C20.032,113.392 19.88,113.456 19.72,113.488 L19.72,114.64 Z M27.608,112.208 C28.1733333,112.208 28.704,112.112 29.2,111.92 C29.696,111.728 30.1333333,111.408 30.512,110.96 C30.8906667,110.512 31.1893333,109.912 31.408,109.16 C31.6266667,108.408 31.736,107.472 31.736,106.352 C31.736,105.264 31.6266667,104.349333 31.408,103.608 C31.1893333,102.866667 30.8906667,102.272 30.512,101.824 C30.1333333,101.376 29.696,101.056 29.2,100.864 C28.704,100.672 28.1733333,100.576 27.608,100.576 C27.0533333,100.576 26.528,100.672 26.032,100.864 C25.536,101.056 25.1013333,101.376 24.728,101.824 C24.3546667,102.272 24.0586667,102.866667 23.84,103.608 C23.6213333,104.349333 23.512,105.264 23.512,106.352 C23.512,107.472 23.6213333,108.408 23.84,109.16 C24.0586667,109.912 24.3546667,110.512 24.728,110.96 C25.1013333,111.408 25.536,111.728 26.032,111.92 C26.528,112.112 27.0533333,112.208 27.608,112.208 Z M27.608,110.352 C27.1493333,110.352 26.7973333,110.202667 26.552,109.904 C26.3066667,109.605333 26.128,109.245333 26.016,108.824 C25.904,108.402667 25.8373333,107.965333 25.816,107.512 C25.7946667,107.058667 25.784,106.672 25.784,106.352 C25.784,106.16 25.7866667,105.928 25.792,105.656 C25.7973333,105.384 25.816,105.104 25.848,104.816 C25.88,104.528 25.9333333,104.242667 26.008,103.96 C26.0826667,103.677333 26.1866667,103.424 26.32,103.2 C26.4533333,102.976 26.624,102.794667 26.832,102.656 C27.04,102.517333 27.2986667,102.448 27.608,102.448 C27.9173333,102.448 28.1786667,102.517333 28.392,102.656 C28.6053333,102.794667 28.7813333,102.976 28.92,103.2 C29.0586667,103.424 29.1626667,103.677333 29.232,103.96 C29.3013333,104.242667 29.3546667,104.528 29.392,104.816 C29.4293333,105.104 29.4506667,105.384 29.456,105.656 C29.4613333,105.928 29.464,106.16 29.464,106.352 C29.464,106.672 29.4533333,107.058667 29.432,107.512 C29.4106667,107.965333 29.344,108.402667 29.232,108.824 C29.12,109.245333 28.9386667,109.605333 28.688,109.904 C28.4373333,110.202667 28.0773333,110.352 27.608,110.352 Z M36.504,112.208 C37.0693333,112.208 37.6,112.112 38.096,111.92 C38.592,111.728 39.0293333,111.408 39.408,110.96 C39.7866667,110.512 40.0853333,109.912 40.304,109.16 C40.5226667,108.408 40.632,107.472 40.632,106.352 C40.632,105.264 40.5226667,104.349333 40.304,103.608 C40.0853333,102.866667 39.7866667,102.272 39.408,101.824 C39.0293333,101.376 38.592,101.056 38.096,100.864 C37.6,100.672 37.0693333,100.576 36.504,100.576 C35.9493333,100.576 35.424,100.672 34.928,100.864 C34.432,101.056 33.9973333,101.376 33.624,101.824 C33.2506667,102.272 32.9546667,102.866667 32.736,103.608 C32.5173333,104.349333 32.408,105.264 32.408,106.352 C32.408,107.472 32.5173333,108.408 32.736,109.16 C32.9546667,109.912 33.2506667,110.512 33.624,110.96 C33.9973333,111.408 34.432,111.728 34.928,111.92 C35.424,112.112 35.9493333,112.208 36.504,112.208 Z M36.504,110.352 C36.0453333,110.352 35.6933333,110.202667 35.448,109.904 C35.2026667,109.605333 35.024,109.245333 34.912,108.824 C34.8,108.402667 34.7333333,107.965333 34.712,107.512 C34.6906667,107.058667 34.68,106.672 34.68,106.352 C34.68,106.16 34.6826667,105.928 34.688,105.656 C34.6933333,105.384 34.712,105.104 34.744,104.816 C34.776,104.528 34.8293333,104.242667 34.904,103.96 C34.9786667,103.677333 35.0826667,103.424 35.216,103.2 C35.3493333,102.976 35.52,102.794667 35.728,102.656 C35.936,102.517333 36.1946667,102.448 36.504,102.448 C36.8133333,102.448 37.0746667,102.517333 37.288,102.656 C37.5013333,102.794667 37.6773333,102.976 37.816,103.2 C37.9546667,103.424 38.0586667,103.677333 38.128,103.96 C38.1973333,104.242667 38.2506667,104.528 38.288,104.816 C38.3253333,105.104 38.3466667,105.384 38.352,105.656 C38.3573333,105.928 38.36,106.16 38.36,106.352 C38.36,106.672 38.3493333,107.058667 38.328,107.512 C38.3066667,107.965333 38.24,108.402667 38.128,108.824 C38.016,109.245333 37.8346667,109.605333 37.584,109.904 C37.3333333,110.202667 36.9733333,110.352 36.504,110.352 Z M45.4,112.208 C45.9653333,112.208 46.496,112.112 46.992,111.92 C47.488,111.728 47.9253333,111.408 48.304,110.96 C48.6826667,110.512 48.9813333,109.912 49.2,109.16 C49.4186667,108.408 49.528,107.472 49.528,106.352 C49.528,105.264 49.4186667,104.349333 49.2,103.608 C48.9813333,102.866667 48.6826667,102.272 48.304,101.824 C47.9253333,101.376 47.488,101.056 46.992,100.864 C46.496,100.672 45.9653333,100.576 45.4,100.576 C44.8453333,100.576 44.32,100.672 43.824,100.864 C43.328,101.056 42.8933333,101.376 42.52,101.824 C42.1466667,102.272 41.8506667,102.866667 41.632,103.608 C41.4133333,104.349333 41.304,105.264 41.304,106.352 C41.304,107.472 41.4133333,108.408 41.632,109.16 C41.8506667,109.912 42.1466667,110.512 42.52,110.96 C42.8933333,111.408 43.328,111.728 43.824,111.92 C44.32,112.112 44.8453333,112.208 45.4,112.208 Z M45.4,110.352 C44.9413333,110.352 44.5893333,110.202667 44.344,109.904 C44.0986667,109.605333 43.92,109.245333 43.808,108.824 C43.696,108.402667 43.6293333,107.965333 43.608,107.512 C43.5866667,107.058667 43.576,106.672 43.576,106.352 C43.576,106.16 43.5786667,105.928 43.584,105.656 C43.5893333,105.384 43.608,105.104 43.64,104.816 C43.672,104.528 43.7253333,104.242667 43.8,103.96 C43.8746667,103.677333 43.9786667,103.424 44.112,103.2 C44.2453333,102.976 44.416,102.794667 44.624,102.656 C44.832,102.517333 45.0906667,102.448 45.4,102.448 C45.7093333,102.448 45.9706667,102.517333 46.184,102.656 C46.3973333,102.794667 46.5733333,102.976 46.712,103.2 C46.8506667,103.424 46.9546667,103.677333 47.024,103.96 C47.0933333,104.242667 47.1466667,104.528 47.184,104.816 C47.2213333,105.104 47.2426667,105.384 47.248,105.656 C47.2533333,105.928 47.256,106.16 47.256,106.352 C47.256,106.672 47.2453333,107.058667 47.224,107.512 C47.2026667,107.965333 47.136,108.402667 47.024,108.824 C46.912,109.245333 46.7306667,109.605333 46.48,109.904 C46.2293333,110.202667 45.8693333,110.352 45.4,110.352 Z M50.856,114.64 C51.1973333,114.586667 51.52,114.488 51.824,114.344 C52.128,114.2 52.392,114.016 52.616,113.792 C52.84,113.568 53.0186667,113.304 53.152,113 C53.2853333,112.696 53.352,112.362667 53.352,112 L53.352,109.536 L50.84,109.536 L50.84,112 L51.992,112 C52.0026667,112.170667 51.9813333,112.338667 51.928,112.504 C51.8746667,112.669333 51.7946667,112.818667 51.688,112.952 C51.5813333,113.085333 51.456,113.2 51.312,113.296 C51.168,113.392 51.016,113.456 50.856,113.488 L50.856,114.64 Z M58.744,112.208 C59.3093333,112.208 59.84,112.112 60.336,111.92 C60.832,111.728 61.2693333,111.408 61.648,110.96 C62.0266667,110.512 62.3253333,109.912 62.544,109.16 C62.7626667,108.408 62.872,107.472 62.872,106.352 C62.872,105.264 62.7626667,104.349333 62.544,103.608 C62.3253333,102.866667 62.0266667,102.272 61.648,101.824 C61.2693333,101.376 60.832,101.056 60.336,100.864 C59.84,100.672 59.3093333,100.576 58.744,100.576 C58.1893333,100.576 57.664,100.672 57.168,100.864 C56.672,101.056 56.2373333,101.376 55.864,101.824 C55.4906667,102.272 55.1946667,102.866667 54.976,103.608 C54.7573333,104.349333 54.648,105.264 54.648,106.352 C54.648,107.472 54.7573333,108.408 54.976,109.16 C55.1946667,109.912 55.4906667,110.512 55.864,110.96 C56.2373333,111.408 56.672,111.728 57.168,111.92 C57.664,112.112 58.1893333,112.208 58.744,112.208 Z M58.744,110.352 C58.2853333,110.352 57.9333333,110.202667 57.688,109.904 C57.4426667,109.605333 57.264,109.245333 57.152,108.824 C57.04,108.402667 56.9733333,107.965333 56.952,107.512 C56.9306667,107.058667 56.92,106.672 56.92,106.352 C56.92,106.16 56.9226667,105.928 56.928,105.656 C56.9333333,105.384 56.952,105.104 56.984,104.816 C57.016,104.528 57.0693333,104.242667 57.144,103.96 C57.2186667,103.677333 57.3226667,103.424 57.456,103.2 C57.5893333,102.976 57.76,102.794667 57.968,102.656 C58.176,102.517333 58.4346667,102.448 58.744,102.448 C59.0533333,102.448 59.3146667,102.517333 59.528,102.656 C59.7413333,102.794667 59.9173333,102.976 60.056,103.2 C60.1946667,103.424 60.2986667,103.677333 60.368,103.96 C60.4373333,104.242667 60.4906667,104.528 60.528,104.816 C60.5653333,105.104 60.5866667,105.384 60.592,105.656 C60.5973333,105.928 60.6,106.16 60.6,106.352 C60.6,106.672 60.5893333,107.058667 60.568,107.512 C60.5466667,107.965333 60.48,108.402667 60.368,108.824 C60.256,109.245333 60.0746667,109.605333 59.824,109.904 C59.5733333,110.202667 59.2133333,110.352 58.744,110.352 Z M67.64,112.208 C68.2053333,112.208 68.736,112.112 69.232,111.92 C69.728,111.728 70.1653333,111.408 70.544,110.96 C70.9226667,110.512 71.2213333,109.912 71.44,109.16 C71.6586667,108.408 71.768,107.472 71.768,106.352 C71.768,105.264 71.6586667,104.349333 71.44,103.608 C71.2213333,102.866667 70.9226667,102.272 70.544,101.824 C70.1653333,101.376 69.728,101.056 69.232,100.864 C68.736,100.672 68.2053333,100.576 67.64,100.576 C67.0853333,100.576 66.56,100.672 66.064,100.864 C65.568,101.056 65.1333333,101.376 64.76,101.824 C64.3866667,102.272 64.0906667,102.866667 63.872,103.608 C63.6533333,104.349333 63.544,105.264 63.544,106.352 C63.544,107.472 63.6533333,108.408 63.872,109.16 C64.0906667,109.912 64.3866667,110.512 64.76,110.96 C65.1333333,111.408 65.568,111.728 66.064,111.92 C66.56,112.112 67.0853333,112.208 67.64,112.208 Z M67.64,110.352 C67.1813333,110.352 66.8293333,110.202667 66.584,109.904 C66.3386667,109.605333 66.16,109.245333 66.048,108.824 C65.936,108.402667 65.8693333,107.965333 65.848,107.512 C65.8266667,107.058667 65.816,106.672 65.816,106.352 C65.816,106.16 65.8186667,105.928 65.824,105.656 C65.8293333,105.384 65.848,105.104 65.88,104.816 C65.912,104.528 65.9653333,104.242667 66.04,103.96 C66.1146667,103.677333 66.2186667,103.424 66.352,103.2 C66.4853333,102.976 66.656,102.794667 66.864,102.656 C67.072,102.517333 67.3306667,102.448 67.64,102.448 C67.9493333,102.448 68.2106667,102.517333 68.424,102.656 C68.6373333,102.794667 68.8133333,102.976 68.952,103.2 C69.0906667,103.424 69.1946667,103.677333 69.264,103.96 C69.3333333,104.242667 69.3866667,104.528 69.424,104.816 C69.4613333,105.104 69.4826667,105.384 69.488,105.656 C69.4933333,105.928 69.496,106.16 69.496,106.352 C69.496,106.672 69.4853333,107.058667 69.464,107.512 C69.4426667,107.965333 69.376,108.402667 69.264,108.824 C69.152,109.245333 68.9706667,109.605333 68.72,109.904 C68.4693333,110.202667 68.1093333,110.352 67.64,110.352 Z M76.536,112.208 C77.1013333,112.208 77.632,112.112 78.128,111.92 C78.624,111.728 79.0613333,111.408 79.44,110.96 C79.8186667,110.512 80.1173333,109.912 80.336,109.16 C80.5546667,108.408 80.664,107.472 80.664,106.352 C80.664,105.264 80.5546667,104.349333 80.336,103.608 C80.1173333,102.866667 79.8186667,102.272 79.44,101.824 C79.0613333,101.376 78.624,101.056 78.128,100.864 C77.632,100.672 77.1013333,100.576 76.536,100.576 C75.9813333,100.576 75.456,100.672 74.96,100.864 C74.464,101.056 74.0293333,101.376 73.656,101.824 C73.2826667,102.272 72.9866667,102.866667 72.768,103.608 C72.5493333,104.349333 72.44,105.264 72.44,106.352 C72.44,107.472 72.5493333,108.408 72.768,109.16 C72.9866667,109.912 73.2826667,110.512 73.656,110.96 C74.0293333,111.408 74.464,111.728 74.96,111.92 C75.456,112.112 75.9813333,112.208 76.536,112.208 Z M76.536,110.352 C76.0773333,110.352 75.7253333,110.202667 75.48,109.904 C75.2346667,109.605333 75.056,109.245333 74.944,108.824 C74.832,108.402667 74.7653333,107.965333 74.744,107.512 C74.7226667,107.058667 74.712,106.672 74.712,106.352 C74.712,106.16 74.7146667,105.928 74.72,105.656 C74.7253333,105.384 74.744,105.104 74.776,104.816 C74.808,104.528 74.8613333,104.242667 74.936,103.96 C75.0106667,103.677333 75.1146667,103.424 75.248,103.2 C75.3813333,102.976 75.552,102.794667 75.76,102.656 C75.968,102.517333 76.2266667,102.448 76.536,102.448 C76.8453333,102.448 77.1066667,102.517333 77.32,102.656 C77.5333333,102.794667 77.7093333,102.976 77.848,103.2 C77.9866667,103.424 78.0906667,103.677333 78.16,103.96 C78.2293333,104.242667 78.2826667,104.528 78.32,104.816 C78.3573333,105.104 78.3786667,105.384 78.384,105.656 C78.3893333,105.928 78.392,106.16 78.392,106.352 C78.392,106.672 78.3813333,107.058667 78.36,107.512 C78.3386667,107.965333 78.272,108.402667 78.16,108.824 C78.048,109.245333 77.8666667,109.605333 77.616,109.904 C77.3653333,110.202667 77.0053333,110.352 76.536,110.352 Z" id="40,000,000" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M9.496,208 L9.496,206.048 L4.2,206.048 C4.47733333,205.664 4.79733333,205.328 5.16,205.04 C5.52266667,204.752 5.896,204.482667 6.28,204.232 C6.664,203.981333 7.04533333,203.728 7.424,203.472 C7.80266667,203.216 8.14133333,202.930667 8.44,202.616 C8.73866667,202.301333 8.97866667,201.941333 9.16,201.536 C9.34133333,201.130667 9.432,200.645333 9.432,200.08 C9.432,199.536 9.328,199.045333 9.12,198.608 C8.912,198.170667 8.632,197.802667 8.28,197.504 C7.928,197.205333 7.52,196.976 7.056,196.816 C6.592,196.656 6.104,196.576 5.592,196.576 C4.92,196.576 4.32533333,196.690667 3.808,196.92 C3.29066667,197.149333 2.86133333,197.469333 2.52,197.88 C2.17866667,198.290667 1.92266667,198.770667 1.752,199.32 C1.58133333,199.869333 1.50666667,200.464 1.528,201.104 L3.704,201.104 C3.704,200.805333 3.73333333,200.504 3.792,200.2 C3.85066667,199.896 3.94933333,199.618667 4.088,199.368 C4.22666667,199.117333 4.41066667,198.914667 4.64,198.76 C4.86933333,198.605333 5.14933333,198.528 5.48,198.528 C5.97066667,198.528 6.37333333,198.68 6.688,198.984 C7.00266667,199.288 7.16,199.712 7.16,200.256 C7.16,200.597333 7.08266667,200.901333 6.928,201.168 C6.77333333,201.434667 6.58133333,201.674667 6.352,201.888 C6.12266667,202.101333 5.86933333,202.296 5.592,202.472 C5.31466667,202.648 5.05333333,202.821333 4.808,202.992 C4.328,203.322667 3.872,203.648 3.44,203.968 C3.008,204.288 2.632,204.637333 2.312,205.016 C1.992,205.394667 1.73866667,205.824 1.552,206.304 C1.36533333,206.784 1.272,207.349333 1.272,208 L9.496,208 Z M14.264,208.208 C14.8293333,208.208 15.36,208.112 15.856,207.92 C16.352,207.728 16.7893333,207.408 17.168,206.96 C17.5466667,206.512 17.8453333,205.912 18.064,205.16 C18.2826667,204.408 18.392,203.472 18.392,202.352 C18.392,201.264 18.2826667,200.349333 18.064,199.608 C17.8453333,198.866667 17.5466667,198.272 17.168,197.824 C16.7893333,197.376 16.352,197.056 15.856,196.864 C15.36,196.672 14.8293333,196.576 14.264,196.576 C13.7093333,196.576 13.184,196.672 12.688,196.864 C12.192,197.056 11.7573333,197.376 11.384,197.824 C11.0106667,198.272 10.7146667,198.866667 10.496,199.608 C10.2773333,200.349333 10.168,201.264 10.168,202.352 C10.168,203.472 10.2773333,204.408 10.496,205.16 C10.7146667,205.912 11.0106667,206.512 11.384,206.96 C11.7573333,207.408 12.192,207.728 12.688,207.92 C13.184,208.112 13.7093333,208.208 14.264,208.208 Z M14.264,206.352 C13.8053333,206.352 13.4533333,206.202667 13.208,205.904 C12.9626667,205.605333 12.784,205.245333 12.672,204.824 C12.56,204.402667 12.4933333,203.965333 12.472,203.512 C12.4506667,203.058667 12.44,202.672 12.44,202.352 C12.44,202.16 12.4426667,201.928 12.448,201.656 C12.4533333,201.384 12.472,201.104 12.504,200.816 C12.536,200.528 12.5893333,200.242667 12.664,199.96 C12.7386667,199.677333 12.8426667,199.424 12.976,199.2 C13.1093333,198.976 13.28,198.794667 13.488,198.656 C13.696,198.517333 13.9546667,198.448 14.264,198.448 C14.5733333,198.448 14.8346667,198.517333 15.048,198.656 C15.2613333,198.794667 15.4373333,198.976 15.576,199.2 C15.7146667,199.424 15.8186667,199.677333 15.888,199.96 C15.9573333,200.242667 16.0106667,200.528 16.048,200.816 C16.0853333,201.104 16.1066667,201.384 16.112,201.656 C16.1173333,201.928 16.12,202.16 16.12,202.352 C16.12,202.672 16.1093333,203.058667 16.088,203.512 C16.0666667,203.965333 16,204.402667 15.888,204.824 C15.776,205.245333 15.5946667,205.605333 15.344,205.904 C15.0933333,206.202667 14.7333333,206.352 14.264,206.352 Z M19.72,210.64 C20.0613333,210.586667 20.384,210.488 20.688,210.344 C20.992,210.2 21.256,210.016 21.48,209.792 C21.704,209.568 21.8826667,209.304 22.016,209 C22.1493333,208.696 22.216,208.362667 22.216,208 L22.216,205.536 L19.704,205.536 L19.704,208 L20.856,208 C20.8666667,208.170667 20.8453333,208.338667 20.792,208.504 C20.7386667,208.669333 20.6586667,208.818667 20.552,208.952 C20.4453333,209.085333 20.32,209.2 20.176,209.296 C20.032,209.392 19.88,209.456 19.72,209.488 L19.72,210.64 Z M27.608,208.208 C28.1733333,208.208 28.704,208.112 29.2,207.92 C29.696,207.728 30.1333333,207.408 30.512,206.96 C30.8906667,206.512 31.1893333,205.912 31.408,205.16 C31.6266667,204.408 31.736,203.472 31.736,202.352 C31.736,201.264 31.6266667,200.349333 31.408,199.608 C31.1893333,198.866667 30.8906667,198.272 30.512,197.824 C30.1333333,197.376 29.696,197.056 29.2,196.864 C28.704,196.672 28.1733333,196.576 27.608,196.576 C27.0533333,196.576 26.528,196.672 26.032,196.864 C25.536,197.056 25.1013333,197.376 24.728,197.824 C24.3546667,198.272 24.0586667,198.866667 23.84,199.608 C23.6213333,200.349333 23.512,201.264 23.512,202.352 C23.512,203.472 23.6213333,204.408 23.84,205.16 C24.0586667,205.912 24.3546667,206.512 24.728,206.96 C25.1013333,207.408 25.536,207.728 26.032,207.92 C26.528,208.112 27.0533333,208.208 27.608,208.208 Z M27.608,206.352 C27.1493333,206.352 26.7973333,206.202667 26.552,205.904 C26.3066667,205.605333 26.128,205.245333 26.016,204.824 C25.904,204.402667 25.8373333,203.965333 25.816,203.512 C25.7946667,203.058667 25.784,202.672 25.784,202.352 C25.784,202.16 25.7866667,201.928 25.792,201.656 C25.7973333,201.384 25.816,201.104 25.848,200.816 C25.88,200.528 25.9333333,200.242667 26.008,199.96 C26.0826667,199.677333 26.1866667,199.424 26.32,199.2 C26.4533333,198.976 26.624,198.794667 26.832,198.656 C27.04,198.517333 27.2986667,198.448 27.608,198.448 C27.9173333,198.448 28.1786667,198.517333 28.392,198.656 C28.6053333,198.794667 28.7813333,198.976 28.92,199.2 C29.0586667,199.424 29.1626667,199.677333 29.232,199.96 C29.3013333,200.242667 29.3546667,200.528 29.392,200.816 C29.4293333,201.104 29.4506667,201.384 29.456,201.656 C29.4613333,201.928 29.464,202.16 29.464,202.352 C29.464,202.672 29.4533333,203.058667 29.432,203.512 C29.4106667,203.965333 29.344,204.402667 29.232,204.824 C29.12,205.245333 28.9386667,205.605333 28.688,205.904 C28.4373333,206.202667 28.0773333,206.352 27.608,206.352 Z M36.504,208.208 C37.0693333,208.208 37.6,208.112 38.096,207.92 C38.592,207.728 39.0293333,207.408 39.408,206.96 C39.7866667,206.512 40.0853333,205.912 40.304,205.16 C40.5226667,204.408 40.632,203.472 40.632,202.352 C40.632,201.264 40.5226667,200.349333 40.304,199.608 C40.0853333,198.866667 39.7866667,198.272 39.408,197.824 C39.0293333,197.376 38.592,197.056 38.096,196.864 C37.6,196.672 37.0693333,196.576 36.504,196.576 C35.9493333,196.576 35.424,196.672 34.928,196.864 C34.432,197.056 33.9973333,197.376 33.624,197.824 C33.2506667,198.272 32.9546667,198.866667 32.736,199.608 C32.5173333,200.349333 32.408,201.264 32.408,202.352 C32.408,203.472 32.5173333,204.408 32.736,205.16 C32.9546667,205.912 33.2506667,206.512 33.624,206.96 C33.9973333,207.408 34.432,207.728 34.928,207.92 C35.424,208.112 35.9493333,208.208 36.504,208.208 Z M36.504,206.352 C36.0453333,206.352 35.6933333,206.202667 35.448,205.904 C35.2026667,205.605333 35.024,205.245333 34.912,204.824 C34.8,204.402667 34.7333333,203.965333 34.712,203.512 C34.6906667,203.058667 34.68,202.672 34.68,202.352 C34.68,202.16 34.6826667,201.928 34.688,201.656 C34.6933333,201.384 34.712,201.104 34.744,200.816 C34.776,200.528 34.8293333,200.242667 34.904,199.96 C34.9786667,199.677333 35.0826667,199.424 35.216,199.2 C35.3493333,198.976 35.52,198.794667 35.728,198.656 C35.936,198.517333 36.1946667,198.448 36.504,198.448 C36.8133333,198.448 37.0746667,198.517333 37.288,198.656 C37.5013333,198.794667 37.6773333,198.976 37.816,199.2 C37.9546667,199.424 38.0586667,199.677333 38.128,199.96 C38.1973333,200.242667 38.2506667,200.528 38.288,200.816 C38.3253333,201.104 38.3466667,201.384 38.352,201.656 C38.3573333,201.928 38.36,202.16 38.36,202.352 C38.36,202.672 38.3493333,203.058667 38.328,203.512 C38.3066667,203.965333 38.24,204.402667 38.128,204.824 C38.016,205.245333 37.8346667,205.605333 37.584,205.904 C37.3333333,206.202667 36.9733333,206.352 36.504,206.352 Z M45.4,208.208 C45.9653333,208.208 46.496,208.112 46.992,207.92 C47.488,207.728 47.9253333,207.408 48.304,206.96 C48.6826667,206.512 48.9813333,205.912 49.2,205.16 C49.4186667,204.408 49.528,203.472 49.528,202.352 C49.528,201.264 49.4186667,200.349333 49.2,199.608 C48.9813333,198.866667 48.6826667,198.272 48.304,197.824 C47.9253333,197.376 47.488,197.056 46.992,196.864 C46.496,196.672 45.9653333,196.576 45.4,196.576 C44.8453333,196.576 44.32,196.672 43.824,196.864 C43.328,197.056 42.8933333,197.376 42.52,197.824 C42.1466667,198.272 41.8506667,198.866667 41.632,199.608 C41.4133333,200.349333 41.304,201.264 41.304,202.352 C41.304,203.472 41.4133333,204.408 41.632,205.16 C41.8506667,205.912 42.1466667,206.512 42.52,206.96 C42.8933333,207.408 43.328,207.728 43.824,207.92 C44.32,208.112 44.8453333,208.208 45.4,208.208 Z M45.4,206.352 C44.9413333,206.352 44.5893333,206.202667 44.344,205.904 C44.0986667,205.605333 43.92,205.245333 43.808,204.824 C43.696,204.402667 43.6293333,203.965333 43.608,203.512 C43.5866667,203.058667 43.576,202.672 43.576,202.352 C43.576,202.16 43.5786667,201.928 43.584,201.656 C43.5893333,201.384 43.608,201.104 43.64,200.816 C43.672,200.528 43.7253333,200.242667 43.8,199.96 C43.8746667,199.677333 43.9786667,199.424 44.112,199.2 C44.2453333,198.976 44.416,198.794667 44.624,198.656 C44.832,198.517333 45.0906667,198.448 45.4,198.448 C45.7093333,198.448 45.9706667,198.517333 46.184,198.656 C46.3973333,198.794667 46.5733333,198.976 46.712,199.2 C46.8506667,199.424 46.9546667,199.677333 47.024,199.96 C47.0933333,200.242667 47.1466667,200.528 47.184,200.816 C47.2213333,201.104 47.2426667,201.384 47.248,201.656 C47.2533333,201.928 47.256,202.16 47.256,202.352 C47.256,202.672 47.2453333,203.058667 47.224,203.512 C47.2026667,203.965333 47.136,204.402667 47.024,204.824 C46.912,205.245333 46.7306667,205.605333 46.48,205.904 C46.2293333,206.202667 45.8693333,206.352 45.4,206.352 Z M50.856,210.64 C51.1973333,210.586667 51.52,210.488 51.824,210.344 C52.128,210.2 52.392,210.016 52.616,209.792 C52.84,209.568 53.0186667,209.304 53.152,209 C53.2853333,208.696 53.352,208.362667 53.352,208 L53.352,205.536 L50.84,205.536 L50.84,208 L51.992,208 C52.0026667,208.170667 51.9813333,208.338667 51.928,208.504 C51.8746667,208.669333 51.7946667,208.818667 51.688,208.952 C51.5813333,209.085333 51.456,209.2 51.312,209.296 C51.168,209.392 51.016,209.456 50.856,209.488 L50.856,210.64 Z M58.744,208.208 C59.3093333,208.208 59.84,208.112 60.336,207.92 C60.832,207.728 61.2693333,207.408 61.648,206.96 C62.0266667,206.512 62.3253333,205.912 62.544,205.16 C62.7626667,204.408 62.872,203.472 62.872,202.352 C62.872,201.264 62.7626667,200.349333 62.544,199.608 C62.3253333,198.866667 62.0266667,198.272 61.648,197.824 C61.2693333,197.376 60.832,197.056 60.336,196.864 C59.84,196.672 59.3093333,196.576 58.744,196.576 C58.1893333,196.576 57.664,196.672 57.168,196.864 C56.672,197.056 56.2373333,197.376 55.864,197.824 C55.4906667,198.272 55.1946667,198.866667 54.976,199.608 C54.7573333,200.349333 54.648,201.264 54.648,202.352 C54.648,203.472 54.7573333,204.408 54.976,205.16 C55.1946667,205.912 55.4906667,206.512 55.864,206.96 C56.2373333,207.408 56.672,207.728 57.168,207.92 C57.664,208.112 58.1893333,208.208 58.744,208.208 Z M58.744,206.352 C58.2853333,206.352 57.9333333,206.202667 57.688,205.904 C57.4426667,205.605333 57.264,205.245333 57.152,204.824 C57.04,204.402667 56.9733333,203.965333 56.952,203.512 C56.9306667,203.058667 56.92,202.672 56.92,202.352 C56.92,202.16 56.9226667,201.928 56.928,201.656 C56.9333333,201.384 56.952,201.104 56.984,200.816 C57.016,200.528 57.0693333,200.242667 57.144,199.96 C57.2186667,199.677333 57.3226667,199.424 57.456,199.2 C57.5893333,198.976 57.76,198.794667 57.968,198.656 C58.176,198.517333 58.4346667,198.448 58.744,198.448 C59.0533333,198.448 59.3146667,198.517333 59.528,198.656 C59.7413333,198.794667 59.9173333,198.976 60.056,199.2 C60.1946667,199.424 60.2986667,199.677333 60.368,199.96 C60.4373333,200.242667 60.4906667,200.528 60.528,200.816 C60.5653333,201.104 60.5866667,201.384 60.592,201.656 C60.5973333,201.928 60.6,202.16 60.6,202.352 C60.6,202.672 60.5893333,203.058667 60.568,203.512 C60.5466667,203.965333 60.48,204.402667 60.368,204.824 C60.256,205.245333 60.0746667,205.605333 59.824,205.904 C59.5733333,206.202667 59.2133333,206.352 58.744,206.352 Z M67.64,208.208 C68.2053333,208.208 68.736,208.112 69.232,207.92 C69.728,207.728 70.1653333,207.408 70.544,206.96 C70.9226667,206.512 71.2213333,205.912 71.44,205.16 C71.6586667,204.408 71.768,203.472 71.768,202.352 C71.768,201.264 71.6586667,200.349333 71.44,199.608 C71.2213333,198.866667 70.9226667,198.272 70.544,197.824 C70.1653333,197.376 69.728,197.056 69.232,196.864 C68.736,196.672 68.2053333,196.576 67.64,196.576 C67.0853333,196.576 66.56,196.672 66.064,196.864 C65.568,197.056 65.1333333,197.376 64.76,197.824 C64.3866667,198.272 64.0906667,198.866667 63.872,199.608 C63.6533333,200.349333 63.544,201.264 63.544,202.352 C63.544,203.472 63.6533333,204.408 63.872,205.16 C64.0906667,205.912 64.3866667,206.512 64.76,206.96 C65.1333333,207.408 65.568,207.728 66.064,207.92 C66.56,208.112 67.0853333,208.208 67.64,208.208 Z M67.64,206.352 C67.1813333,206.352 66.8293333,206.202667 66.584,205.904 C66.3386667,205.605333 66.16,205.245333 66.048,204.824 C65.936,204.402667 65.8693333,203.965333 65.848,203.512 C65.8266667,203.058667 65.816,202.672 65.816,202.352 C65.816,202.16 65.8186667,201.928 65.824,201.656 C65.8293333,201.384 65.848,201.104 65.88,200.816 C65.912,200.528 65.9653333,200.242667 66.04,199.96 C66.1146667,199.677333 66.2186667,199.424 66.352,199.2 C66.4853333,198.976 66.656,198.794667 66.864,198.656 C67.072,198.517333 67.3306667,198.448 67.64,198.448 C67.9493333,198.448 68.2106667,198.517333 68.424,198.656 C68.6373333,198.794667 68.8133333,198.976 68.952,199.2 C69.0906667,199.424 69.1946667,199.677333 69.264,199.96 C69.3333333,200.242667 69.3866667,200.528 69.424,200.816 C69.4613333,201.104 69.4826667,201.384 69.488,201.656 C69.4933333,201.928 69.496,202.16 69.496,202.352 C69.496,202.672 69.4853333,203.058667 69.464,203.512 C69.4426667,203.965333 69.376,204.402667 69.264,204.824 C69.152,205.245333 68.9706667,205.605333 68.72,205.904 C68.4693333,206.202667 68.1093333,206.352 67.64,206.352 Z M76.536,208.208 C77.1013333,208.208 77.632,208.112 78.128,207.92 C78.624,207.728 79.0613333,207.408 79.44,206.96 C79.8186667,206.512 80.1173333,205.912 80.336,205.16 C80.5546667,204.408 80.664,203.472 80.664,202.352 C80.664,201.264 80.5546667,200.349333 80.336,199.608 C80.1173333,198.866667 79.8186667,198.272 79.44,197.824 C79.0613333,197.376 78.624,197.056 78.128,196.864 C77.632,196.672 77.1013333,196.576 76.536,196.576 C75.9813333,196.576 75.456,196.672 74.96,196.864 C74.464,197.056 74.0293333,197.376 73.656,197.824 C73.2826667,198.272 72.9866667,198.866667 72.768,199.608 C72.5493333,200.349333 72.44,201.264 72.44,202.352 C72.44,203.472 72.5493333,204.408 72.768,205.16 C72.9866667,205.912 73.2826667,206.512 73.656,206.96 C74.0293333,207.408 74.464,207.728 74.96,207.92 C75.456,208.112 75.9813333,208.208 76.536,208.208 Z M76.536,206.352 C76.0773333,206.352 75.7253333,206.202667 75.48,205.904 C75.2346667,205.605333 75.056,205.245333 74.944,204.824 C74.832,204.402667 74.7653333,203.965333 74.744,203.512 C74.7226667,203.058667 74.712,202.672 74.712,202.352 C74.712,202.16 74.7146667,201.928 74.72,201.656 C74.7253333,201.384 74.744,201.104 74.776,200.816 C74.808,200.528 74.8613333,200.242667 74.936,199.96 C75.0106667,199.677333 75.1146667,199.424 75.248,199.2 C75.3813333,198.976 75.552,198.794667 75.76,198.656 C75.968,198.517333 76.2266667,198.448 76.536,198.448 C76.8453333,198.448 77.1066667,198.517333 77.32,198.656 C77.5333333,198.794667 77.7093333,198.976 77.848,199.2 C77.9866667,199.424 78.0906667,199.677333 78.16,199.96 C78.2293333,200.242667 78.2826667,200.528 78.32,200.816 C78.3573333,201.104 78.3786667,201.384 78.384,201.656 C78.3893333,201.928 78.392,202.16 78.392,202.352 C78.392,202.672 78.3813333,203.058667 78.36,203.512 C78.3386667,203.965333 78.272,204.402667 78.16,204.824 C78.048,205.245333 77.8666667,205.605333 77.616,205.904 C77.3653333,206.202667 77.0053333,206.352 76.536,206.352 Z" id="20,000,000" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M76.536,304.208 C77.1013333,304.208 77.632,304.112 78.128,303.92 C78.624,303.728 79.0613333,303.408 79.44,302.96 C79.8186667,302.512 80.1173333,301.912 80.336,301.16 C80.5546667,300.408 80.664,299.472 80.664,298.352 C80.664,297.264 80.5546667,296.349333 80.336,295.608 C80.1173333,294.866667 79.8186667,294.272 79.44,293.824 C79.0613333,293.376 78.624,293.056 78.128,292.864 C77.632,292.672 77.1013333,292.576 76.536,292.576 C75.9813333,292.576 75.456,292.672 74.96,292.864 C74.464,293.056 74.0293333,293.376 73.656,293.824 C73.2826667,294.272 72.9866667,294.866667 72.768,295.608 C72.5493333,296.349333 72.44,297.264 72.44,298.352 C72.44,299.472 72.5493333,300.408 72.768,301.16 C72.9866667,301.912 73.2826667,302.512 73.656,302.96 C74.0293333,303.408 74.464,303.728 74.96,303.92 C75.456,304.112 75.9813333,304.208 76.536,304.208 Z M76.536,302.352 C76.0773333,302.352 75.7253333,302.202667 75.48,301.904 C75.2346667,301.605333 75.056,301.245333 74.944,300.824 C74.832,300.402667 74.7653333,299.965333 74.744,299.512 C74.7226667,299.058667 74.712,298.672 74.712,298.352 C74.712,298.16 74.7146667,297.928 74.72,297.656 C74.7253333,297.384 74.744,297.104 74.776,296.816 C74.808,296.528 74.8613333,296.242667 74.936,295.96 C75.0106667,295.677333 75.1146667,295.424 75.248,295.2 C75.3813333,294.976 75.552,294.794667 75.76,294.656 C75.968,294.517333 76.2266667,294.448 76.536,294.448 C76.8453333,294.448 77.1066667,294.517333 77.32,294.656 C77.5333333,294.794667 77.7093333,294.976 77.848,295.2 C77.9866667,295.424 78.0906667,295.677333 78.16,295.96 C78.2293333,296.242667 78.2826667,296.528 78.32,296.816 C78.3573333,297.104 78.3786667,297.384 78.384,297.656 C78.3893333,297.928 78.392,298.16 78.392,298.352 C78.392,298.672 78.3813333,299.058667 78.36,299.512 C78.3386667,299.965333 78.272,300.402667 78.16,300.824 C78.048,301.245333 77.8666667,301.605333 77.616,301.904 C77.3653333,302.202667 77.0053333,302.352 76.536,302.352 Z" id="0" fill="#FFFFFF" fill-rule="nonzero"></path>
</g>
<g id="2015" transform="translate(125.000000, 203.000000)">
<path d="M22.768,116 L22.768,114.048 L17.472,114.048 C17.7493333,113.664 18.0693333,113.328 18.432,113.04 C18.7946667,112.752 19.168,112.482667 19.552,112.232 C19.936,111.981333 20.3173333,111.728 20.696,111.472 C21.0746667,111.216 21.4133333,110.930667 21.712,110.616 C22.0106667,110.301333 22.2506667,109.941333 22.432,109.536 C22.6133333,109.130667 22.704,108.645333 22.704,108.08 C22.704,107.536 22.6,107.045333 22.392,106.608 C22.184,106.170667 21.904,105.802667 21.552,105.504 C21.2,105.205333 20.792,104.976 20.328,104.816 C19.864,104.656 19.376,104.576 18.864,104.576 C18.192,104.576 17.5973333,104.690667 17.08,104.92 C16.5626667,105.149333 16.1333333,105.469333 15.792,105.88 C15.4506667,106.290667 15.1946667,106.770667 15.024,107.32 C14.8533333,107.869333 14.7786667,108.464 14.8,109.104 L16.976,109.104 C16.976,108.805333 17.0053333,108.504 17.064,108.2 C17.1226667,107.896 17.2213333,107.618667 17.36,107.368 C17.4986667,107.117333 17.6826667,106.914667 17.912,106.76 C18.1413333,106.605333 18.4213333,106.528 18.752,106.528 C19.2426667,106.528 19.6453333,106.68 19.96,106.984 C20.2746667,107.288 20.432,107.712 20.432,108.256 C20.432,108.597333 20.3546667,108.901333 20.2,109.168 C20.0453333,109.434667 19.8533333,109.674667 19.624,109.888 C19.3946667,110.101333 19.1413333,110.296 18.864,110.472 C18.5866667,110.648 18.3253333,110.821333 18.08,110.992 C17.6,111.322667 17.144,111.648 16.712,111.968 C16.28,112.288 15.904,112.637333 15.584,113.016 C15.264,113.394667 15.0106667,113.824 14.824,114.304 C14.6373333,114.784 14.544,115.349333 14.544,116 L22.768,116 Z M27.536,116.208 C28.1013333,116.208 28.632,116.112 29.128,115.92 C29.624,115.728 30.0613333,115.408 30.44,114.96 C30.8186667,114.512 31.1173333,113.912 31.336,113.16 C31.5546667,112.408 31.664,111.472 31.664,110.352 C31.664,109.264 31.5546667,108.349333 31.336,107.608 C31.1173333,106.866667 30.8186667,106.272 30.44,105.824 C30.0613333,105.376 29.624,105.056 29.128,104.864 C28.632,104.672 28.1013333,104.576 27.536,104.576 C26.9813333,104.576 26.456,104.672 25.96,104.864 C25.464,105.056 25.0293333,105.376 24.656,105.824 C24.2826667,106.272 23.9866667,106.866667 23.768,107.608 C23.5493333,108.349333 23.44,109.264 23.44,110.352 C23.44,111.472 23.5493333,112.408 23.768,113.16 C23.9866667,113.912 24.2826667,114.512 24.656,114.96 C25.0293333,115.408 25.464,115.728 25.96,115.92 C26.456,116.112 26.9813333,116.208 27.536,116.208 Z M27.536,114.352 C27.0773333,114.352 26.7253333,114.202667 26.48,113.904 C26.2346667,113.605333 26.056,113.245333 25.944,112.824 C25.832,112.402667 25.7653333,111.965333 25.744,111.512 C25.7226667,111.058667 25.712,110.672 25.712,110.352 C25.712,110.16 25.7146667,109.928 25.72,109.656 C25.7253333,109.384 25.744,109.104 25.776,108.816 C25.808,108.528 25.8613333,108.242667 25.936,107.96 C26.0106667,107.677333 26.1146667,107.424 26.248,107.2 C26.3813333,106.976 26.552,106.794667 26.76,106.656 C26.968,106.517333 27.2266667,106.448 27.536,106.448 C27.8453333,106.448 28.1066667,106.517333 28.32,106.656 C28.5333333,106.794667 28.7093333,106.976 28.848,107.2 C28.9866667,107.424 29.0906667,107.677333 29.16,107.96 C29.2293333,108.242667 29.2826667,108.528 29.32,108.816 C29.3573333,109.104 29.3786667,109.384 29.384,109.656 C29.3893333,109.928 29.392,110.16 29.392,110.352 C29.392,110.672 29.3813333,111.058667 29.36,111.512 C29.3386667,111.965333 29.272,112.402667 29.16,112.824 C29.048,113.245333 28.8666667,113.605333 28.616,113.904 C28.3653333,114.202667 28.0053333,114.352 27.536,114.352 Z M38.272,116 L38.272,104.8 L36.464,104.8 C36.4,105.226667 36.2666667,105.584 36.064,105.872 C35.8613333,106.16 35.6133333,106.392 35.32,106.568 C35.0266667,106.744 34.696,106.866667 34.328,106.936 C33.96,107.005333 33.5786667,107.034667 33.184,107.024 L33.184,108.736 L36,108.736 L36,116 L38.272,116 Z M45.344,116.208 C45.9093333,116.218667 46.4426667,116.125333 46.944,115.928 C47.4453333,115.730667 47.8853333,115.450667 48.264,115.088 C48.6426667,114.725333 48.944,114.296 49.168,113.8 C49.392,113.304 49.504,112.768 49.504,112.192 C49.504,111.669333 49.4266667,111.176 49.272,110.712 C49.1173333,110.248 48.8933333,109.845333 48.6,109.504 C48.3066667,109.162667 47.9466667,108.890667 47.52,108.688 C47.0933333,108.485333 46.6026667,108.384 46.048,108.384 C45.6,108.384 45.2,108.450667 44.848,108.584 C44.496,108.717333 44.1653333,108.938667 43.856,109.248 L43.824,109.216 L44.272,106.672 L48.896,106.672 L48.896,104.8 L42.64,104.8 L41.536,110.992 L43.584,110.992 C43.808,110.682667 44.048,110.456 44.304,110.312 C44.56,110.168 44.8906667,110.096 45.296,110.096 C45.6053333,110.096 45.8773333,110.149333 46.112,110.256 C46.3466667,110.362667 46.5493333,110.512 46.72,110.704 C46.8906667,110.896 47.0186667,111.12 47.104,111.376 C47.1893333,111.632 47.232,111.904 47.232,112.192 C47.232,112.469333 47.1866667,112.738667 47.096,113 C47.0053333,113.261333 46.8773333,113.490667 46.712,113.688 C46.5466667,113.885333 46.344,114.045333 46.104,114.168 C45.864,114.290667 45.5946667,114.352 45.296,114.352 C44.784,114.352 44.3626667,114.2 44.032,113.896 C43.7013333,113.592 43.5093333,113.184 43.456,112.672 L41.184,112.672 C41.1946667,113.258667 41.3146667,113.773333 41.544,114.216 C41.7733333,114.658667 42.08,115.029333 42.464,115.328 C42.848,115.626667 43.288,115.848 43.784,115.992 C44.28,116.136 44.8,116.208 45.344,116.208 Z" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,95 L64,95 L0,95 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 Z" id="Rectangle" fill="#FFBF00"></path>
</g>
<g id="2016" transform="translate(219.000000, 145.000000)">
<path d="M22.768,174 L22.768,172.048 L17.472,172.048 C17.7493333,171.664 18.0693333,171.328 18.432,171.04 C18.7946667,170.752 19.168,170.482667 19.552,170.232 C19.936,169.981333 20.3173333,169.728 20.696,169.472 C21.0746667,169.216 21.4133333,168.930667 21.712,168.616 C22.0106667,168.301333 22.2506667,167.941333 22.432,167.536 C22.6133333,167.130667 22.704,166.645333 22.704,166.08 C22.704,165.536 22.6,165.045333 22.392,164.608 C22.184,164.170667 21.904,163.802667 21.552,163.504 C21.2,163.205333 20.792,162.976 20.328,162.816 C19.864,162.656 19.376,162.576 18.864,162.576 C18.192,162.576 17.5973333,162.690667 17.08,162.92 C16.5626667,163.149333 16.1333333,163.469333 15.792,163.88 C15.4506667,164.290667 15.1946667,164.770667 15.024,165.32 C14.8533333,165.869333 14.7786667,166.464 14.8,167.104 L16.976,167.104 C16.976,166.805333 17.0053333,166.504 17.064,166.2 C17.1226667,165.896 17.2213333,165.618667 17.36,165.368 C17.4986667,165.117333 17.6826667,164.914667 17.912,164.76 C18.1413333,164.605333 18.4213333,164.528 18.752,164.528 C19.2426667,164.528 19.6453333,164.68 19.96,164.984 C20.2746667,165.288 20.432,165.712 20.432,166.256 C20.432,166.597333 20.3546667,166.901333 20.2,167.168 C20.0453333,167.434667 19.8533333,167.674667 19.624,167.888 C19.3946667,168.101333 19.1413333,168.296 18.864,168.472 C18.5866667,168.648 18.3253333,168.821333 18.08,168.992 C17.6,169.322667 17.144,169.648 16.712,169.968 C16.28,170.288 15.904,170.637333 15.584,171.016 C15.264,171.394667 15.0106667,171.824 14.824,172.304 C14.6373333,172.784 14.544,173.349333 14.544,174 L22.768,174 Z M27.536,174.208 C28.1013333,174.208 28.632,174.112 29.128,173.92 C29.624,173.728 30.0613333,173.408 30.44,172.96 C30.8186667,172.512 31.1173333,171.912 31.336,171.16 C31.5546667,170.408 31.664,169.472 31.664,168.352 C31.664,167.264 31.5546667,166.349333 31.336,165.608 C31.1173333,164.866667 30.8186667,164.272 30.44,163.824 C30.0613333,163.376 29.624,163.056 29.128,162.864 C28.632,162.672 28.1013333,162.576 27.536,162.576 C26.9813333,162.576 26.456,162.672 25.96,162.864 C25.464,163.056 25.0293333,163.376 24.656,163.824 C24.2826667,164.272 23.9866667,164.866667 23.768,165.608 C23.5493333,166.349333 23.44,167.264 23.44,168.352 C23.44,169.472 23.5493333,170.408 23.768,171.16 C23.9866667,171.912 24.2826667,172.512 24.656,172.96 C25.0293333,173.408 25.464,173.728 25.96,173.92 C26.456,174.112 26.9813333,174.208 27.536,174.208 Z M27.536,172.352 C27.0773333,172.352 26.7253333,172.202667 26.48,171.904 C26.2346667,171.605333 26.056,171.245333 25.944,170.824 C25.832,170.402667 25.7653333,169.965333 25.744,169.512 C25.7226667,169.058667 25.712,168.672 25.712,168.352 C25.712,168.16 25.7146667,167.928 25.72,167.656 C25.7253333,167.384 25.744,167.104 25.776,166.816 C25.808,166.528 25.8613333,166.242667 25.936,165.96 C26.0106667,165.677333 26.1146667,165.424 26.248,165.2 C26.3813333,164.976 26.552,164.794667 26.76,164.656 C26.968,164.517333 27.2266667,164.448 27.536,164.448 C27.8453333,164.448 28.1066667,164.517333 28.32,164.656 C28.5333333,164.794667 28.7093333,164.976 28.848,165.2 C28.9866667,165.424 29.0906667,165.677333 29.16,165.96 C29.2293333,166.242667 29.2826667,166.528 29.32,166.816 C29.3573333,167.104 29.3786667,167.384 29.384,167.656 C29.3893333,167.928 29.392,168.16 29.392,168.352 C29.392,168.672 29.3813333,169.058667 29.36,169.512 C29.3386667,169.965333 29.272,170.402667 29.16,170.824 C29.048,171.245333 28.8666667,171.605333 28.616,171.904 C28.3653333,172.202667 28.0053333,172.352 27.536,172.352 Z M38.272,174 L38.272,162.8 L36.464,162.8 C36.4,163.226667 36.2666667,163.584 36.064,163.872 C35.8613333,164.16 35.6133333,164.392 35.32,164.568 C35.0266667,164.744 34.696,164.866667 34.328,164.936 C33.96,165.005333 33.5786667,165.034667 33.184,165.024 L33.184,166.736 L36,166.736 L36,174 L38.272,174 Z M45.536,174.208 C46.1226667,174.208 46.656,174.104 47.136,173.896 C47.616,173.688 48.0293333,173.4 48.376,173.032 C48.7226667,172.664 48.9893333,172.232 49.176,171.736 C49.3626667,171.24 49.456,170.704 49.456,170.128 C49.456,169.68 49.3866667,169.237333 49.248,168.8 C49.1093333,168.362667 48.8906667,167.973333 48.592,167.632 C48.272,167.28 47.8826667,167 47.424,166.792 C46.9653333,166.584 46.496,166.48 46.016,166.48 C45.472,166.48 44.992,166.576 44.576,166.768 C44.16,166.96 43.7973333,167.28 43.488,167.728 L43.456,167.696 C43.4666667,167.386667 43.5093333,167.034667 43.584,166.64 C43.6586667,166.245333 43.776,165.874667 43.936,165.528 C44.096,165.181333 44.312,164.888 44.584,164.648 C44.856,164.408 45.1946667,164.288 45.6,164.288 C45.9946667,164.288 46.3253333,164.426667 46.592,164.704 C46.8586667,164.981333 47.0293333,165.306667 47.104,165.68 L49.264,165.68 C49.2,165.178667 49.0666667,164.736 48.864,164.352 C48.6613333,163.968 48.4,163.645333 48.08,163.384 C47.76,163.122667 47.392,162.922667 46.976,162.784 C46.56,162.645333 46.112,162.576 45.632,162.576 C44.832,162.576 44.1546667,162.752 43.6,163.104 C43.0453333,163.456 42.592,163.912 42.24,164.472 C41.888,165.032 41.632,165.658667 41.472,166.352 C41.312,167.045333 41.232,167.738667 41.232,168.432 C41.232,169.146667 41.296,169.848 41.424,170.536 C41.552,171.224 41.7813333,171.84 42.112,172.384 C42.4426667,172.928 42.8853333,173.368 43.44,173.704 C43.9946667,174.04 44.6933333,174.208 45.536,174.208 Z M45.472,172.352 C45.184,172.352 44.928,172.293333 44.704,172.176 C44.48,172.058667 44.2906667,171.901333 44.136,171.704 C43.9813333,171.506667 43.864,171.282667 43.784,171.032 C43.704,170.781333 43.664,170.528 43.664,170.272 C43.664,169.994667 43.7013333,169.730667 43.776,169.48 C43.8506667,169.229333 43.9626667,169.008 44.112,168.816 C44.2613333,168.624 44.4506667,168.472 44.68,168.36 C44.9093333,168.248 45.1733333,168.192 45.472,168.192 C45.76,168.192 46.0133333,168.253333 46.232,168.376 C46.4506667,168.498667 46.6293333,168.658667 46.768,168.856 C46.9066667,169.053333 47.0106667,169.277333 47.08,169.528 C47.1493333,169.778667 47.184,170.037333 47.184,170.304 C47.184,170.56 47.1466667,170.810667 47.072,171.056 C46.9973333,171.301333 46.8853333,171.52 46.736,171.712 C46.5866667,171.904 46.408,172.058667 46.2,172.176 C45.992,172.293333 45.7493333,172.352 45.472,172.352 Z" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,153 L64,153 L0,153 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 Z" id="Rectangle" fill="#FFBF00"></path>
</g>
<g id="2016-copy" transform="translate(313.000000, 98.000000)">
<path d="M22.768,221 L22.768,219.048 L17.472,219.048 C17.7493333,218.664 18.0693333,218.328 18.432,218.04 C18.7946667,217.752 19.168,217.482667 19.552,217.232 C19.936,216.981333 20.3173333,216.728 20.696,216.472 C21.0746667,216.216 21.4133333,215.930667 21.712,215.616 C22.0106667,215.301333 22.2506667,214.941333 22.432,214.536 C22.6133333,214.130667 22.704,213.645333 22.704,213.08 C22.704,212.536 22.6,212.045333 22.392,211.608 C22.184,211.170667 21.904,210.802667 21.552,210.504 C21.2,210.205333 20.792,209.976 20.328,209.816 C19.864,209.656 19.376,209.576 18.864,209.576 C18.192,209.576 17.5973333,209.690667 17.08,209.92 C16.5626667,210.149333 16.1333333,210.469333 15.792,210.88 C15.4506667,211.290667 15.1946667,211.770667 15.024,212.32 C14.8533333,212.869333 14.7786667,213.464 14.8,214.104 L16.976,214.104 C16.976,213.805333 17.0053333,213.504 17.064,213.2 C17.1226667,212.896 17.2213333,212.618667 17.36,212.368 C17.4986667,212.117333 17.6826667,211.914667 17.912,211.76 C18.1413333,211.605333 18.4213333,211.528 18.752,211.528 C19.2426667,211.528 19.6453333,211.68 19.96,211.984 C20.2746667,212.288 20.432,212.712 20.432,213.256 C20.432,213.597333 20.3546667,213.901333 20.2,214.168 C20.0453333,214.434667 19.8533333,214.674667 19.624,214.888 C19.3946667,215.101333 19.1413333,215.296 18.864,215.472 C18.5866667,215.648 18.3253333,215.821333 18.08,215.992 C17.6,216.322667 17.144,216.648 16.712,216.968 C16.28,217.288 15.904,217.637333 15.584,218.016 C15.264,218.394667 15.0106667,218.824 14.824,219.304 C14.6373333,219.784 14.544,220.349333 14.544,221 L22.768,221 Z M27.536,221.208 C28.1013333,221.208 28.632,221.112 29.128,220.92 C29.624,220.728 30.0613333,220.408 30.44,219.96 C30.8186667,219.512 31.1173333,218.912 31.336,218.16 C31.5546667,217.408 31.664,216.472 31.664,215.352 C31.664,214.264 31.5546667,213.349333 31.336,212.608 C31.1173333,211.866667 30.8186667,211.272 30.44,210.824 C30.0613333,210.376 29.624,210.056 29.128,209.864 C28.632,209.672 28.1013333,209.576 27.536,209.576 C26.9813333,209.576 26.456,209.672 25.96,209.864 C25.464,210.056 25.0293333,210.376 24.656,210.824 C24.2826667,211.272 23.9866667,211.866667 23.768,212.608 C23.5493333,213.349333 23.44,214.264 23.44,215.352 C23.44,216.472 23.5493333,217.408 23.768,218.16 C23.9866667,218.912 24.2826667,219.512 24.656,219.96 C25.0293333,220.408 25.464,220.728 25.96,220.92 C26.456,221.112 26.9813333,221.208 27.536,221.208 Z M27.536,219.352 C27.0773333,219.352 26.7253333,219.202667 26.48,218.904 C26.2346667,218.605333 26.056,218.245333 25.944,217.824 C25.832,217.402667 25.7653333,216.965333 25.744,216.512 C25.7226667,216.058667 25.712,215.672 25.712,215.352 C25.712,215.16 25.7146667,214.928 25.72,214.656 C25.7253333,214.384 25.744,214.104 25.776,213.816 C25.808,213.528 25.8613333,213.242667 25.936,212.96 C26.0106667,212.677333 26.1146667,212.424 26.248,212.2 C26.3813333,211.976 26.552,211.794667 26.76,211.656 C26.968,211.517333 27.2266667,211.448 27.536,211.448 C27.8453333,211.448 28.1066667,211.517333 28.32,211.656 C28.5333333,211.794667 28.7093333,211.976 28.848,212.2 C28.9866667,212.424 29.0906667,212.677333 29.16,212.96 C29.2293333,213.242667 29.2826667,213.528 29.32,213.816 C29.3573333,214.104 29.3786667,214.384 29.384,214.656 C29.3893333,214.928 29.392,215.16 29.392,215.352 C29.392,215.672 29.3813333,216.058667 29.36,216.512 C29.3386667,216.965333 29.272,217.402667 29.16,217.824 C29.048,218.245333 28.8666667,218.605333 28.616,218.904 C28.3653333,219.202667 28.0053333,219.352 27.536,219.352 Z M38.272,221 L38.272,209.8 L36.464,209.8 C36.4,210.226667 36.2666667,210.584 36.064,210.872 C35.8613333,211.16 35.6133333,211.392 35.32,211.568 C35.0266667,211.744 34.696,211.866667 34.328,211.936 C33.96,212.005333 33.5786667,212.034667 33.184,212.024 L33.184,213.736 L36,213.736 L36,221 L38.272,221 Z M45.504,221 C45.5146667,220.253333 45.6026667,219.448 45.768,218.584 C45.9333333,217.72 46.168,216.866667 46.472,216.024 C46.776,215.181333 47.1546667,214.386667 47.608,213.64 C48.0613333,212.893333 48.5813333,212.264 49.168,211.752 L49.168,209.8 L41.52,209.8 L41.52,211.912 L46.832,211.912 C45.7653333,213.202667 44.904,214.621333 44.248,216.168 C43.592,217.714667 43.2,219.325333 43.072,221 L45.504,221 Z" id="2017" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,200 L64,200 L0,200 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 Z" id="Rectangle" fill="#FFBF00"></path>
</g>
<g id="2016-copy-2" transform="translate(407.000000, 61.000000)">
<path d="M22.768,258 L22.768,256.048 L17.472,256.048 C17.7493333,255.664 18.0693333,255.328 18.432,255.04 C18.7946667,254.752 19.168,254.482667 19.552,254.232 C19.936,253.981333 20.3173333,253.728 20.696,253.472 C21.0746667,253.216 21.4133333,252.930667 21.712,252.616 C22.0106667,252.301333 22.2506667,251.941333 22.432,251.536 C22.6133333,251.130667 22.704,250.645333 22.704,250.08 C22.704,249.536 22.6,249.045333 22.392,248.608 C22.184,248.170667 21.904,247.802667 21.552,247.504 C21.2,247.205333 20.792,246.976 20.328,246.816 C19.864,246.656 19.376,246.576 18.864,246.576 C18.192,246.576 17.5973333,246.690667 17.08,246.92 C16.5626667,247.149333 16.1333333,247.469333 15.792,247.88 C15.4506667,248.290667 15.1946667,248.770667 15.024,249.32 C14.8533333,249.869333 14.7786667,250.464 14.8,251.104 L16.976,251.104 C16.976,250.805333 17.0053333,250.504 17.064,250.2 C17.1226667,249.896 17.2213333,249.618667 17.36,249.368 C17.4986667,249.117333 17.6826667,248.914667 17.912,248.76 C18.1413333,248.605333 18.4213333,248.528 18.752,248.528 C19.2426667,248.528 19.6453333,248.68 19.96,248.984 C20.2746667,249.288 20.432,249.712 20.432,250.256 C20.432,250.597333 20.3546667,250.901333 20.2,251.168 C20.0453333,251.434667 19.8533333,251.674667 19.624,251.888 C19.3946667,252.101333 19.1413333,252.296 18.864,252.472 C18.5866667,252.648 18.3253333,252.821333 18.08,252.992 C17.6,253.322667 17.144,253.648 16.712,253.968 C16.28,254.288 15.904,254.637333 15.584,255.016 C15.264,255.394667 15.0106667,255.824 14.824,256.304 C14.6373333,256.784 14.544,257.349333 14.544,258 L22.768,258 Z M27.536,258.208 C28.1013333,258.208 28.632,258.112 29.128,257.92 C29.624,257.728 30.0613333,257.408 30.44,256.96 C30.8186667,256.512 31.1173333,255.912 31.336,255.16 C31.5546667,254.408 31.664,253.472 31.664,252.352 C31.664,251.264 31.5546667,250.349333 31.336,249.608 C31.1173333,248.866667 30.8186667,248.272 30.44,247.824 C30.0613333,247.376 29.624,247.056 29.128,246.864 C28.632,246.672 28.1013333,246.576 27.536,246.576 C26.9813333,246.576 26.456,246.672 25.96,246.864 C25.464,247.056 25.0293333,247.376 24.656,247.824 C24.2826667,248.272 23.9866667,248.866667 23.768,249.608 C23.5493333,250.349333 23.44,251.264 23.44,252.352 C23.44,253.472 23.5493333,254.408 23.768,255.16 C23.9866667,255.912 24.2826667,256.512 24.656,256.96 C25.0293333,257.408 25.464,257.728 25.96,257.92 C26.456,258.112 26.9813333,258.208 27.536,258.208 Z M27.536,256.352 C27.0773333,256.352 26.7253333,256.202667 26.48,255.904 C26.2346667,255.605333 26.056,255.245333 25.944,254.824 C25.832,254.402667 25.7653333,253.965333 25.744,253.512 C25.7226667,253.058667 25.712,252.672 25.712,252.352 C25.712,252.16 25.7146667,251.928 25.72,251.656 C25.7253333,251.384 25.744,251.104 25.776,250.816 C25.808,250.528 25.8613333,250.242667 25.936,249.96 C26.0106667,249.677333 26.1146667,249.424 26.248,249.2 C26.3813333,248.976 26.552,248.794667 26.76,248.656 C26.968,248.517333 27.2266667,248.448 27.536,248.448 C27.8453333,248.448 28.1066667,248.517333 28.32,248.656 C28.5333333,248.794667 28.7093333,248.976 28.848,249.2 C28.9866667,249.424 29.0906667,249.677333 29.16,249.96 C29.2293333,250.242667 29.2826667,250.528 29.32,250.816 C29.3573333,251.104 29.3786667,251.384 29.384,251.656 C29.3893333,251.928 29.392,252.16 29.392,252.352 C29.392,252.672 29.3813333,253.058667 29.36,253.512 C29.3386667,253.965333 29.272,254.402667 29.16,254.824 C29.048,255.245333 28.8666667,255.605333 28.616,255.904 C28.3653333,256.202667 28.0053333,256.352 27.536,256.352 Z M38.272,258 L38.272,246.8 L36.464,246.8 C36.4,247.226667 36.2666667,247.584 36.064,247.872 C35.8613333,248.16 35.6133333,248.392 35.32,248.568 C35.0266667,248.744 34.696,248.866667 34.328,248.936 C33.96,249.005333 33.5786667,249.034667 33.184,249.024 L33.184,250.736 L36,250.736 L36,258 L38.272,258 Z M45.376,258.208 C45.8986667,258.208 46.4106667,258.136 46.912,257.992 C47.4133333,257.848 47.8613333,257.632 48.256,257.344 C48.6506667,257.056 48.968,256.693333 49.208,256.256 C49.448,255.818667 49.568,255.301333 49.568,254.704 C49.568,254 49.3866667,253.405333 49.024,252.92 C48.6613333,252.434667 48.144,252.117333 47.472,251.968 L47.472,251.936 C48.016,251.754667 48.424,251.456 48.696,251.04 C48.968,250.624 49.104,250.138667 49.104,249.584 C49.104,249.306667 49.04,248.994667 48.912,248.648 C48.784,248.301333 48.5733333,247.976 48.28,247.672 C47.9866667,247.368 47.6,247.109333 47.12,246.896 C46.64,246.682667 46.0533333,246.576 45.36,246.576 C44.9013333,246.576 44.448,246.64 44,246.768 C43.552,246.896 43.1493333,247.088 42.792,247.344 C42.4346667,247.6 42.144,247.92 41.92,248.304 C41.696,248.688 41.584,249.130667 41.584,249.632 C41.584,250.186667 41.7226667,250.672 42,251.088 C42.2773333,251.504 42.688,251.786667 43.232,251.936 L43.232,251.968 C42.56,252.128 42.04,252.448 41.672,252.928 C41.304,253.408 41.12,254.005333 41.12,254.72 C41.12,255.328 41.24,255.850667 41.48,256.288 C41.72,256.725333 42.04,257.088 42.44,257.376 C42.84,257.664 43.2933333,257.874667 43.8,258.008 C44.3066667,258.141333 44.832,258.208 45.376,258.208 Z M45.36,251.312 C44.9013333,251.312 44.5013333,251.186667 44.16,250.936 C43.8186667,250.685333 43.648,250.32 43.648,249.84 C43.648,249.584 43.6933333,249.36 43.784,249.168 C43.8746667,248.976 44,248.816 44.16,248.688 C44.32,248.56 44.504,248.461333 44.712,248.392 C44.92,248.322667 45.136,248.288 45.36,248.288 C45.712,248.288 45.9973333,248.341333 46.216,248.448 C46.4346667,248.554667 46.6053333,248.688 46.728,248.848 C46.8506667,249.008 46.9333333,249.176 46.976,249.352 C47.0186667,249.528 47.04,249.690667 47.04,249.84 C47.04,250.32 46.88,250.685333 46.56,250.936 C46.24,251.186667 45.84,251.312 45.36,251.312 Z M45.376,256.512 C45.1093333,256.512 44.8533333,256.466667 44.608,256.376 C44.3626667,256.285333 44.152,256.157333 43.976,255.992 C43.8,255.826667 43.6586667,255.626667 43.552,255.392 C43.4453333,255.157333 43.392,254.896 43.392,254.608 C43.392,254.032 43.584,253.592 43.968,253.288 C44.352,252.984 44.8213333,252.832 45.376,252.832 C45.6426667,252.832 45.8906667,252.874667 46.12,252.96 C46.3493333,253.045333 46.552,253.168 46.728,253.328 C46.904,253.488 47.0426667,253.677333 47.144,253.896 C47.2453333,254.114667 47.296,254.357333 47.296,254.624 C47.296,254.901333 47.248,255.157333 47.152,255.392 C47.056,255.626667 46.92,255.826667 46.744,255.992 C46.568,256.157333 46.3653333,256.285333 46.136,256.376 C45.9066667,256.466667 45.6533333,256.512 45.376,256.512 Z" id="2018" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M4,0 L60,0 C62.209139,2.6302285e-15 64,1.790861 64,4 L64,237 L64,237 L0,237 L0,4 C-7.1463071e-16,1.790861 1.790861,-3.82769592e-17 4,0 Z" id="Rectangle" fill="#FFBF00"></path>
</g>
<g id="2016-copy-3" transform="translate(501.000000, 12.000000)">
<path d="M22.768,307 L22.768,305.048 L17.472,305.048 C17.7493333,304.664 18.0693333,304.328 18.432,304.04 C18.7946667,303.752 19.168,303.482667 19.552,303.232 C19.936,302.981333 20.3173333,302.728 20.696,302.472 C21.0746667,302.216 21.4133333,301.930667 21.712,301.616 C22.0106667,301.301333 22.2506667,300.941333 22.432,300.536 C22.6133333,300.130667 22.704,299.645333 22.704,299.08 C22.704,298.536 22.6,298.045333 22.392,297.608 C22.184,297.170667 21.904,296.802667 21.552,296.504 C21.2,296.205333 20.792,295.976 20.328,295.816 C19.864,295.656 19.376,295.576 18.864,295.576 C18.192,295.576 17.5973333,295.690667 17.08,295.92 C16.5626667,296.149333 16.1333333,296.469333 15.792,296.88 C15.4506667,297.290667 15.1946667,297.770667 15.024,298.32 C14.8533333,298.869333 14.7786667,299.464 14.8,300.104 L16.976,300.104 C16.976,299.805333 17.0053333,299.504 17.064,299.2 C17.1226667,298.896 17.2213333,298.618667 17.36,298.368 C17.4986667,298.117333 17.6826667,297.914667 17.912,297.76 C18.1413333,297.605333 18.4213333,297.528 18.752,297.528 C19.2426667,297.528 19.6453333,297.68 19.96,297.984 C20.2746667,298.288 20.432,298.712 20.432,299.256 C20.432,299.597333 20.3546667,299.901333 20.2,300.168 C20.0453333,300.434667 19.8533333,300.674667 19.624,300.888 C19.3946667,301.101333 19.1413333,301.296 18.864,301.472 C18.5866667,301.648 18.3253333,301.821333 18.08,301.992 C17.6,302.322667 17.144,302.648 16.712,302.968 C16.28,303.288 15.904,303.637333 15.584,304.016 C15.264,304.394667 15.0106667,304.824 14.824,305.304 C14.6373333,305.784 14.544,306.349333 14.544,307 L22.768,307 Z M27.536,307.208 C28.1013333,307.208 28.632,307.112 29.128,306.92 C29.624,306.728 30.0613333,306.408 30.44,305.96 C30.8186667,305.512 31.1173333,304.912 31.336,304.16 C31.5546667,303.408 31.664,302.472 31.664,301.352 C31.664,300.264 31.5546667,299.349333 31.336,298.608 C31.1173333,297.866667 30.8186667,297.272 30.44,296.824 C30.0613333,296.376 29.624,296.056 29.128,295.864 C28.632,295.672 28.1013333,295.576 27.536,295.576 C26.9813333,295.576 26.456,295.672 25.96,295.864 C25.464,296.056 25.0293333,296.376 24.656,296.824 C24.2826667,297.272 23.9866667,297.866667 23.768,298.608 C23.5493333,299.349333 23.44,300.264 23.44,301.352 C23.44,302.472 23.5493333,303.408 23.768,304.16 C23.9866667,304.912 24.2826667,305.512 24.656,305.96 C25.0293333,306.408 25.464,306.728 25.96,306.92 C26.456,307.112 26.9813333,307.208 27.536,307.208 Z M27.536,305.352 C27.0773333,305.352 26.7253333,305.202667 26.48,304.904 C26.2346667,304.605333 26.056,304.245333 25.944,303.824 C25.832,303.402667 25.7653333,302.965333 25.744,302.512 C25.7226667,302.058667 25.712,301.672 25.712,301.352 C25.712,301.16 25.7146667,300.928 25.72,300.656 C25.7253333,300.384 25.744,300.104 25.776,299.816 C25.808,299.528 25.8613333,299.242667 25.936,298.96 C26.0106667,298.677333 26.1146667,298.424 26.248,298.2 C26.3813333,297.976 26.552,297.794667 26.76,297.656 C26.968,297.517333 27.2266667,297.448 27.536,297.448 C27.8453333,297.448 28.1066667,297.517333 28.32,297.656 C28.5333333,297.794667 28.7093333,297.976 28.848,298.2 C28.9866667,298.424 29.0906667,298.677333 29.16,298.96 C29.2293333,299.242667 29.2826667,299.528 29.32,299.816 C29.3573333,300.104 29.3786667,300.384 29.384,300.656 C29.3893333,300.928 29.392,301.16 29.392,301.352 C29.392,301.672 29.3813333,302.058667 29.36,302.512 C29.3386667,302.965333 29.272,303.402667 29.16,303.824 C29.048,304.245333 28.8666667,304.605333 28.616,304.904 C28.3653333,305.202667 28.0053333,305.352 27.536,305.352 Z M38.272,307 L38.272,295.8 L36.464,295.8 C36.4,296.226667 36.2666667,296.584 36.064,296.872 C35.8613333,297.16 35.6133333,297.392 35.32,297.568 C35.0266667,297.744 34.696,297.866667 34.328,297.936 C33.96,298.005333 33.5786667,298.034667 33.184,298.024 L33.184,299.736 L36,299.736 L36,307 L38.272,307 Z M45.056,307.208 C45.856,307.208 46.5333333,307.034667 47.088,306.688 C47.6426667,306.341333 48.096,305.888 48.448,305.328 C48.8,304.768 49.056,304.141333 49.216,303.448 C49.376,302.754667 49.456,302.061333 49.456,301.368 C49.456,300.664 49.392,299.965333 49.264,299.272 C49.136,298.578667 48.9066667,297.957333 48.576,297.408 C48.2453333,296.858667 47.8053333,296.416 47.256,296.08 C46.7066667,295.744 46.0053333,295.576 45.152,295.576 C44.5653333,295.576 44.032,295.682667 43.552,295.896 C43.072,296.109333 42.6586667,296.4 42.312,296.768 C41.9653333,297.136 41.6986667,297.568 41.512,298.064 C41.3253333,298.56 41.232,299.096 41.232,299.672 C41.232,300.12 41.3013333,300.562667 41.44,301 C41.5786667,301.437333 41.7973333,301.826667 42.096,302.168 C42.416,302.52 42.8053333,302.8 43.264,303.008 C43.7226667,303.216 44.192,303.32 44.672,303.32 C45.216,303.32 45.696,303.224 46.112,303.032 C46.528,302.84 46.8906667,302.52 47.2,302.072 L47.232,302.104 C47.2106667,302.413333 47.1653333,302.765333 47.096,303.16 C47.0266667,303.554667 46.912,303.925333 46.752,304.272 C46.592,304.618667 46.3786667,304.912 46.112,305.152 C45.8453333,305.392 45.504,305.512 45.088,305.512 C44.6933333,305.512 44.3626667,305.373333 44.096,305.096 C43.8293333,304.818667 43.6586667,304.493333 43.584,304.12 L41.424,304.12 C41.488,304.610667 41.6213333,305.048 41.824,305.432 C42.0266667,305.816 42.288,306.141333 42.608,306.408 C42.928,306.674667 43.296,306.874667 43.712,307.008 C44.128,307.141333 44.576,307.208 45.056,307.208 Z M45.216,301.608 C44.928,301.608 44.6746667,301.546667 44.456,301.424 C44.2373333,301.301333 44.0586667,301.141333 43.92,300.944 C43.7813333,300.746667 43.6773333,300.522667 43.608,300.272 C43.5386667,300.021333 43.504,299.762667 43.504,299.496 C43.504,299.24 43.5413333,298.989333 43.616,298.744 C43.6906667,298.498667 43.8026667,298.28 43.952,298.088 C44.1013333,297.896 44.2826667,297.741333 44.496,297.624 C44.7093333,297.506667 44.9493333,297.448 45.216,297.448 C45.504,297.448 45.76,297.506667 45.984,297.624 C46.208,297.741333 46.3973333,297.898667 46.552,298.096 C46.7066667,298.293333 46.824,298.517333 46.904,298.768 C46.984,299.018667 47.024,299.272 47.024,299.528 C47.024,299.805333 46.9866667,300.069333 46.912,300.32 C46.8373333,300.570667 46.7253333,300.792 46.576,300.984 C46.4266667,301.176 46.24,301.328 46.016,301.44 C45.792,301.552 45.5253333,301.608 45.216,301.608 Z" id="2019" fill="#FFFFFF" fill-rule="nonzero"></path>
<path d="M4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,286 L64,286 L0,286 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 Z" id="Rectangle" fill="#FFBF00"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="88px" height="88px" viewBox="0 0 88 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>ScratchJr Command</title>
<defs>
<filter id="filter-1">
<feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1.000000 0 0 0 0 0.749020 0 0 0 0 0.000000 0 0 0 1.000000 0"></feColorMatrix>
</filter>
</defs>
<g id="ScratchJr-Command" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="Horizontal/Block/Command" transform="translate(8.000000, 12.000000)" filter="url(#filter-1)">
<g transform="translate(36.000000, 32.000000) rotate(14.000000) translate(-36.000000, -32.000000) ">
<path d="M0,49.6568542 C0,48.5959883 0.421427361,47.5785726 1.17157288,46.8284271 L1.17157288,46.8284271 L6.82842712,41.1715729 C7.57857264,40.4214274 8,39.4040117 8,38.3431458 L8,38.3431458 L8,25.6568542 C8,24.5959883 7.57857264,23.5785726 6.82842712,22.8284271 L6.82842712,22.8284271 L1.17157288,17.1715729 C0.421427361,16.4214274 0,15.4040117 0,14.3431458 L0,14.3431458 L0,4 C-2.705415e-16,1.790861 1.790861,4.05812251e-16 4,0 L60,0 C62.209139,-4.05812251e-16 64,1.790861 64,4 L64,14.375 L64.0064166,14.5697275 C64.061881,15.5479932 64.4750092,16.4750092 65.1715729,17.1715729 L70.8284271,22.8284271 C71.5785726,23.5785726 72,24.5959883 72,25.6568542 L72,38.3431458 C72,39.4040117 71.5785726,40.4214274 70.8284271,41.1715729 L65.1715729,46.8284271 C64.4290142,47.5709858 64.0085581,48.5754358 64.0001292,49.6246797 L64,60 C64,62.209139 62.209139,64 60,64 L4,64 C1.790861,64 2.705415e-16,62.209139 0,60 Z" id="Command" stroke="#CC9900" fill="#FFBF00"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="320px" height="420px" viewBox="0 0 320 420" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Painting Hand</title>
<defs>
<polygon id="path-1" points="0 0.162265558 109.192927 0.162265558 109.192927 247.32828 0 247.32828"></polygon>
<path d="M25.6606465,6.29924 C23.2966465,-1.36396 17.4238465,-0.55396 10.2658465,1.13564 C-3.12615351,4.29764 -3.93735351,21.70964 12.7378465,18.14684 C21.0610465,16.37084 27.7354465,13.02524 25.6606465,6.29924" id="path-3"></path>
<path d="M15.9744,22.92132 C31.8096,19.20972 38.0856,15.61092 36.3972,7.40772 C34.4724,-1.93548 24.408,-0.64308 11.736,2.33772 C-4.1412,6.07092 -3.5988,27.50892 15.9744,22.92132" id="path-5"></path>
<path d="M16.2111818,24.53016 C32.4783818,20.51136 39.0195818,16.64616 37.6707818,7.88856 C36.1335818,-2.08824 25.8435818,-0.67344 12.8259818,2.55456 C-3.71721823,6.65496 -4.12641823,29.55456 16.2111818,24.53016" id="path-7"></path>
<path d="M10.7705007,18.73608 C22.3937007,16.06488 27.1301007,13.27008 26.4197007,6.53448 C25.6109007,-1.13832 18.2921007,-0.31032 8.98970067,1.83408 C-2.82669933,4.56048 -3.75309933,22.07328 10.7705007,18.73608" id="path-9"></path>
<path d="M48.48492,56.3670694 C36.04692,54.7386694 30.14772,40.4646694 30.14772,40.4646694 C26.93652,33.0462694 16.16052,29.7318694 11.16132,27.6882694 C-0.74868,22.8186694 -2.24628,1.02426945 4.98372,0.0426694498 C11.47332,-0.83933055 16.21812,12.1842694 28.01532,17.6214694 C40.49652,22.2234694 56.10732,9.31386945 68.80332,32.8338694 C80.72532,54.9234694 65.28372,72.5142694 59.91492,75.7530694 C56.28972,66.3606694 52.47972,59.8986694 48.48492,56.3670694" id="path-11"></path>
<polygon id="path-13" points="0.811686506 0.9168 21.2940554 0.9168 21.2940554 26.0709823 0.811686506 26.0709823"></polygon>
</defs>
<g id="Painting-Hand" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(163.000000, 195.000000) rotate(-19.000000) translate(-163.000000, -195.000000) translate(38.000000, -5.000000)">
<path d="M133.15872,357.51156 L109.17432,315.71916 C136.09632,311.28756 215.29263,286.395328 223.82343,281.217328 C231.30903,276.672928 250.491673,286.213557 249.772873,307.077957 C249.055273,327.941157 222.52632,341.98956 210.80832,345.19236 C192.45312,350.59116 164.88192,356.77596 133.15872,357.51156 Z" id="Fill-10" fill="#755135"></path>
<g id="Group-14" transform="translate(0.000000, 18.283200)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="Clip-13"></g>
<path d="M4.56768,247.32828 C-8.15352,204.06708 8.55888,135.80988 19.84848,91.64988 C29.83488,52.58988 37.15968,18.00948 50.94288,20.47428 C64.72848,22.93788 47.82408,46.83588 62.74248,49.00188 C77.66088,51.16548 75.15888,-4.84572 95.41248,0.52548 C115.24248,5.78508 87.24168,42.78588 101.89728,46.67148 C110.22288,48.87948 93.61608,83.44788 104.50848,86.73348 C117.90048,90.77268 99.83808,111.13428 84.68928,195.88908" id="Fill-12" fill="#0EBD8C" mask="url(#mask-2)"></path>
</g>
<path d="M31.64364,213.50292 C36.64428,209.06892 37.02588,199.19172 42.40668,197.18892 C48.87348,194.78052 45.18828,208.82772 53.93508,208.09212 C57.2535607,207.813013 60.6359415,205.88485 63.9636027,203.310249 C64.8288815,202.511799 65.7629726,201.723481 66.7974,200.97 C67.3161427,200.518279 67.730311,200.234427 68.0447884,200.094092 C78.288043,193.168089 88.9929865,192.350744 87.6162,198.9072 L85.3158,210.1572 L33.1026,241.8948 L4.5678,265.6116 C4.5678,265.6116 3.05591033,258.702755 1.98491973,251.776699 L1.87578043,251.060431 C1.41035273,247.958789 1.04705581,244.901442 0.9618,242.5092 C0.776772816,237.324903 3.86695145,233.648434 8.12503953,231.15498 L8.05404,231.20172 C15.45924,226.78812 9.50484,194.44692 21.88284,190.95252 C32.40324,187.98132 20.52924,221.37372 31.64364,213.50292 Z" id="Combined-Shape" fill="#0EA57A"></path>
<path d="M92.6634,274.5318 L27.6222,318.0522 C3.8802,278.0958 -2.1966,253.2402 9.3954,243.4866 C26.7858,228.8562 22.0002,244.3194 33.9054,229.4154 C45.8094,214.5126 49.311,229.3074 56.0298,221.0394 C62.7474,212.7714 90.4146,193.8186 84.6882,214.1718 C78.6906,235.4958 81.3486,255.615 92.6634,274.5318" id="Fill-17" fill="#FEFEFE"></path>
<path d="M106.60752,378.27792 C103.70832,379.94352 103.06032,384.25752 105.15912,387.91512 C107.25912,391.57272 111.31152,393.18792 114.21192,391.52352 C117.11112,389.85792 117.76032,385.54392 115.66032,381.88632 C113.56032,378.22872 109.50792,376.61352 106.60752,378.27792 L106.60752,378.27792 Z M62.21952,300.56352 L96.09312,281.11752 C96.64872,282.08592 98.25912,284.89032 100.92312,289.53072 C108.19392,302.19792 81.34152,313.87752 91.25352,331.14432 C101.16552,348.40872 109.93632,347.06472 119.09592,363.01992 C124.27272,372.03552 131.04432,390.04992 117.90912,397.60512 C104.76072,405.13872 92.62032,390.20592 87.44352,381.19032 C78.28392,365.23632 83.86872,358.33992 73.95672,341.07312 C64.04472,323.80632 40.19112,339.90432 32.92032,327.23952 C30.25632,322.59912 28.64592,319.79472 28.09032,318.82632 L62.21952,300.56352 Z" id="Fill-19" fill="#CF8B17"></path>
<polygon id="Fill-21" fill="#EC9C13" points="99.64548 286.5564 31.87068 325.4652 25.00188 313.5012 92.77788 274.5924"></polygon>
<path d="M84.69,214.17564 C81.726,224.72364 81.1608,232.92204 81.6036,237.97164 C68.808,236.45484 65.7816,247.48164 59.9076,252.69564 C49.92,261.55884 46.6632,258.02364 33.4608,264.36684 C21.786,269.97684 17.3268,290.65044 15.6108,296.12124 C0,265.61124 1.662,249.99564 9.402,243.49164 C26.79,228.85044 22.002,244.31844 33.906,229.41444 C45.81,214.51044 49.314,229.30644 56.034,221.03964 C62.754,212.77164 90.414,193.82364 84.69,214.17564" id="Fill-23" fill="#0EBD8C"></path>
<g id="Fill-27" transform="translate(75.027754, 370.518520)">
<mask id="mask-4" fill="white">
<use xlink:href="#path-3"></use>
</mask>
<use id="Mask" fill="#755135" xlink:href="#path-3"></use>
<path d="M1.29152649,5.6828 C7.05752649,4.3796 11.6391265,3.14 15.0351265,1.9628 C20.1315265,0.2 25.6527265,5.4524 21.2091265,10.712 C16.7667265,15.9716 8.83952649,20.0324 3.96392649,17.756 C0.714326486,16.2368 -0.537273514,16.8236 0.209126486,19.5164 L17.5983265,23.4464 L26.1459265,13.3268 L29.7879265,5.2052 L19.5663265,-3.4 L10.2051265,-0.3664 L0.134726486,4.7084 L1.29152649,5.6828 Z" fill-opacity="0.15" fill="#000000" mask="url(#mask-4)"></path>
</g>
<g id="Group-4" transform="translate(59.678040, 353.131200)">
<mask id="mask-6" fill="white">
<use xlink:href="#path-5"></use>
</mask>
<use id="Fill-29" fill="#755135" xlink:href="#path-5"></use>
<path d="M-0.5256,7.1268 C10.7076,6.2952 18.4788,5.4828 22.7844,4.692 C29.2428,3.5028 33.9984,9.8016 27.5328,16.3368 C21.0684,22.8696 8.9652,25.9788 3.426,21.3144 C-0.2676,18.204 -2.2092,19.9272 -2.4,26.4816 L22.29,31.5564 L34.7124,17.2128 L40.098,5.778 L25.7364,-6 L12.3228,-1.5396 L-2.1504,5.7936 L-0.5256,7.1268 Z" id="Fill-31" fill-opacity="0.15" fill="#000000" mask="url(#mask-6)"></path>
</g>
<g id="Group-3" transform="translate(51.120938, 333.702840)">
<mask id="mask-8" fill="white">
<use xlink:href="#path-7"></use>
</mask>
<use id="Fill-33" fill="#755135" xlink:href="#path-7"></use>
<path d="M0.158901768,10.1184 C8.65250177,9.4548 15.6449018,7.6548 21.1361018,4.7208 C29.3741018,0.3192 38.3993018,11.0016 30.9929018,16.554 C23.5853018,22.1076 8.21930177,27.162 2.19170177,21.4968 C-1.82589823,17.7216 -2.27469823,19.8576 0.847701768,27.9048 L25.7729018,31.6824 L37.4297018,16.71 L42.2081018,5.0112 L27.2465018,-6 L14.0837018,-0.8436 L0.0137017677,7.2348 L0.158901768,10.1184 Z" id="Fill-35" fill-opacity="0.15" fill="#000000" mask="url(#mask-8)"></path>
</g>
<g id="Group-2" transform="translate(46.662819, 323.075400)">
<mask id="mask-10" fill="white">
<use xlink:href="#path-9"></use>
</mask>
<use id="Fill-37" fill="#755135" xlink:href="#path-9"></use>
<path d="M15.6525807,0.5556 C21.9753807,0.1992 26.4381807,6.4524 21.9957807,11.712 C17.5533807,16.9728 8.75858067,20.4252 3.88178067,18.1476 C0.632180669,16.6296 -0.329019331,17.4192 0.994580669,20.5164 L18.3849807,24.4464 L26.9325807,14.328 L30.5757807,6.2052 L20.3529807,-2.4 C13.0041807,-0.192 11.4369807,0.7932 15.6525807,0.5556" id="Fill-39" fill-opacity="0.15" fill="#000000" mask="url(#mask-10)"></path>
</g>
<g id="Group" transform="translate(63.764040, 297.589731)">
<mask id="mask-12" fill="white">
<use xlink:href="#path-11"></use>
</mask>
<use id="Fill-41" fill="#755135" xlink:href="#path-11"></use>
<path d="M3.588,0.31866945 C0.7524,9.72546945 3.4176,16.6374694 11.5884,21.0546694 C23.8428,27.6822694 31.2144,26.2554694 36.1152,34.1970694 C41.0148,42.1398694 50.3556,48.6798694 53.7576,49.7082694 C57.1584,50.7378694 69.306,46.1082694 69.3,34.0446694 C69.2952,21.9822694 78.1152,57.3594694 69.312,67.7814694 C63.4428,74.7294694 59.2416,77.9766694 56.7084,77.5254694 L45.672,62.0166694 L28.6704,44.1090694 L20.3076,33.8658694 L-1.2732,22.4946694 L-2.4,7.40826945 L3.588,0.31866945 Z" id="Fill-43" fill-opacity="0.15" fill="#000000" mask="url(#mask-12)"></path>
</g>
<g id="Group-51" transform="translate(46.800000, 0.283200)">
<mask id="mask-14" fill="white">
<use xlink:href="#path-13"></use>
</mask>
<g id="Clip-50"></g>
<path d="M13.89468,1.30956 C1.81908,-2.54844 -3.86052,23.20476 5.44428,25.68396 C19.17228,29.34156 28.54308,5.98836 13.89468,1.30956" id="Fill-49" fill="#0EBD8C" mask="url(#mask-14)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="216px" height="216px" viewBox="0 0 216 216" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Vertical Loop Block</title>
<defs>
<filter id="filter-1">
<feColorMatrix in="SourceGraphic" type="matrix" values="0 0 0 0 1.000000 0 0 0 0 0.670588 0 0 0 0 0.098039 0 0 0 1.000000 0"></feColorMatrix>
</filter>
</defs>
<g id="Vertical-Loop-Block" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g id="Vertical/Block/Loop" transform="translate(27.000000, 40.000000)" filter="url(#filter-1)">
<g transform="translate(84.000000, 68.000000) rotate(-25.000000) translate(-84.000000, -68.000000) ">
<path d="M16,92 C16,94.209139 17.790861,96 20,96 L30.3431458,96 C31.4040117,96 32.4214274,96.4214274 33.1715729,97.1715729 L33.1715729,97.1715729 L38.8284271,102.828427 C39.5785726,103.578573 40.5959883,104 41.6568542,104 L41.6568542,104 L54.3431458,104 C55.4040117,104 56.4214274,103.578573 57.1715729,102.828427 L57.1715729,102.828427 L62.8284271,97.1715729 C63.5785726,96.4214274 64.5959883,96 65.6568542,96 L65.6568542,96 L164,96 C166.209139,96 168,97.790861 168,100 L168,124 C168,126.209139 166.209139,128 164,128 L49.6568542,128 C48.5959883,128 47.5785726,128.421427 46.8284271,129.171573 L41.1715729,134.828427 C40.4214274,135.578573 39.4040117,136 38.3431458,136 L25.6568542,136 C24.5959883,136 23.5785726,135.578573 22.8284271,134.828427 L17.1715729,129.171573 C16.4214274,128.421427 15.4040117,128 14.3431458,128 L4,128 C1.790861,128 3.22449646e-14,126.209139 3.19744231e-14,124 L3.19744231e-14,4 C3.17038816e-14,1.790861 1.790861,-1.84335299e-13 4,-1.84741111e-13 L14.3431458,-1.37667655e-14 C15.4040117,-1.37667655e-14 16.4214274,0.421427361 17.1715729,1.17157288 L17.1715729,1.17157288 L22.8284271,6.82842712 C23.5785726,7.57857264 24.5959883,8 25.6568542,8 L25.6568542,8 L38.3431458,8 C39.4040117,8 40.4214274,7.57857264 41.1715729,6.82842712 L41.1715729,6.82842712 L46.8284271,1.17157288 C47.5785726,0.421427361 48.5959883,-1.37667655e-14 49.6568542,-1.37667655e-14 L49.6568542,-1.37667655e-14 L164,-1.84741111e-13 C166.209139,-1.85146924e-13 168,1.790861 168,4 L168,44 C168,46.209139 166.209139,48 164,48 L65.6568542,48 C64.5959883,48 63.5785726,48.4214274 62.8284271,49.1715729 L57.1715729,54.8284271 C56.4214274,55.5785726 55.4040117,56 54.3431458,56 L41.6568542,56 C40.5959883,56 39.5785726,55.5785726 38.8284271,54.8284271 L33.1715729,49.1715729 C32.4214274,48.4214274 31.4040117,48 30.3431458,48 L20,48 C17.790861,48 16,49.790861 16,52 L16,92 Z" id="Loop-C-Block" stroke="#CF8B17" fill="#FFAB19"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment