Update copy on site based on living copy document (#697)

* Update copy on site based on living copy document

* Updates copy from living doc v2

- updates shots

* Update styling to sidepanel

- make indicator heading white
- change bg color of add'nl indicators 'FAFAFA'

* Separate dataset cards sections by style

- abstract out additional cards color to utils
- create a baseCard mixin
- add datasetCardAdditional style block
- add additionalIndicator prop to DatasetCard
- lower abstaction of GridContainer from methodology to DatasetContainer
- updates snapshot

* Swap resolution and source in dataset cards

- update snapshots

* Update SVGs on About page

- re-center the SVGs to content vertically
This commit is contained in:
Vim 2021-09-17 11:01:15 -07:00 committed by GitHub
parent cd33f323c8
commit 61fc8e6c15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1714 additions and 701 deletions

View file

@ -91,8 +91,9 @@ $sidePanelLabelFontColor: #171716;
@include sidePanelLabelStyle; @include sidePanelLabelStyle;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 0.3rem 0.5rem 0.3rem 1.2rem; padding: 0.5rem 0.5rem 0.5rem 1.2rem;
background-color: #DFE1E2; border-top: 1px solid $sidePanelBorderColor;
border-bottom: 1px solid $sidePanelBorderColor;
} }
//Indicator box styles //Indicator box styles
@ -104,7 +105,7 @@ $sidePanelLabelFontColor: #171716;
.indicatorBoxAdditional { .indicatorBoxAdditional {
@include indicatorBox; @include indicatorBox;
border-bottom: 1px solid #1b1b1b; border-bottom: 1px solid #1b1b1b;
background-color: #F3F3F3; background-color: $additionalCardsBGColor;
} }
.indicatorRow { .indicatorRow {

View file

@ -144,13 +144,13 @@ const AreaDetail = ({properties}:IAreaDetailProps) => {
}, },
femaRisk: { femaRisk: {
id: 'areaDetail.indicator.femaRisk', id: 'areaDetail.indicator.femaRisk',
defaultMessage: 'FEMA Risk index', defaultMessage: 'FEMA Risk Index',
description: 'Risk based on 18 natural hazard types, in addition to a'+ description: 'Risk based on 18 natural hazard types, in addition to a'+
"community's social vulnerability and community resilience", "community's social vulnerability and community resilience",
}, },
heartDisease: { heartDisease: {
id: 'areaDetail.indicator.heartDisease', id: 'areaDetail.indicator.heartDisease',
defaultMessage: 'Heart Disease', defaultMessage: 'Heart disease',
description: 'People ages 18 and up who report ever having been told by a' + description: 'People ages 18 and up who report ever having been told by a' +
'doctor, nurse, or other health professionals that they had angina or coronary heart disease', 'doctor, nurse, or other health professionals that they had angina or coronary heart disease',
}, },
@ -216,7 +216,8 @@ const AreaDetail = ({properties}:IAreaDetailProps) => {
}; };
const poverty:indicatorInfo = { const poverty:indicatorInfo = {
label: intl.formatMessage(messages.poverty), label: intl.formatMessage(messages.poverty),
description: 'Household income is less than or equal to the federal "poverty level"', description: "Percent of a block group's population in households where the household income" +
' is at or below 100% of the federal poverty level',
value: properties[constants.POVERTY_PROPERTY_PERCENTILE], value: properties[constants.POVERTY_PROPERTY_PERCENTILE],
}; };
// const linIsoInfo:indicatorInfo = { // const linIsoInfo:indicatorInfo = {

View file

@ -114,7 +114,7 @@ exports[`rendering of the AreaDetail checks if various text fields are visible 1
<p <p
class="secondary j40-indicator" class="secondary j40-indicator"
> >
Household income is less than or equal to the federal "poverty level" Percent of a block group's population in households where the household income is at or below 100% of the federal poverty level
</p> </p>
</li> </li>
<li <li
@ -210,7 +210,7 @@ exports[`rendering of the AreaDetail checks if various text fields are visible 1
> >
<div> <div>
<h4> <h4>
FEMA Risk index FEMA Risk Index
</h4> </h4>
<div> <div>
NaN NaN
@ -232,7 +232,7 @@ exports[`rendering of the AreaDetail checks if various text fields are visible 1
> >
<div> <div>
<h4> <h4>
Heart Disease Heart disease
</h4> </h4>
<div> <div>
NaN NaN

View file

@ -1,10 +1,21 @@
.datasetCard { @import '../utils.scss';
background-color: white;
@mixin baseCard {
padding: 2.7rem 3rem 3rem 3rem; padding: 2.7rem 3rem 3rem 3rem;
margin-bottom: 3rem; margin-bottom: 3rem;
max-width: 34rem; max-width: 34rem;
} }
.datasetCard {
@include baseCard;
background-color: white;
}
.datasetCardAdditional {
@include baseCard;
background-color: $additionalCardsBGColor;
}
.datasetCardIndicator { .datasetCardIndicator {
margin-top: 0; margin-top: 0;
font-size: x-large; font-size: x-large;

View file

@ -1,6 +1,7 @@
declare namespace DatasetCardScssNamespace { declare namespace DatasetCardScssNamespace {
export interface IDatasetCardScss { export interface IDatasetCardScss {
datasetCard: string; datasetCard: string;
datasetCardAdditional:string;
datasetCardIndicator:string; datasetCardIndicator:string;
datasetCardWhatIsIt: string; datasetCardWhatIsIt: string;
datasetCardDescription: string; datasetCardDescription: string;

View file

@ -5,16 +5,12 @@ import * as styles from './datasetCard.module.scss';
interface IDatasetCardProps { interface IDatasetCardProps {
datasetCardProps: { [key:string]: string } datasetCardProps: { [key:string]: string }
additionalIndicator: boolean
} }
const DatasetCard = ({datasetCardProps}:IDatasetCardProps) => { const DatasetCard = ({datasetCardProps, additionalIndicator}:IDatasetCardProps) => {
const intl = useIntl(); const intl = useIntl();
const messages = defineMessages({ const messages = defineMessages({
whatIsIt: {
id: 'datasetCard.whatIsIt',
defaultMessage: 'What is it?',
description: 'label associated with explaining the card',
},
dataResolution: { dataResolution: {
id: 'datasetCard.dataResolution', id: 'datasetCard.dataResolution',
defaultMessage: 'Data resolution: ', defaultMessage: 'Data resolution: ',
@ -33,20 +29,13 @@ const DatasetCard = ({datasetCardProps}:IDatasetCardProps) => {
}); });
return ( return (
<div className={styles.datasetCard}> <div className={additionalIndicator ? styles.datasetCardAdditional : styles.datasetCard}>
<h3 className={styles.datasetCardIndicator}>{datasetCardProps.indicator}</h3> <h3 className={styles.datasetCardIndicator}>{datasetCardProps.indicator}</h3>
<div className={styles.datasetCardWhatIsIt}>{intl.formatMessage(messages.whatIsIt)}</div>
<div className={styles.datasetCardDescription}> <div className={styles.datasetCardDescription}>
{datasetCardProps.description} {datasetCardProps.description}
</div> </div>
<ul className={styles.datasetCardList}> <ul className={styles.datasetCardList}>
<li className={styles.datasetCardListItem}>
<span className={styles.datasetCardLabels}>
{intl.formatMessage(messages.dataResolution)}
</span>
{datasetCardProps.dataResolution}
</li>
<li className={styles.datasetCardListItem}> <li className={styles.datasetCardListItem}>
<span className={styles.datasetCardLabels}> <span className={styles.datasetCardLabels}>
{intl.formatMessage(messages.dataSource)} {intl.formatMessage(messages.dataSource)}
@ -55,6 +44,12 @@ const DatasetCard = ({datasetCardProps}:IDatasetCardProps) => {
{datasetCardProps.dataSourceLabel} {datasetCardProps.dataSourceLabel}
</a> </a>
</li> </li>
<li className={styles.datasetCardListItem}>
<span className={styles.datasetCardLabels}>
{intl.formatMessage(messages.dataResolution)}
</span>
{datasetCardProps.dataResolution}
</li>
<li className={styles.datasetCardListItem}> <li className={styles.datasetCardListItem}>
<span className={styles.datasetCardLabels}> <span className={styles.datasetCardLabels}>
{intl.formatMessage(messages.dataDateRange)} {intl.formatMessage(messages.dataDateRange)}

View file

@ -6,20 +6,11 @@ exports[`rendering of the DatasetCard checks if component renders 1`] = `
<h3> <h3>
Area Median Income Area Median Income
</h3> </h3>
<div>
What is it?
</div>
<div> <div>
Median income of the census block group calculated as a percent Median income of the census block group calculated as a percent
of the metropolitan areas or state's median income. of the metropolitan areas or state's median income.
</div> </div>
<ul> <ul>
<li>
<span>
Data resolution:
</span>
Census block group
</li>
<li> <li>
<span> <span>
Data source: Data source:
@ -32,6 +23,12 @@ exports[`rendering of the DatasetCard checks if component renders 1`] = `
Census's American Community Survey Census's American Community Survey
</a> </a>
</li> </li>
<li>
<span>
Data resolution:
</span>
Census block group
</li>
<li> <li>
<span> <span>
Data date range: Data date range:

View file

@ -3,12 +3,12 @@ import {render} from '@testing-library/react';
import {LocalizedComponent} from '../../../test/testHelpers'; import {LocalizedComponent} from '../../../test/testHelpers';
import DatasetCard from '../../DatasetCard'; import DatasetCard from '../../DatasetCard';
import {cards} from '../../DatasetContainer/index'; import {indicators} from '../../DatasetContainer/index';
describe('rendering of the DatasetCard', () => { describe('rendering of the DatasetCard', () => {
const {asFragment} = render( const {asFragment} = render(
<LocalizedComponent> <LocalizedComponent>
<DatasetCard key={0} datasetCardProps={cards[0]}/> <DatasetCard key={0} datasetCardProps={indicators[0]}/>
</LocalizedComponent>, </LocalizedComponent>,
); );

View file

@ -3,12 +3,13 @@ import {useIntl} from 'gatsby-plugin-intl';
import {defineMessages} from 'react-intl'; import {defineMessages} from 'react-intl';
import {Grid} from '@trussworks/react-uswds'; import {Grid} from '@trussworks/react-uswds';
import DatasetCard from '../DatasetCard';
import AlertWrapper from '../AlertWrapper'; import AlertWrapper from '../AlertWrapper';
import DatasetCard from '../DatasetCard';
import J40MainGridContainer from '../J40MainGridContainer';
import * as styles from './dsContainer.module.scss'; import * as styles from './dsContainer.module.scss';
export const cards = [ export const indicators = [
{ {
indicator: 'Area Median Income', indicator: 'Area Median Income',
description: `Median income of the census block group calculated as a percent description: `Median income of the census block group calculated as a percent
@ -19,26 +20,29 @@ export const cards = [
dataDateRange: `2015-2019`, dataDateRange: `2015-2019`,
}, },
{ {
indicator: 'Households below 100% of the federal poverty line', indicator: 'Poverty',
description: `Percent of a block group's population in households where the description: `Percent of a block group's population in households where the household income` +
household income is at or below 100% the federal "poverty level."`, ` is at or below 100% of the federal poverty level`,
dataResolution: `Census block group`, dataResolution: `Census block group`,
dataSourceLabel: `Census's American Community Survey`, dataSourceLabel: `Census's American Community Survey`,
dataSourceURL: `https://www.census.gov/programs-surveys/acs`, dataSourceURL: `https://www.census.gov/programs-surveys/acs`,
dataDateRange: `2015-2019`, dataDateRange: `2015-2019`,
}, },
{ {
indicator: 'Education. less than high school education', indicator: 'Education, less than high school education',
description: `Percent of people age 25 or older in a block group whose description: `Percent of people ages 25 years or older in a block group whose
education is short of a high school diploma.`, education level is less than a high school diploma.`,
dataResolution: `Census block group`, dataResolution: `Census block group`,
dataSourceLabel: `Census's American Community Survey`, dataSourceLabel: `Census's American Community Survey`,
dataSourceURL: `https://www.census.gov/programs-surveys/acs`, dataSourceURL: `https://www.census.gov/programs-surveys/acs`,
dataDateRange: `2015-2019`, dataDateRange: `2015-2019`,
}, },
];
export const additionalIndicators = [
{ {
indicator: 'Diabetes', indicator: 'Diabetes',
description: `People ages 18 years and up who report having ever been description: `People ages 18 years and older who report having ever been
told by a doctor, nurse, or other health professionals that they have told by a doctor, nurse, or other health professionals that they have
diabetes other than diabetes during pregnancy.`, diabetes other than diabetes during pregnancy.`,
dataResolution: `Census tract`, dataResolution: `Census tract`,
@ -59,7 +63,7 @@ export const cards = [
}, },
{ {
indicator: 'Heart disease', indicator: 'Heart disease',
description: `People ages 18 years and up who report ever having been told description: `People ages 18 years and older who report ever having been told
by a doctor, nurse, or other health professionals that they had angina or by a doctor, nurse, or other health professionals that they had angina or
coronary heart disease.`, coronary heart disease.`,
dataResolution: `Census tract`, dataResolution: `Census tract`,
@ -82,7 +86,7 @@ export const cards = [
within 500 meters, divided by distance in meters (not km).`, within 500 meters, divided by distance in meters (not km).`,
dataResolution: `Census block group`, dataResolution: `Census block group`,
dataSourceLabel: `Department of Transportation (DOT) traffic data`, dataSourceLabel: `Department of Transportation (DOT) traffic data`,
dataSourceURL: `#`, dataSourceURL: `https://www.fhwa.dot.gov/policyinformation/hpms/shapefiles.cfm`,
dataDateRange: `2017`, dataDateRange: `2017`,
}, },
{ {
@ -136,8 +140,9 @@ export const cards = [
indicator: 'Diesel particulate matter', indicator: 'Diesel particulate matter',
description: `Mixture of particles that is part of diesel exhaust in the air.`, description: `Mixture of particles that is part of diesel exhaust in the air.`,
dataResolution: `Census block group`, dataResolution: `Census block group`,
dataSourceLabel: `U.S. Census Bureau`, dataSourceLabel: `Environmental Protection Agency (EPA) National Air Toxics Assessment (NATA)
dataSourceURL: `https://www.census.gov/`, `,
dataSourceURL: `https://www.epa.gov/national-air-toxics-assessment/2014-nata-assessment-results`,
dataDateRange: `5-year estimates, 2015-2019`, dataDateRange: `5-year estimates, 2015-2019`,
}, },
{ {
@ -158,7 +163,7 @@ const DatasetContainer = () => {
const messages = defineMessages({ const messages = defineMessages({
cumulativeScore: { cumulativeScore: {
id: 'datasetContainer.header.cumulativeScore', id: 'datasetContainer.header.cumulativeScore',
defaultMessage: 'Datasets used methodology', defaultMessage: 'Datasets used in methodology',
description: 'section label of which datasets are used in cumulative score', description: 'section label of which datasets are used in cumulative score',
}, },
subTitle: { subTitle: {
@ -166,31 +171,76 @@ const DatasetContainer = () => {
defaultMessage: 'The datasets come from a variety of sources and were selected' + defaultMessage: 'The datasets come from a variety of sources and were selected' +
' based on relevance, availability, recency, and quality. The datasets seek to' + ' based on relevance, availability, recency, and quality. The datasets seek to' +
' identify a range of human health, environmental, climate-related, and other' + ' identify a range of human health, environmental, climate-related, and other' +
' cumulative impacts on disadvantaged communities.', ' cumulative impacts on communities.',
description: 'description of the dataset section', description: 'description of the dataset section',
}, },
additionalSubtitle: {
id: 'datasetContainer.additionalSubtitle',
defaultMessage: 'Additional Indicators',
description: 'indicator heading',
},
additionalText: {
id: 'datasetContainer.additionalText',
defaultMessage: 'These datasets provide additional information about each community.',
description: 'additional indicator heading',
},
}); });
// JSX return value: // JSX return value:
return ( return (
<> <>
<Grid row> <J40MainGridContainer fullWidth={true} blueBackground={true}>
<Grid col={12}> <J40MainGridContainer>
<AlertWrapper showBetaAlert={false} showLimitedDataAlert={true}/>
<h2>{intl.formatMessage(messages.cumulativeScore)}</h2>
</Grid>
</Grid>
<Grid row> <Grid row>
<Grid col={12} tablet={{col: 7}} className={'j40-mb-3'}> <Grid col={12}>
<p>{intl.formatMessage(messages.subTitle)}</p> <AlertWrapper showBetaAlert={false} showLimitedDataAlert={true}/>
</Grid> <h2>{intl.formatMessage(messages.cumulativeScore)}</h2>
</Grid> </Grid>
<div className={styles.datasetCardsContainer}> </Grid>
{cards.map((card) => <DatasetCard
key={card.indicator} <Grid row>
datasetCardProps={card}/>)} <Grid col={12} tablet={{col: 7}} className={'j40-mb-3'}>
</div> <p>{intl.formatMessage(messages.subTitle)}</p>
</Grid>
</Grid>
<div className={styles.datasetCardsContainer}>
{indicators.map((card) => <DatasetCard
key={card.indicator}
datasetCardProps={card}
additionalIndicator={false}
/>)}
</div>
</J40MainGridContainer>
</J40MainGridContainer>
<J40MainGridContainer fullWidth={true} blueBackground={false}>
<J40MainGridContainer>
<Grid row>
<Grid col={12}>
<h2>{intl.formatMessage(messages.additionalSubtitle)}</h2>
</Grid>
</Grid>
<Grid row>
<Grid col={12} tablet={{col: 7}} className={'j40-mb-3'}>
<p>{intl.formatMessage(messages.additionalText)}</p>
</Grid>
</Grid>
<div className={styles.datasetCardsContainer}>
{additionalIndicators.map((card) => <DatasetCard
key={card.indicator}
datasetCardProps={card}
additionalIndicator={true}
/>)}
</div>
</J40MainGridContainer>
</J40MainGridContainer>
</> </>
); );
}; };

View file

@ -13,13 +13,13 @@ const DownloadPacket = () => {
const messages = defineMessages({ const messages = defineMessages({
downloadPacketHeader: { downloadPacketHeader: {
id: 'downloadPacket.header.text', id: 'downloadPacket.header.text',
defaultMessage: 'Draft communities list (pre-decisional, 137MB)', defaultMessage: `Draft communities list (${constants.DOWNLOAD_FILE_SIZE})`,
description: 'download packet header text', description: 'download packet header text',
}, },
downloadPacketInfo: { downloadPacketInfo: {
id: 'downloadPacket.info.text', id: 'downloadPacket.info.text',
defaultMessage: 'The package includes the draft list of prioritized communities (.csv and .xlsx).'+ defaultMessage: 'The package includes the draft list of prioritized communities (.csv and .xlsx) '+
' This information should not be used to make program resource allocation decisions.', ` and information about how to use the list (.pdf). Last updated: ${constants.DOWNLOAD_LAST_UPDATED} `,
description: 'download packet info text', description: 'download packet info text',
}, },
downloadPacketButtonText: { downloadPacketButtonText: {

View file

@ -35,7 +35,7 @@ const HowYouCanHelp = () => {
}, },
youCanHelpDataMethSuffixText: { youCanHelpDataMethSuffixText: {
id: 'youCanHelpDataMethSuffixText.link.suffix.text', id: 'youCanHelpDataMethSuffixText.link.suffix.text',
defaultMessage: 'and send us feedback', defaultMessage: 'page and send us feedback.',
description: 'send us feedbackv via email', description: 'send us feedbackv via email',
}, },
youCanHelpSharingPrefixText: { youCanHelpSharingPrefixText: {
@ -62,8 +62,7 @@ const HowYouCanHelp = () => {
{` `} {` `}
<a href={'mailto:screeningtool.feedback@usds.gov'}> <a href={'mailto:screeningtool.feedback@usds.gov'}>
{intl.formatMessage(messages.youCanHelpInfoLinkText)} {intl.formatMessage(messages.youCanHelpInfoLinkText)}
</a> </a>.
{` `}.
</div> </div>
</li> </li>
<li className={styles.howYouCanHelpList}> <li className={styles.howYouCanHelpList}>
@ -83,8 +82,7 @@ const HowYouCanHelp = () => {
{` `} {` `}
<a href={'mailto:screeningtool.feedback@usds.gov'}> <a href={'mailto:screeningtool.feedback@usds.gov'}>
{intl.formatMessage(messages.youCanHelpSharingLinkText)} {intl.formatMessage(messages.youCanHelpSharingLinkText)}
</a> </a>.
{` `}.
</div> </div>
</li> </li>
</ul> </ul>

View file

@ -15,7 +15,7 @@ exports[`rendering of the HowYouCanHelp checks if various text fields are visibl
> >
recieve an email from you recieve an email from you
</a> </a>
. .
</div> </div>
</li> </li>
<li> <li>
@ -26,7 +26,7 @@ exports[`rendering of the HowYouCanHelp checks if various text fields are visibl
> >
Data and methodology Data and methodology
</a> </a>
and send us feedback page and send us feedback.
</div> </div>
</li> </li>
<li> <li>
@ -37,7 +37,7 @@ exports[`rendering of the HowYouCanHelp checks if various text fields are visibl
> >
share your feedback share your feedback
</a> </a>
. .
</div> </div>
</li> </li>
</ul> </ul>

View file

@ -11,7 +11,7 @@ exports[`rendering of the MapLegend checks if snapshots have changed 1`] = `
<p <p
class="secondary" class="secondary"
> >
These communities are identified as experiencing disadvantages that merit the focus of certain Federal investments, including through the Justice40 Initiative A community identified as experiencing disadvantages that merits the focus of certain Federal investments, including through the Justice40 Initiative
</p> </p>
</div> </div>
</div> </div>

View file

@ -18,12 +18,17 @@ const MapWrapper = ({location}: IMapWrapperProps) => {
const messages = defineMessages({ const messages = defineMessages({
downloadLinkText: { downloadLinkText: {
id: 'mapwrapper.download.link', id: 'mapwrapper.download.link',
defaultMessage: 'Download the draft list of communities of focus and datasets used', defaultMessage: 'Download the draft list ',
description: 'download link for datasets',
},
downloadLinkText1: {
id: 'mapwrapper.download1.link',
defaultMessage: `of communities of focus and datasets used. Last updated: ${constants.DOWNLOAD_LAST_UPDATED}`,
description: 'download link for datasets', description: 'download link for datasets',
}, },
downloadContents: { downloadContents: {
id: 'mapwrapper.download.contents', id: 'mapwrapper.download.contents',
defaultMessage: 'ZIP file will contain one .xlsx, one .csv, and one .pdf (30 MB).', defaultMessage: `ZIP file will contain one .xlsx, one .csv, and one .pdf (${constants.DOWNLOAD_FILE_SIZE}).`,
description: 'download link contents', description: 'download link contents',
}, },
}); });
@ -40,11 +45,14 @@ const MapWrapper = ({location}: IMapWrapperProps) => {
</Grid> </Grid>
<Grid row> <Grid row>
<Grid col={6}> <Grid col={7}>
<div className={styles.mapCaptionTextLink}> <div className={styles.mapCaptionTextLink}>
<a href={constants.DOWNLOAD_ZIP_URL}> <a href={constants.DOWNLOAD_ZIP_URL}>
{intl.formatMessage(messages.downloadLinkText)} {intl.formatMessage(messages.downloadLinkText)}
</a> </a>
<span>
{intl.formatMessage(messages.downloadLinkText1)}
</span>
</div> </div>
<div>{intl.formatMessage(messages.downloadContents)}</div> <div>{intl.formatMessage(messages.downloadContents)}</div>
</Grid> </Grid>

View file

@ -17,7 +17,7 @@ exports[`rendering of the component should match the snapshot of the MapIntroduc
The methodology for identifying communities of focus is calculated at the census block group level. Census block geographical boundaries are determined by the U.S. Census Bureau once every ten years. This tool utilizes the census block boundaries from 2010. The methodology for identifying communities of focus is calculated at the census block group level. Census block geographical boundaries are determined by the U.S. Census Bureau once every ten years. This tool utilizes the census block boundaries from 2010.
</p> </p>
<p> <p>
The following describes the process for identifying disadvantaged communities. The following describes the process for identifying communities of focus.
</p> </p>
</div> </div>
</div> </div>
@ -36,9 +36,6 @@ exports[`rendering of the component should match the snapshot of the MapIntroduc
<p> <p>
</p> </p>
<h4>
Data inputs
</h4>
<p <p
class="flush" class="flush"
> >
@ -87,7 +84,7 @@ exports[`rendering of the component should match the snapshot of the MapIntroduc
class="usa-process-list__heading" class="usa-process-list__heading"
data-testid="processListHeading" data-testid="processListHeading"
> >
Current Formula Determine communites of focus
</h4> </h4>
<p> <p>
@ -98,12 +95,17 @@ exports[`rendering of the component should match the snapshot of the MapIntroduc
Under the existing formula, a census block group will be considered a community of focus if: Under the existing formula, a census block group will be considered a community of focus if:
</p> </p>
<p> <p>
(The median income is &lt;80% of the area median income OR (The median income is less than 80% of the area median income
</p> </p>
<p <p
class="flush" class="flush"
> >
households living in poverty (at or below 100% of the federal poverty level) is &gt;20%) OR
</p>
<p
class="flush"
>
households living in poverty (at or below 100% of the federal poverty level) is greater than 20%)
</p> </p>
<p <p
class="flush" class="flush"
@ -113,7 +115,7 @@ exports[`rendering of the component should match the snapshot of the MapIntroduc
<p <p
class="flush" class="flush"
> >
The high school degree achievement rate for adults 25 years and older is &lt;95% The high school degree achievement rate for adults 25 years and older is greater than 95%
</p> </p>
</li> </li>
</ol> </ol>

View file

@ -19,7 +19,7 @@ const ScoreStepsList = () => {
block boundaries from 2010. block boundaries from 2010.
</p> </p>
<p> <p>
The following describes the process for identifying disadvantaged communities. The following describes the process for identifying communities of focus.
</p> </p>
</Grid> </Grid>
</Grid> </Grid>
@ -29,9 +29,6 @@ const ScoreStepsList = () => {
<ProcessListItem> <ProcessListItem>
<ProcessListHeading type="h4">Gather datasets</ProcessListHeading> <ProcessListHeading type="h4">Gather datasets</ProcessListHeading>
<p>{' '}</p> <p>{' '}</p>
<h4>
Data inputs
</h4>
<p className={'flush'}> <p className={'flush'}>
The methodology includes the following inputs that are equally weighted. The methodology includes the following inputs that are equally weighted.
</p> </p>
@ -69,7 +66,7 @@ const ScoreStepsList = () => {
<ProcessListItem> <ProcessListItem>
<ProcessListHeading type="h4"> <ProcessListHeading type="h4">
Current Formula Determine communites of focus
</ProcessListHeading> </ProcessListHeading>
<p>{' '}</p> <p>{' '}</p>
<p className={'flush'}> <p className={'flush'}>
@ -77,16 +74,19 @@ const ScoreStepsList = () => {
community of focus if: community of focus if:
</p> </p>
<p> <p>
(The median income is &lt;80% of the area median income OR (The median income is less than 80% of the area median income
</p> </p>
<p className={'flush'}> <p className={'flush'}>
households living in poverty (at or below 100% of the federal poverty level) is &gt;20%) OR
</p>
<p className={'flush'}>
households living in poverty (at or below 100% of the federal poverty level) is greater than 20%)
</p> </p>
<p className={'flush'}> <p className={'flush'}>
AND AND
</p> </p>
<p className={'flush'}> <p className={'flush'}>
The high school degree achievement rate for adults 25 years and older is &lt;95% The high school degree achievement rate for adults 25 years and older is greater than 95%
</p> </p>
</ProcessListItem> </ProcessListItem>

View file

@ -10,6 +10,7 @@ $sidePanelBorderColor: #f2f2f2;
$sidePanelBorder: 2px solid $sidePanelBorderColor; $sidePanelBorder: 2px solid $sidePanelBorderColor;
$mobileBreakpoint: 400px; $mobileBreakpoint: 400px;
$featureSelectBorderColor: #00bde3; $featureSelectBorderColor: #00bde3;
$additionalCardsBGColor: #FAFAFA;
//Styles with Dataset container //Styles with Dataset container
$datasetContainerColor: #eef6fb; $datasetContainerColor: #eef6fb;

View file

@ -63,6 +63,8 @@ export const PM25_PERCENTILE = 'Particulate matter (PM2.5) (percentile)';
// The name of the layer within the tiles that contains the score // The name of the layer within the tiles that contains the score
export const SCORE_SOURCE_LAYER = 'blocks'; export const SCORE_SOURCE_LAYER = 'blocks';
export const DOWNLOAD_FILE_SIZE = '143MB';
export const DOWNLOAD_LAST_UPDATED = '09/20/21';
export type J40Properties = { [key: string]: any }; export type J40Properties = { [key: string]: any };
@ -149,7 +151,7 @@ export const EXPLORE_TOOL_PAGE_TEXT = defineMessages({
}, },
PRIORITY_DESCRIPT: { PRIORITY_DESCRIPT: {
id: 'legend.info.threshold.label', id: 'legend.info.threshold.label',
defaultMessage: 'These communities are identified as experiencing disadvantages that merit' + defaultMessage: 'A community identified as experiencing disadvantages that merits' +
' the focus of certain Federal investments, including through the Justice40 Initiative', ' the focus of certain Federal investments, including through the Justice40 Initiative',
description: 'the label of the threshold community legend', description: 'the label of the threshold community legend',
}, },

View file

@ -0,0 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 2154.7 2297.4" style="enable-background:new 0 0 2154.7 2297.4;" xml:space="preserve">
<style type="text/css">
.st0{fill:#1C507F;}
.st1{font-family:'Arial-BoldMT';}
.st2{font-size:580.24px;}
.st3{fill:none;}
.st4{fill:#FFFFFF;}
.st5{fill:#CCCCCC;}
.st6{clip-path:url(#SVGID_2_);}
.st7{clip-path:url(#SVGID_4_);fill:#FFFFFF;}
.st8{fill:#19437F;}
.st9{font-family:'SourceSansPro-SemiBold';}
.st10{font-size:397.5994px;}
</style>
<text transform="matrix(1 0 0 1 584.94 1817.13)" class="st0 st1 st2">40%</text>
<rect x="315.3" class="st3" width="1569.7" height="1569.7"/>
<path class="st4" d="M1077.4,876.7c106.6,0,200.8,25.5,277.3,58.9c70.6,31.4,115.1,102,115.1,178.6v106H684.9v-105.3
c0-77.2,44.5-147.8,115.1-178.6C876.6,902.2,970.8,876.7,1077.4,876.7z M554.1,893c72,0,130.8-58.9,130.8-130.8
S626,631.4,554.1,631.4s-130.8,58.9-130.8,130.8S482.2,893,554.1,893z M628,965c-24.2-3.9-48.4-6.5-73.9-6.5
c-62.6,0-124.5,12.9-181.8,37.9c-48.4,20.7-79.8,68.3-79.8,121v102.7h294.3v-105.3C586.8,1060.5,601.9,1009.5,628,965z M1600.6,893
c71.9,0,130.8-58.9,130.8-130.8s-58.9-130.8-130.8-130.8s-130.8,58.9-130.8,130.8S1528.7,893,1600.6,893L1600.6,893z M1862.2,1117.4
c0-52.7-31.4-100.3-79.8-121c-57.3-25-119.2-37.9-181.8-37.9c-25.5,0-49.7,2.6-73.9,6.5c26.2,44.5,41.2,95.5,41.2,149.8v105.3h294.3
L1862.2,1117.4z M1077.4,435.2c108.4,0,196.2,87.9,196.2,196.2s-87.9,196.2-196.2,196.2c-108.4,0-196.2-87.9-196.2-196.2l0,0
c-0.1-108.2,87.5-196.1,195.8-196.2C1077.1,435.2,1077.2,435.2,1077.4,435.2z"/>
<circle class="st5" cx="1077.3" cy="1223.6" r="1073.2"/>
<g>
<defs>
<path id="SVGID_1_" d="M1095.8,602.8c102.8,0,185.8,83,185.8,185.8s-83,185.8-185.8,185.8S910,891.4,910,788.6
S993,602.8,1095.8,602.8z M1838.9,1248.7c0-50.2-29.7-94.8-75.6-114.6c-52.6-22.9-110.9-35.9-172.2-35.9c-24.2,0-47.1,2.5-70,6.2
c24.8,42.1,39,90.4,39,141.8v99.7h278.7V1248.7z M1591.2,1036.3c68.1,0,123.9-55.7,123.9-123.9s-55.7-123.9-123.9-123.9
s-123.9,55.7-123.9,123.9S1523.1,1036.3,1591.2,1036.3z M670.3,1104.4c-22.9-3.7-45.8-6.2-70-6.2c-61.3,0-119.5,13-172.2,35.9
c-45.8,19.8-75.6,64.4-75.6,114.6v97.2h278.7v-99.7C631.3,1194.8,645.5,1146.5,670.3,1104.4z M600.3,1036.3
c68.1,0,123.9-55.7,123.9-123.9s-55.7-123.9-123.9-123.9s-123.9,55.7-123.9,123.9S532.2,1036.3,600.3,1036.3z M1095.8,1020.8
c100.9,0,190.1,24.2,262.6,55.7c66.9,29.7,109,96.6,109,169.1v100.3H724.2v-99.7c0-73.1,42.1-140,109-169.1
C905.6,1044.9,994.8,1020.8,1095.8,1020.8z"/>
</defs>
<use xlink:href="#SVGID_1_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;"/>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g class="st6">
<defs>
<rect id="SVGID_3_" x="352.6" y="231.2" width="1486.3" height="1486.3"/>
</defs>
<use xlink:href="#SVGID_3_" style="overflow:visible;fill:#FFFFFF;"/>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
</clipPath>
<rect x="43" y="293.1" class="st7" width="2105.6" height="1362.4"/>
</g>
</g>
<text transform="matrix(1 0 0 1 724.0376 1727.6064)" class="st8 st9 st10">40%</text>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="2154.71" height="2297.42" viewBox="0 0 2154.71 2297.42"><defs><style>.a{fill:#c1c1c1;}.b{font-size:580.24px;fill:#1c507f;font-family:Arial-BoldMT, Arial;font-weight:700;}.c{fill:none;}.d{fill:#fff;}</style></defs><circle class="a" cx="1077.36" cy="1220.06" r="1077.36"/><text class="b" transform="translate(584.94 1817.13)">40%</text><rect class="c" x="315.3" width="1569.74" height="1569.74"/><path class="d" d="M1105.34,752.14c106.61,0,200.8,25.51,277.32,58.87,70.64,31.39,115.12,102,115.12,178.56v105.95H712.91V990.22C712.91,913,757.38,842.4,828,811.66,904.55,777.65,998.73,752.14,1105.34,752.14ZM582.09,768.5c71.95,0,130.82-58.87,130.82-130.82S654,506.87,582.09,506.87,451.28,565.74,451.28,637.68,510.15,768.5,582.09,768.5ZM656,840.44c-24.2-3.92-48.4-6.54-73.91-6.54a454.56,454.56,0,0,0-181.82,37.94,131.52,131.52,0,0,0-79.8,121v102.68H614.8V990.22C614.8,935.93,629.84,884.92,656,840.44Zm972.59-71.94c71.94,0,130.81-58.87,130.81-130.82s-58.87-130.81-130.81-130.81-130.81,58.87-130.81,130.81S1556.64,768.5,1628.59,768.5Zm261.62,224.34a131.51,131.51,0,0,0-79.8-121,454.56,454.56,0,0,0-181.82-37.94c-25.51,0-49.71,2.62-73.91,6.54,26.16,44.48,41.2,95.49,41.2,149.78v105.3h294.33ZM1105.34,310.65A196.22,196.22,0,1,1,909.12,506.87,196,196,0,0,1,1105.34,310.65Z" transform="translate(-27.98 124.54)"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -0,0 +1,893 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 2155 2155" style="enable-background:new 0 0 2155 2155;" xml:space="preserve">
<style type="text/css">
.st0{fill:#FFFFFF;}
.st1{fill:#112F4E;}
.st2{opacity:0.5;fill:#112F4E;enable-background:new ;}
.st3{fill:#CCCCCC;}
.st4{fill:#19437F;}
.st5{clip-path:url(#SVGID_2_);}
.st6{clip-path:url(#SVGID_4_);fill:#FFFFFF;}
.st7{clip-path:url(#SVGID_7_);}
.st8{clip-path:url(#SVGID_14_);fill:#FFFFFF;}
.st9{clip-path:url(#SVGID_16_);}
.st10{clip-path:url(#SVGID_18_);fill:#FFFFFF;}
.st11{clip-path:url(#SVGID_20_);}
.st12{clip-path:url(#SVGID_22_);fill:#FFFFFF;}
.st13{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st14{fill-rule:evenodd;clip-rule:evenodd;fill:#F9F9F9;}
.st15{clip-path:url(#SVGID_24_);}
.st16{clip-path:url(#SVGID_26_);fill:#FFFFFF;}
.st17{clip-path:url(#SVGID_28_);}
.st18{clip-path:url(#SVGID_30_);fill:#FFFFFF;}
.st19{clip-path:url(#SVGID_31_);}
.st20{clip-path:url(#SVGID_32_);fill:#FFFFFF;}
.st21{clip-path:url(#SVGID_33_);}
.st22{clip-path:url(#SVGID_34_);fill:#FFFFFF;}
.st23{clip-path:url(#SVGID_35_);}
.st24{clip-path:url(#SVGID_36_);fill:#FFFFFF;}
.st25{clip-path:url(#SVGID_38_);}
.st26{clip-path:url(#SVGID_40_);fill:#FFFFFF;}
.st27{clip-path:url(#SVGID_42_);}
.st28{clip-path:url(#SVGID_44_);fill:#FFFFFF;}
</style>
<path class="st0" d="M1959.5,651c-1.1,0-3.4,2-5,4.3c-3.2,4.1-16.7,17.9-21.4,16.7c-2.7-2.5-14.1,11.9-16.7,11.5
c-1.5,0-3.5,3.3-5.8,9.6c-5.4,17-9.2,6.2-14.9,14.9c-0.7,2-1.8,2.6-3.9,2c-4.6-1.1-9.2,4.2-8.1,9.5c0.8,8.3-9.9,35.3-5,40.1
c1.5,4.5,1.3,6.1-1.1,12.5c-6.1,13.7,5.1,4.9,10,12.5c3.5,7,14.3,12.9,15.6,5.6c-0.1-1.7-0.5-3.5-1.4-5c-1.2-1.9,1.8-6.8,4.1-6.8
c1.8,0,5.4,9.6,5.4,14.2c0,4.1-0.5,4.9-3.7,5.6c-4.1,0.1-7.2,6.1-10.4,3.4c-4.6-4.6-13,7.2-16.1,12.6c-3.2-4.3-10.4-11.8-10.4-1.5
c-0.3,16.8-41.4,14.8-53.2,32.4c-7.7,7.7-9.3,10.6-6.4,10.6c4.7,0.9,35.2-21.4,41.9-15.5c-1.6,8.8-34.4,25-43.4,27.7
c-4-0.4-10.3,4.9-4.3,5.4c4.9,0,5.7,2.8,5.7,18c1.7,16.2-7,31.8-14.8,42.3c-3.1,2.7-3.1,2.7-5.4-0.1c-1.2-1.6-4.5-3.9-7.1-5.3
c-3.2-0.1-14.8-15.7-15.2-10.4c-0.8,3.4,11.5,22.9,15.7,24.8c20.3,12,1.4,52.8-6.5,69.7c-0.5-4.8-0.8-13.3,0.5-17.4
c0.9-3.7,4.4-13.6-2.6-11.1c-3.9,0.8-4.1,0.7-4.1-3.9c0-3-0.7-4.9-1.6-4.9c-2.1-0.1-12.9-2-11.9-5.7c0.1-4.6-7.9-28.8-3.5-32.1
c2.6-6.8,2.8-12.8,0.5-12.1c-27.1,19.5,7,55.4-8.4,54c-8.9,0-6.6,5.6,3,7.5c11.7,0.9,8.3,13.7,11.9,20.9c4,4.1-2.1,8.2-0.3,12.9
c0.7,2.6,0.4,3.5-1.2,3.5c-5.6,1.3,1.7,10.5,6,6.8c6.8-3.5,15,0,15,6.6c0.3,5.1,9.9,15.8,2.8,18.4c-0.5-0.6-21.6,11.7-17.9,13.3
c2.5,3.3,14.1-5.4,16.1,0c5,7,10.6-12.9,11.1,5.3c1,10.6-9.4,19.9-16.8,14c-5.2-5.3-8.3,2.5-4.2,6.5c6.2,11-12.8,13.6-9.9,16.7
c2.7,1.8,9.3,0.7,14.2-2.3c4.6-2.8,6.6-1.8,5.2,2.8c-0.6,1.6-5.2,4.8-11.9,8c-12.8,4.6-24.6,20.2-28.1,31.5
c-4.6,20.6-25.5,2.5-38.4,38.4c-1.9,5.8-10.2,17-11.8,21.7c-6,6.9-35.6,28.2-34.7,36.1c-2.7,7.6-10.5,18.8-13.3,28.3
c-7.3,14.4,0.9,39.1,4.6,52.9c1.5,5.6,8,7.4,6.8,15.9c-1.9,9.2,11.8,18.8,14.4,26.6c4,7.9,8.6,5.1,14.2,14c5.3,7.1,5.6,7.9,5.8,17.8
s0.4,10.4,4.6,13.8c3,2.6,5.3,6.4,7.2,12.3c3.1,10.1,13.1,22.6,17.5,31.3c5.7,8.5-1.5,17.9,1.6,27.1c1.4,5.8,1.2,6.9-1.5,10.7
c-5.8,4.8,2.2,18.1-5.3,21.4c-5.4,3.4-18.8,11.9-19.2,3.8c0.5-5.4-5.9-1-10.7-9.5c-7.6-12-14.4-9.5-21.4-15.3
c-1.8-10.7-13.2-18-15.6-26.7c-0.4-3.7-1-4.1-5.4-4.5c-8-0.2-10-10.6-15.6-15.6c-11.1-10.8,4.7-10.8-0.4-22
c-5.8-5.2-4.5,0.6-7.2,3.2c-6.8,2.5-8.7-11.6-5.7-16.9c3.9-9.5,3.2-17.6-2.6-28.1c-4.3-7.9-5.7-9.1-9-9.1
c-11.6-3.3-32.6-33.9-46.4-31.2c-5.2,0-6.7,0.7-10.8,5c-4,3.6-32.2,23.6-30.9,13.3c0-2.3-1.2-3.9-4.1-5.4
c-10.8-4.2,8.1-10.2-13.6-11c-23.8-1.2-17.7-10.4-24.8-7.7c-4.4,0.7-8.9,0.9-13.4,0.7c-13.4-1.6-7.4,4.2-15.9,5.2
c-2.3,0.1-4.6,1.1-6.2,2.7c-10.7,8.3-14.4-3.7-16.7-12.9c-1.6,3.2-6.6,17.4-9.1,11.4c-2.8-2-4.3,4.5-12.6,2
c-6.6-2.3-21.5,4.9-32.7,10.8c-5.6-1.3-19.4-4.7-23.2-4.6c-4.3,0-7.3,4.5-5.4,8.1c1.2,2.3,2.4,2.4,10.7,1.8c11.6-1.3,9.5,0.4,13,6.2
c3-1.8,14.4-9.1,15.7-9.4c0.4,0,1.3,1.4,2.2,3c4.2,1.9-14.8,17.6-14.5,19.5c-0.7,1.2,23.5,14.8,23.1,15.7c0,1.1-9.9,6.5-11.9,6.5
c-0.8,0-1.6-1.2-2-2.7c-0.4-1.8-3.5-3.9-8.1-6c-8-2.6-12.7-14.7-15.5-1.9c-1.2,6.4-5.2,8.7-7.6,4.5c-1.6-3-10.3-1.6-12.9,2.2
c-2.2,3.1-3.4,3.1-10.4,0.5c-6.3-1.4-9.7-11.2-15.2-11.5c-3,0-9.9-5.7-9.9-8.3c0-0.7-1.1-1.2-2.4-1.2c-5.4-1.1-13-7.8-13.8,2.7
c0,5,0.1,5-22.2,0.1c-11.7-2.6-18.7-3.5-21-2.8c-12.4,2.3-52.3,16-50.3,6.8c0-3-0.4-3.1-5-1.9c-3.9,1.1-5,4.8-2.8,9.2
c3.4,5.7-6.8,8.7-8.3,14.4c-1.8,3.7-5.2,6.1-18.8,13.3c-15.2,7.9-16.8,8.5-19,6.6s-2.8-1.9-6.9-0.1c-4.5,1.9-4.5,2-2.3,5.2
c6.3,7.3-11.5,3.1-11,10.6c-0.7,3.1-1.4,3.9-3.4,3.3c-10.6-2.5-3.2,11.7-14.4,13c-7.2-0.4-0.8,15.3-6.8,19.1c-2.7,2.8-3,3.8-1.5,6.1
c3.3,9.2-5.2,8.3,1.9,27.8c2.3,8.7,5,15.2,6.9,17.3c2.3,2.3,5.9,10.8,0.5,8c-5.3-2.5-6.4,4.2-12.3-1.8c-10.3-6.3-26.5-7.2-40-14.4
l-14.8-6.6c-6.1-10.3-14.7-28.2-14.2-36.6c0-7-2.6-12.5-6.1-12.5c-3.1,0-8.8-7.5-8.8-11.4c-5-8.9-13.7-15.9-18.3-30.2
c-6.4-12.7-3.4-16.6-9.8-22.9c-23.6-14.7-8.4-23.8-36.3-25.5c-11.7-0.7-11.4-1.2-15.7-6.7c-2.5,3.5-3.8,5.9-9.5,6.1
c-10-1.8-12,27-25.4,28.2c-2.7,0-14.6-7.9-40.7-26.7c-13.2-8.8-4-18.3-9.8-27.1c-4.8-10.8-7-12.9-26-33.1
c-42.6-42.9-9.9-32.2-69.7-40.7c-20.4-3.3-15.8-1.1-19.8,15.7c0.6,0.9-63.7-8.1-88.5-11c-7.6-0.8-10.7-2.6-42.7-22.6
c-85.7-53.6-82.7-51.7-82.7-54.8c0-3.5-0.8-3.7-25.8-5.8c-17.7-1.4-38.6-3.8-53.5-4.8c-1.3-12.1-1.2-33.9-7.5-40
c-9-14.2-13.7-19-18.7-19c-4.2,0-4.6-0.3-3.8-3.4c2.5-17-20.2-8.6-23.5-23.2c0.6-4.5-24.5-15.4-28.2-15.5c-2.6,0.7-12.4-7.9-13.7-9
c-0.1-0.1,1.1-4.1,2.9-9c6.6-13.3-2.8-9.7-1-21c0.7-4.8,0.4-6-1.5-6.6c-2.7-1.1-12.9-22-12.9-26.3c0-1.5-2.3-5.3-5.3-8.5
c-8.1-6.8-2.7-13.2,1.2-19.2c8.5-6.6-4.1-18.1-10.9-24.3c1.1-10.1-4.4-25.8,9.4-17.6c3,2.2,3.1,2.2,2.4-0.3c-2-4.1-1.7-23.6-7-15.5
l-3,2.8c-15.6-13.7-2.7-21.3-13-34.2c-3-5.4-12.2-13.7-8.1-18.7c5.1-7.9-10.1-5,7-28.1c-15.3-44.3-9.5-32.9,9-68.1
c5.3-1.2,2.1-43.6,5.4-47.2c3.7-8.2-4.9-15.3,3.4-21.6c5.9-5.7,2.5-9.3,9.2-15.5c12.7-12.2,36.3-88,46.6-114.2
c3.3-1.3,7.1-7.4,3.2-10.4c-2.9-3.2-1.8-9.5,1.8-9.5c1.9,0,1.6-0.5-1.1-2.6c-6.4-3.3,2.6-11.5-1.5-16c-3.1-4.8,2.5-17.6-0.1-23.3
c-1.4-5.6-0.5-17.1,1.5-18.3c0.5-0.4,7.3,3.5,15.2,8.7c12.5,9.1,14,7.5,22,12.2c2.6,2.8,8.5,2.1,10.4,3.7
c6.5,12.2-8.5,31.6-1.5,31.6c3,0.8,12.6-17.3,15.5-22c-1.2-7.3-5.4-22.7-2.2-26.7c1.8-4.2,1.8-4.7-0.1-5.8c-2.4-0.7-4-12.1,1-9.6
c1.6,0.4,15.2,4.1,30.1,8c209.3,54.2,483.5,96.7,698.5,86.5c10,0.5,3.3-11.8,11.2-11.4c12-2.5,3.4,30.1,14.1,24.9
c3.4-0.5,6.2,0.1,11.3,2.6c10.8,6.3,16.6-1.6,29.3,2c8.4,1.5,10.2,2.3,13.6,6.4c2.2,2.7,5.2,4.8,6.8,4.8c4.7,0.5,8.1,5.2,13.4,6.5
c6.1,4.2,22.8-8.3,28.6-3c6.4,4.2,26.8-3,29.8,3.5c-18.4,13.1-54.1,36.9-65.6,53.2c8.3,2.7,7.6,4.5,19.7-2c6.8-3.7,11.3-5.2,13-4.6
c3,1,3.5,2.7,1.3,4.1c-0.8,0.4-1.3,2.6-1.3,4.7c0,3.8,0.1,3.8,4.5,2.6c3.5-0.8,7.1-0.9,10.7-0.5c9.6,2.3,15.3-9.3,25.6-12.6
c8.6-3,16.4-12.4,22.5-15.7c1.4-0.4,3.7-3,5-5.6c2.2-4.1,3.2-4.7,7.4-4.7c8.1,0,9.2,1.9,3.7,6.1c-5.1,2.5-8.3,14.2-9,18.3
c0,0.4,2.4,0.5,5.4,0.3c13.2-2.3,21.2,12.8,36.2,12.1c14.3,2.1,19.6-9.9,33.6-10.8c5-0.9,9.9-2.1,14.6-3.7c6.9-2.6,7.7-2.4,7.7,1.5
c2,19,7.8,0,40.1,18.4c1.2,2.2-9.3,5.3-17.9,5.3c-7.2,0-8.8,0.4-10.6,3s-2.3,2.7-4.5,0.7c-7.3-4.5-21-5-26.7,3
c-3.4,4.8-13.1,0.4-15,6.9c-3.9,6.8-8.3,4.2-8.1-1.6c-2.7,1.8-9.8,9.3-8.8,2.8c-1.8-9.8-6.2,13-8.7,15.9
c-5.1,10.5-2.1,9.5-10.2,20.1c-6.7,8.7-9.6,16.1-7.2,17.6c29.9-27.8,31.9-45.4,15.6,7.6c-1,11.3-6.8,11.3-5.7,24
c0.6,17.5-6.2,12-0.7,33.6c3.9,11.5,0.7,28.3,6.6,33c5.3,3.7,5.5,17.3,13,18.4c23.1,6.4,37.5-41.3,27.2-65.1
c-6.4-14.6-8.8-25.6-7.7-35.1c1.6-10.5,0.7-30,10.6-35.1c1.8-1.1,2.7-0.8,4.1,1.1c1.8,2.4,2,2.4,6.1-0.5c3.7-2.7,4.3-4.1,4.3-8.8
c-1.4-6.8,7-9.4,6-14.9c-0.8-3.4,6.9-14.1,10.3-14.1c4.3-0.1,15.5,4.1,17.1,6.5c1.1,1.5,4.2,2.8,7.9,3.2c6,0.8,17.1,6.9,17.1,9.2
c-2.9,3.4-3.9,8.4-0.7,14.8c2.4,3.2,2.1,19.9,2,26.3c-3.9,4-13.6,10.5-11.1,15.5c0.7,4.8,6.2,9.1,8.1,6.2
c4.6-6.9,14.4-18.2,15.6-18.2c2.2,0,11.8,2.7,11.8,3.3c0,0.3,2.4,7.7,5.6,16.4c4.9,14.2,5.4,16.8,4.6,23.6
c-1.1,8.8-2.7,12.3-5.4,12.3c-1.2,0-2.6,2.3-3.5,6.1c-1.2,6.9-5,7-5.3,13c0.8,5.1-15.1,22.4-4.2,21.5c11.3,1,25.6,13.1,36.7,3.4
c8.5-8,10,1.2,14.4-3.9c4.3-6.1,11.7-13,13.7-13c16.7-7,34.6-22.7,50-36.2c11.7-11.5,13.2-15.9,7.9-22.8c-3.1-4.1-3.3-5-1.9-10
c1.6-6.1,2.2-6.4,22.2-10.6c11.3-2.5,10.6-0.8,16.8,3.5c15.1-5,48.5-21.5,30.6-38.5c-2.2-3.4-2.2-3.5,3.9-10
c3.4-3.7,6.9-9.1,7.7-12.1c0.7-5.5,18.7-22.2,25.2-28.9c14.8-5.3,94-16.2,89.5-23.7c-1.8-6.6,7.6-16.8,13.3-14.6
c9.4,2.2,2.7-11.3,7.9-15.9c3.1-4.2,3.4-7,2.7-23.6c-2-9.3,7.1-58.8,16.1-58.3c1.3,2.2-1.2,5.9,2.6,7.9c1.7,5,18.8-8.6,21.3-8.5
c5.6,2.2,19.2,9.8,19.2,17.8c2.2,6.2,10.4,42.3,17.1,43.1c7,3.7,6.8,12.6,15.3,14.1c7.1,0.7,7.6,7.8,11,11
C1962,647.4,1961.8,651,1959.5,651z"/>
<path class="st0" d="M662.8,1555.3v20.5c-4.2,1.7-17.6,7.4-19.9,7.5c-8-5.1-45.3-41.3-45.5-50.4l-6.1-13.2
c-13.6-7.3-41-19.9-49.1-19.1c-17-1.8-13.7-17.5-42-16.7c0.8,9.5-2.8,14.1-16.4,17.9c-13.3,3.7-13.4,3.7-13.4-1.6
c-1.6-3.5,10-16.9,10.2-19.7c-1-0.9-10.3,5.2-18,11.8c-3.4,4-18.8,12.9-13.6,15.3c2,1.6,1,2.8-10,11.9
c-20.1,16.7-20.9,17.2-38.8,22.9c-41.1,13.2-41.5,12.6-67.4,13.8c7-7.9,14.4-6.1,24-9.6c14.6-4.4,14.8-1.8,34.2-12.3
c27-12.3,18.6-16.2,30.9-32.4l-6.6,2c-17.2,7.7-10.8-12.7-24-9.5c-5.1,0.8-6,0.5-6.5-1.8c-0.3-2,0.1-4,1.2-5.7
c3.2-4.6,0-13.6-4.9-13.6c-11.3,0-18.4-8-15.3-16.8c2.8-4.3-2.1-13.8-2.4-17.8c4.2-5.6,18.3-12.7,23-18.8c1.9,2,5.9,5.9,8,7.7
c19.2-19.4,16.6,5.4,21.6-26c0.5-1.5-0.4-1.2-4.1,1c-8.9,6.7-20.5-0.3-28.9-5.7c-9.5-7.2,1.8-7.6-4.5-18.4
c-3.2-7.9-4.1-7.2,11.2-9.5c6-0.8,11.9-1.8,13.3-2c1.9-0.4,2.3,0.7,2.3,6.1c0,6.8,1.4,8.1,9.1,8.1c5.3,1.9,5.2-10.8,6.1-16.1
c-2-0.9-9.6-4.4-9.8-5.4c-0.1-7-3.3-17.5-6.2-20.6c-3.4-3.5-3.4-3.8-1.2-7.2c5.8-9.3,19,6.2,25.2-9.3c-0.4-4.7,22.2-14.6,25.4-15.7
c2.2,0.3,4.4,0.7,6.5,1.4c4.6,1.2,6.5,1.2,8-0.1s4.2-0.7,13.4,2.7c11.3,4.2,11.5,4.5,10.7,8.3c-0.7,3.3-0.3,3.9,2.8,4.8
c3.1,0.4,6.2,0.2,9.2-0.5c4.8-3.5,20.8,6.5,28.2,9.9c3.8-1.6,9.9-7.4,11.9-2.4c2.5,2.9,9.1,11.1,12.5,14.9
c0.1,36.8,0.5,110.8,0.7,147.5c4.4,0.2,13.2,0.6,17.6,0.7c3.8,4.2,11.5,12.7,15.3,17c23.7-13.3,13.8-10.2,33.8,14.2
C640.3,1548.6,638.6,1543,662.8,1555.3z"/>
<path class="st0" d="M821.9,1638.7v-4.6c-1.1-7.6,13.8-11.5,16.8-6.5C845.9,1639.1,830.8,1638.5,821.9,1638.7z"/>
<path class="st0" d="M901.9,1665.7h-16.1c-0.7-5.1-5.2-16.2-0.3-17.8c5.3-4.6,4.3-2,10.7,2.7
C902.8,1656.2,901.9,1659.3,901.9,1665.7z"/>
<path class="st0" d="M937.2,1689.4c-4.3,3-6.8,8.1-9.8-0.3c-3.8-6.8,0.9-12.3,6.2-4.2L937.2,1689.4z"/>
<path class="st0" d="M933.9,1677.2c-0.5-4-17.9,0.6-15.7-5.4c0-3.9,0.8-4.1,12.7-2c4.3,0.7,8.3,1.5,8.5,1.8
C940,1673,935.9,1683.4,933.9,1677.2z"/>
<path class="st0" d="M965.1,1684.6c-1.1,1.6-10.7,6.9-12.9,6.9c-0.7,0-1.9-1.9-2.7-4.1c-3.6-8.9-7.9,2-6.9-13.7
c3.6,2.8,7.7,6.4,12.5,5.2C960.1,1678,966.9,1681.7,965.1,1684.6z"/>
<path class="st0" d="M1005.6,1741.1c-11.1,2.8-19.1,6.8-22.1,11.1c-2.3,3.1-3.7,3.8-6.2,3.4c-4.8-1-5.6-2.3-8.8-15.6
c-3.5-14.8-3.5-15.4,0.5-22.1c7-9.6-2.1-14.3,12.2-8.8c9.5,3.2,19,10.7,22.1,17.3c1.5,3.1,3.5,5.2,5.7,5.7
C1014.8,1734.2,1013.6,1740,1005.6,1741.1z"/>
<path class="st0" d="M1432.9,1686.2c-1.1,0.3-2.2-0.2-2.8-1.2c-1.7-0.8-4.3-2-2.7-4.3c0.6-0.9,5.6-0.6,6.5-0.7
c1.1,0.2,2.4,1.6,1.1,2.5c-0.4,0.9-1,1.8-1.7,2.6C1433.3,1685.5,1433.3,1686.1,1432.9,1686.2z M1676.8,1677.9c-2.6,1-3.2-1-6.1,2.2
c-1.4,0.1-0.9-1.3-2.9-0.5c-2.1,1.2-8.5,1.9-10.6,3.2c-2.1-1.1-5.3,0.1-7.6-0.7c-2.3-4-1.1-2.4,2.4-3c1.8-0.6,3.5-1.5,4.9-2.8
c1.3-0.7,8.2-1.9,9.6-1.5C1670,1677.1,1675.1,1675,1676.8,1677.9L1676.8,1677.9z M1678.6,1659.4c0.2,1,2.5,2-0.2,1.7
c1.6,1.2-1.2,0.8-1.7,0c-0.1-0.5-0.3-0.9-0.9-0.8c0.5,0.8,0.8,1.6,1,2.5c-0.4,2.3-1.1-0.7-1.7-1.1c-0.1-0.2-4.3-3.8-3.9-4
C1673.9,1657.5,1676.4,1658.1,1678.6,1659.4L1678.6,1659.4z M1513.7,1641.3l9.9,2c0.9-0.1,10.6-1.6,11.1-1.1
c1.1,0.3,3.8,1.5,4.9,1.3c3-0.7,6-1.1,9-1.3c1.7,0.1,3.4,0.5,5,1.2c0.9-0.5,6.5-0.2,7.6-0.2c2.6,1.7,9,0.1,11.7-0.5l7.4,2.2
c3.6-1.6,5.7-1.1,9.2,0.3c1.2-1.4,2.6-0.6,3.3,0.8c0.9,0.9,1.9-0.4,2.4-1.1c1.2,0.1,0.9,0.7,0.6,1.6c0.6,0.3,2.3,1,2.1,2
c0.4,2.5,3.7,0.7,5.2,0.4c0.3-1.1-0.9-0.8-1.6-0.9c-1.2-0.3-3.4-2.5-4.2-3.4c3.1,0.5,10.9,5.2,12.5,1c2.2,0,6.1,2.8,7.9,0.7
c0.9,0.1,1.7,0.5,2.3,1.1c1.2,0.2,3.7,0.8,4.7,1.6c0.7,0.7,1.6,2.4,2.7,1.3c0.3-0.6,1.2-1.6,1.4-0.3l-0.9,1.3
c2.7-0.9,2.1-1.3,3.9,1.4c1,0.7,1.7,1.2,2.8,0c1.5,1.6,3.6,2.4,5.8,2.5c5.7-4.8,3.7-1.1,3,3.3c0.1,1-0.5,4.5,0.2,5.3
c-0.2,0.8-0.5,1.4,0.3,1.9c0.5,0.6,1.6,0,2.1-0.3c-0.7,1.1,0.5,2.4,1.1,3.2c-0.5,0.4-1.3,0.8-1.1,1.6c-1,0.5-1.3-0.9-1.8-1.4
c-2-0.3-1.3,1.4-0.5,2.3c-1,1.4-2.5,0.3-3.6-0.3c-1.2,0.4-2.3,0.8-3.3,1.4c-4,0-6.5,5.1-8.4,8c0,2.9-1.1,4.9-4.2,5.1
c-1,0.4,0.4,2.9,0.5,3.5c-0.9,1.2-4,3.1-5.3,3.9c-4.7,2-6.2,1.9-11.1,1c-2.6,0.7-4.5,1.9-7.4,1.4c-1.3,0-6.2,2.8-7.4,3.4
c-0.8,0-3.3,0-3.8,0.6c-0.4-1-1-1.5,0.4-1.7c0.6-0.7-0.5-1.3-1-1.8c-0.7,0.5-2,2.1-2.9,2c-2.3-0.8-4.9,0.1-6.1-2.6
c-1.6-1.3-4-0.7-5.8-0.2c-1.2,0.9-3,2.4-4.6,1.6c-1.7-1.1-3.2-3.4-4.9-4.3c-2.6,0.4-5.8,1.7-8.5,1.5c-0.6,0.4-2.3,1.5-3.1,1.4
c-0.8-0.8-2-0.8-2.8,0c-0.6-2.3-4.5-0.7-6.1-0.7c-2.3-1-4.9-1.5-7.4-1.3c0.7-2.6-2-1.7-3.2-0.8c-0.2,1.1,0.6,0.7,1.3,0.8
c-0.8,1.8-3.3,2.7-5.1,3.1c-2.4,0.5-5.4,0.2-7.8,0.3c-0.6,0.2-0.5,1.6-0.6,2c-2.1,0.2-3.9-2-5.2-3.4c-1.3,0-2.7-0.2-4-0.4
c-0.8,0-2.9,0.1-3.6-0.4l-1.3,1.1c-2.4,1.9-7,1.1-9.3-0.5c-1.4,0.6-0.7,1.9-0.3,3.1c-1.5,0.4-2.2-2.2-2.9-3.1v-2.8
c1.2-0.9,7.3-2.2,3.5-3.8c-3.1,1.1-3.2-2.6-0.8-3.7c-1.8-4.4,0.8-1.6,0.2-6.9c0.6-5.6,5.3-5.1,1.2-8.4c-2.8-12-4.7-3.1-7.7-10.4
c-0.6-1-2-2.7-1.5-3.9c3.7-1.2,13.5-3.8,9.4-9.1C1497.6,1638.6,1509.6,1638.6,1513.7,1641.3z"/>
<polygon class="st0" points="1508.8,1647.5 1508.8,1647.5 1508.8,1647.5 "/>
<polygon class="st0" points="1541,1675.4 1541,1675.4 1541,1675.4 "/>
<polygon class="st0" points="1497.2,1653.9 1497.2,1653.9 1497.2,1653.9 "/>
<path class="st1" d="M599.1,724.6l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.8-63.7-67.8s-63.6,20.6-63.6,67.8
c0,32.1,63.6,129.7,63.6,129.7L599.1,724.6z"/>
<path class="st0" d="M599.1,573.2c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.7v-6.8c-0.1-5,2.9-9.6,7.4-11.6
C586.8,574.5,592.9,573.2,599.1,573.2z M565.3,574.2c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C556.8,570.4,560.6,574.2,565.3,574.2L565.3,574.2z M570.1,578.9c-7.5-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8
C567.4,585.1,568.3,581.8,570.1,578.9z M633,574.2c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C624.5,570.4,628.3,574.2,633,574.2z M649.9,588.7c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L649.9,588.7z
M599.1,544.6c7,0,12.7,5.7,12.7,12.6c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0C586.4,550.3,592.1,544.6,599.1,544.6
C599.1,544.6,599.1,544.6,599.1,544.6z"/>
<path class="st1" d="M374.2,962.9L374.2,962.9c0.1,0.1,63.6-97.5,63.6-129.6c0-47.2-32.2-67.7-63.6-67.8s-63.6,20.6-63.6,67.8
C310.5,865.4,374.2,963,374.2,962.9L374.2,962.9z"/>
<path class="st0" d="M374.2,811.4c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.5
C361.9,812.7,368,811.4,374.2,811.4z M340.4,812.5c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C331.9,808.7,335.7,812.5,340.4,812.5L340.4,812.5z M345.1,817.1c-7.5-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8
C342.4,823.4,343.4,820.1,345.1,817.1L345.1,817.1z M408,812.5c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C399.6,808.7,403.4,812.5,408,812.5z M424.9,827c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L424.9,827z M374.2,782.9
c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0C361.5,788.5,367.2,782.9,374.2,782.9
C374.2,782.9,374.2,782.9,374.2,782.9L374.2,782.9z"/>
<path class="st1" d="M450.5,1476.8l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.7-63.6-67.8s-63.6,20.6-63.6,67.8
c0,32.1,63.6,129.7,63.6,129.7L450.5,1476.8z"/>
<path class="st0" d="M450.5,1325.3c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.5,11.5v6.9h-50.8v-6.8c0-5,2.9-9.5,7.4-11.6
C438.2,1326.6,444.3,1325.3,450.5,1325.3z M416.7,1326.4c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C408.2,1322.6,412,1326.4,416.7,1326.4z M421.5,1331c-7.5-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8C418.8,1337.3,419.7,1334,421.5,1331z
M484.4,1326.4c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0C475.9,1322.6,479.7,1326.4,484.4,1326.4z M501.3,1340.9
c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L501.3,1340.9z M450.5,1296.8c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0
c-0.6,16.8-24.8,16.8-25.4,0C437.8,1302.5,443.5,1296.8,450.5,1296.8C450.5,1296.8,450.5,1296.8,450.5,1296.8z"/>
<path class="st2" d="M599.1,1205L599.1,1205c0.1,0.1,63.7-97.5,63.7-129.6c0-47.2-32.2-67.7-63.7-67.8s-63.6,20.6-63.6,67.8
C535.5,1107.5,599.1,1205.1,599.1,1205L599.1,1205z"/>
<path class="st0" d="M599.1,1053.5c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.6v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.6
C586.8,1054.8,592.9,1053.5,599.1,1053.5z M565.3,1054.5c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C556.8,1050.7,560.6,1054.5,565.3,1054.5L565.3,1054.5z M570.1,1059.2c-7.5-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8
C567.4,1065.5,568.3,1062.1,570.1,1059.2L570.1,1059.2z M633,1054.5c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C624.5,1050.7,628.3,1054.5,633,1054.5z M649.9,1069c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L649.9,1069z
M599.1,1025c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0C586.4,1030.7,592.1,1025,599.1,1025
C599.1,1025,599.1,1025,599.1,1025z"/>
<path class="st2" d="M1182.1,864.1l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.7-63.6-67.8s-63.6,20.6-63.6,67.8
c0,32.1,63.6,129.7,63.6,129.7L1182.1,864.1z"/>
<path class="st0" d="M1182.1,712.7c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.5
C1169.8,714,1175.9,712.7,1182.1,712.7z M1148.3,713.7c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1139.8,709.9,1143.6,713.7,1148.3,713.7z M1153.1,718.4c-7.4-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8
C1150.4,724.7,1151.3,721.3,1153.1,718.4L1153.1,718.4z M1216,713.7c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1207.5,709.9,1211.3,713.7,1216,713.7L1216,713.7z M1232.9,728.2c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19
L1232.9,728.2z M1182.1,684.1c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0
C1169.4,689.8,1175.1,684.1,1182.1,684.1C1182.1,684.1,1182.1,684.1,1182.1,684.1L1182.1,684.1z"/>
<path class="st1" d="M1400.7,713.6l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.7-63.6-67.8s-63.6,20.6-63.6,67.8
c0,32.1,63.6,129.7,63.6,129.7L1400.7,713.6z"/>
<path class="st0" d="M1400.7,562.1c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.5
C1388.4,563.4,1394.5,562.1,1400.7,562.1z M1366.9,563.2c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1358.4,559.4,1362.2,563.2,1366.9,563.2z M1371.7,567.8c-7.4-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.8
C1369,574.1,1369.9,570.8,1371.7,567.8L1371.7,567.8z M1434.6,563.2c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1426.1,559.4,1429.9,563.2,1434.6,563.2z M1451.5,577.7c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L1451.5,577.7z
M1400.7,533.6c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0C1388,539.3,1393.7,533.6,1400.7,533.6
C1400.7,533.6,1400.7,533.6,1400.7,533.6L1400.7,533.6z"/>
<path class="st1" d="M1767.1,812.4L1767.1,812.4c0.1,0.1,63.6-97.5,63.6-129.6c0-47.2-32.2-67.7-63.7-67.8s-63.6,20.6-63.6,67.8
C1703.5,714.9,1767.1,812.5,1767.1,812.4L1767.1,812.4z"/>
<path class="st0" d="M1767.1,660.9c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.5
C1754.8,662.2,1760.9,660.9,1767.1,660.9z M1733.3,662c4.7,0,8.4-3.8,8.4-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1724.9,658.2,1728.6,662,1733.3,662z M1738.1,666.6c-7.4-1.2-21.6,0.1-21.7,9.9v6.6h19v-6.9
C1735.4,672.9,1736.3,669.5,1738.1,666.6L1738.1,666.6z M1801,662c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1792.6,658.2,1796.4,662,1801,662z M1817.9,676.5c-0.1-9.8-14.2-11-21.7-9.9c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L1817.9,676.5z
M1767.2,632.4c7,0,12.6,5.6,12.6,12.6c-0.6,16.8-24.8,16.8-25.4,0C1754.5,638,1760.1,632.3,1767.2,632.4L1767.2,632.4z"/>
<path class="st1" d="M1638.7,1123.6l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.8-63.7-67.8S1575,946.8,1575,994
C1575,1026,1638.6,1123.7,1638.7,1123.6L1638.7,1123.6z"/>
<path class="st0" d="M1638.7,972.1c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.5v6.8h-50.8v-6.8c0-5,2.9-9.5,7.4-11.5
C1626.4,973.4,1632.5,972.1,1638.7,972.1z M1604.8,973.1c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1596.4,969.3,1600.1,973.1,1604.8,973.1C1604.8,973.1,1604.8,973.1,1604.8,973.1L1604.8,973.1z M1609.6,977.8
c-7.4-1.2-21.6,0.1-21.7,9.8v6.6h19v-6.8C1606.9,984,1607.9,980.7,1609.6,977.8L1609.6,977.8z M1672.5,973.1c4.7,0,8.4-3.8,8.5-8.5
c-0.4-11.2-16.5-11.2-16.9,0C1664,969.3,1667.8,973.1,1672.5,973.1C1672.5,973.1,1672.5,973.1,1672.5,973.1L1672.5,973.1z
M1689.4,987.6c-0.1-9.8-14.2-11-21.7-9.8c1.7,2.9,2.7,6.3,2.7,9.7v6.8h19L1689.4,987.6z M1638.7,943.5c7,0,12.7,5.7,12.7,12.7
c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0C1626,949.2,1631.7,943.5,1638.7,943.5L1638.7,943.5z"/>
<path class="st1" d="M1568.3,1674.3l0.1,0.1c0,0,63.6-97.6,63.6-129.7c0-47.2-32.2-67.7-63.6-67.8c-31.4,0.1-63.6,20.6-63.6,67.8
c0,32.1,63.6,129.7,63.6,129.7L1568.3,1674.3z"/>
<path class="st0" d="M1568.3,1522.8c6.2,0,12.3,1.3,17.9,3.8c4.5,2,7.5,6.6,7.4,11.6v6.8H1543v-6.8c0-5,2.9-9.5,7.4-11.5
C1556,1524.2,1562.1,1522.8,1568.3,1522.8z M1534.5,1523.9c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1526,1520.1,1529.8,1523.9,1534.5,1523.9L1534.5,1523.9z M1539.3,1528.5c-7.4-1.2-21.6,0.1-21.7,9.8v6.6h19v-6.8
C1536.6,1534.8,1537.5,1531.5,1539.3,1528.5L1539.3,1528.5z M1602.2,1523.9c4.7,0,8.4-3.8,8.5-8.5c-0.4-11.2-16.5-11.2-16.9,0
C1593.7,1520.1,1597.5,1523.9,1602.2,1523.9L1602.2,1523.9z M1619.1,1538.4c-0.1-9.8-14.2-11-21.7-9.8c1.7,2.9,2.7,6.3,2.7,9.7v6.8
h19L1619.1,1538.4z M1568.3,1494.3c7,0,12.7,5.7,12.7,12.7c0,0,0,0,0,0c-0.6,16.8-24.8,16.8-25.4,0
C1555.6,1500,1561.3,1494.3,1568.3,1494.3C1568.3,1494.3,1568.3,1494.3,1568.3,1494.3L1568.3,1494.3z"/>
<circle class="st3" cx="1073.6" cy="1078.3" r="1074.7"/>
<path class="st0" d="M1248.3,635.4 M1240.6,634 M1352.7,685.7c1-1.9-6.1,6.9-6.5,16.1C1351.3,695,1350.6,689.6,1352.7,685.7z
M1356.9,680 M1719.2,912.5 M1716.7,921.5 M1118.6,1327 M1104.2,1337.3 M1168.8,1289.3c-0.1-0.3-0.2-0.3-0.2,0
C1162.3,1297.2,1158.1,1302.6,1168.8,1289.3z M1122.8,1323.8 M1643,1094.9 M1809.4,736.5 M1805.9,736.4 M1735.6,791 M1790.1,750.9
M1761.4,781.1 M1795.1,756.4c-7.7,3.8-10.3,5-18.5,11.2c-0.2-0.6,6.6-9.8,6.8-10.2c1.9-0.7,0.4-0.6,1-1.3
c-29.1,12.8-32,16.2-44.5,31.3c0.9,0.2,1.2,0.7,1.1,1.5c-0.1,0,3.4-1.6,3.4-1.5c6.3-1.9-2.7-2.7-1.2,1.5
C1762.8,780.9,1777.8,771.1,1795.1,756.4z M1773.4,773.7 M1583.3,731.9 M1654.7,668.3 M1651.9,671.2 M1652.1,680.8 M1745.2,819.4
M1740.4,831.4 M1678.8,1056.6 M1731.8,997.1 M1680.6,1045.7 M1715.7,1019.4 M1723.2,1007.6 M1726.9,1001.4 M1732.9,968.6
M1709.9,1018.6 M1692.1,1029.8 M1741.3,978.8 M1370.5,1241.9 M1358.4,1242.3 M1366.6,1241.7 M1352.6,1242.4 M1340.9,1247.5
M1356.4,1243.3 M1420.3,649.5 M1424.7,636.7 M1356.2,639 M1474.2,781.2 M1302.8,619.2c3.4-0.7,5.9,3.4,5.7,8.2
c7.4-8.6,11.6-11.6,17.1-17.3C1308.9,605.4,1314.5,616.8,1302.8,619.2z M1285.1,597.1c2.9,0.5,13.6-5.9,17.6-11.9
C1296.6,588.4,1289.6,593.1,1285.1,597.1z M1890.4,587.3c2.5,0.8-47.7-75.6-60.4-76.7c-32-2.8-43.9,84.4-59.6,97.1
c-37.2,30.3-98.2,16.9-122.6,70.7c0.7,0.4,2.2,0.4,1.8,1.7c0,0,4.7-2.9,4.8-1.8c1.7,5.5-0.7-1.6,2.3,1.7c-0.1,40.4-41.1,18-76,43
c1.8-1.3-26.5,47.1-45.2,60.8c-22.7,16.5-36.8,23.4-54.8,23.2c1.3,0.4,9.6-4.1,9.6-4.2c-0.4-0.2-4.4-0.1-4.3-1.5
c0.8,0.5-14.8-0.2-18.1-2.3c8-11.8,16.9-32.5,18.2-33.5c1.1-34.3-13.1-68.1-35.5-33.5c-0.8-0.5-1.7-0.7-2.7-0.7c0,0-3.7-1.2-3.4-1.6
c12.6-23.4,15.2-47.5-1.8-61.3c-8.8-7.1-27.3-9-37.6-9c0.3-1.7-1.2,19.3,4,12.4c-6.2,11-14.3,6.4-13.9,25.7
c-0.3-1.5,1.1-5.7,0.5-8.3c-0.4-0.6-2.4,6.2-2.4,7.8c-3.4-5.6,0-9.7-0.1-15.5c-39.5,36,0.2,200.4-55.8,75
c-4.2-9.5,6.3-44.5,9.2-54.4c-0.6,0.4-3.7-2.5-3.7-2.6c-4.2,3.5-10.8,10-14.9,12.8c4.9-16.2,14.7-35.8,23.5-51.4
c0-0.1,0.3,9.2,1.1,8.3c5.6-2.8,3.6-6.6,10.1-8.5c0,0-0.4,9.6-0.2,10.1c23.3-20.2,43.2-23.1,70.8-22.5c-0.2-0.2,0.2-1.5,0.2-1.5
c-10.2-9.9-24.9-19.5-32.1-23.5c-32.8,21.7-72.7,16.8-85.3,3.8c-2.7-1.3-7.5,7.7-8.4,7.7c-2.3-4.2-3.2-11.2-5.6-15.8
c-14.8,16.8-41.9,17.1-54.5,24.2c-1.5-0.5-5.7,5.5-0.8-7.2c-0.4,0.2-0.8-1-0.8-1.1c-0.4,0.2-1.5-0.1-1.4-0.8
c-10.2,4.6-20.1,5.7-32.5,10.6c-0.5,0.6-0.7-1.2-0.9-1.1c19.4-18.7,38.6-37.7,63.3-49c-46.5,1.9-74.4-2.3-112.1-11
c-18.9-4.4-22.5-10.2-31.9-27c-1.6,0.5-3.2,0.4-4.6-0.3c-54.3,74-455.2-1.3-552.6-15.9c-53.6-8.1-107-17.6-160-28.7
c0.1,1.7-33,18.2-54.8,10c1.7,15.1,4.4,54.6,4.5,54.6c-2.1,8.7-1.9,24.7-1.9,24.7c-2.7,27.8-5.7,28.8-15.6,58.5
c-2.1,6.2-6.5,19.3-9.7,30c0.3-0.2-0.5,5.5-1.2,11.2c-19.6,13.7-8.7,35.4-13,65.5c-0.9,6.4-6.8,32.2-5.4,25.1
c-12.1,24.4-5.8,76.1,14.2,107.8c0.3-0.4-3.2-6.5-3.4-6.7c1.5,3.7,10.2,16.2,11.9,17.5c1.5-0.4,12.2,106.3,33.2,130.8
c2.3,2.7,36.1,22.1,41.2,24.5c22.5,10.2,40.4,29.9,48.4,62.3c1.3,0.8,1.7-2.4,3.6,2c1,0.3-3.2-5.4-2.7-2.7
c18.9,5.3,50.9,10.8,77.6,10.1c42.5,98,166.5,49.5,212.8,56.8c68.1,10.7,59.9,47.5,98.4,77.8c66.7,52.5,37.3-8.1,89.4,4
c31.6,7.3,47.8,48.1,68.7,78c16.4,23.5,33,79.8,79.7,68.3c0.8-0.2,7.8-8.5,7.5-8.4c-1.5-2.2-15.5-20.7-13.9-31
c0.8-4.8,3.4-7.3,3.5-13.4c-2.5,1-3.3-18-2.9-22.3c9.1-2.7,8.3,5.3,15.7-6.4c0-0.3,1.7-3.5,2.5-3.2c4.8-6.7,4.1-8.8,4.4-12.4
c-0.6,1,13.2,0.3,13.1,0.4c-1-3.7,14.7-10,14.5-9.9c17.2-10.5,38.2-30.2,38.4-27.2c20.3-17.8,29.5-24.2,29.7-24.5
c-5.6,10.2-2.5,8.3,6.6,7.8h-0.1l0.2,0l-0.2,0c16.7,2.4,34.2,3.7,50.4,3.1c0.1-0.3-1.4-0.8,0.8-1.1c-0.4,1-4.4-3.6-4.8-4.9
c1.7,0.1,24.2,1.5,30.6,3.7c1,5.8,17.4,9.2,28.9,9.8c5.6,0.3,0.8,5.4,4.6,6.7c1-15.5,5.6-1.8-0.5-16.1c2,0.7-0.1-1.1,0.2-0.5
c-0.2-0.1,0.8-1.4,0.7-1.6c0.8,0.4,2.5,2.9,1.8,1.1c3.3,1.8,14,8.9,10.6,7.5c5.2,2.6,17.2,3.7,17,3.5c0,0,2.1,1.1,1.3,0.7
c0.7,0.2-4.1,7.9-3.6,9c9.7-7.3,9.5-6,12.2-10.4c-1.2-0.5-0.2-0.6-0.1-0.8c-9.6-3.3-12.9-7.6-24.7-13.2c0.7-0.5-0.3-0.4-1-0.7
c2.4-1.5,6.1-0.1,1.5-3c0.2-0.1,6.8,1.4,7.4,2.1c0.7-6.4-4.1-2.5,3.9-6.3c-1.9-4.7-5.1-4.9-1.8-9.7c-0.7,0.3-2.3,1.3-1.8,0
c0.1,0-1.8-0.5-1.7-0.6c-3,1.5-2.2,6.4-6,7.9c-0.6-0.4-1.1-0.8-1.5-1.3c-0.5-0.4-0.4-1.3-3.1-1c-2.4-2.2,6.6-6.7,5.2-7.3
c0.3,0-2.6-0.7-2.3-0.6c-0.3,0,1,0.4,0.9,0.4c-4.5,0.4,0.7-0.2-1.9-0.8c-5.9,1.2,16.3-7.5,39.5-9.7c4.4-0.4,6.6-0.7,11.2-0.8
c2.3-3.6,7.1-4.5,12.1,0.2c-0.2,0.1,10-8.8,9.9-8.7c0.4-0.1,1.7,0.5,2.3,0.5c-1.4,0.7,13.2-1.2,14.9-0.8c-2,0.6,20.3-1.4,12.4-0.3
c5.9,0.5,22.5,1.1,26.5,6.9c-0.1,0.3-0.9-1.8,0.2-0.3c1-3,11.4,8.5,11.4,8.5c10.5-1,16.7,4,33-5.6c-0.2,0.2-0.3,0.4-0.4,0.6
c12.5-18.9,49.6,20.1,62.5,36.4c1.5,1.9,5,35.2,5.4,35.9c0.5-9.4-1.4,10.2-0.7,7.5c0.8,0.6,8.2,9.1,8.4,9.8
c8.7,8.2,3.8,11.1,12.5,13c1.2-1.7,5.7,3,6.9,9.2c0.3,0.6,1.1-1.7,1.5-0.3c0-1.5-0.3,0.4-0.4,0.6c0,0,13.3,15.4,29.2,26.2
c5,3.4,13,15.1,12.6,14.8c-1.3-1.1,15.4,0.9,19.8-1.7c6.1-26.3,8.3-52.3-10.1-75.7c0.1,0.1-18.9-35.1-26.3-48.9
c-0.1-0.1-31.7-63.2-36.3-85.4c0.3,1.3-1.2-5.4-1.9-10.3c2.5-3.4,5.8-11.4,4.4-15.8c11.4-14.6,10.8-7.8,8.1-30.7
c0.9,0.9,12.2-0.6,5.8,0.6c1.9-0.7,3.2-1.4,3.6-3c14.5-4.1,10.8-6.5,16.7-14c13.9-7.2,17.7-22.5,17.5-20.9c1.2-1.7,3.6,3,3.4,3.1
c13.7-21.9,19.5-31,30.4-42.9c0-0.1,3.4,9.5,2.3,9.4c3.7-16.9,9.4-23.5,9.2-33.1c1.4,0,1.5,0.7,1.5,1c4.3-0.4,0.8,4.2,0.8,4.7
c-0.5,0.2,2.7-0.1,2.2,0.6c16.2-8.7,15.6-11.5,28.8-21.8c-0.2,0.1-2-1.2-1.9-1.4c-3.4,1.7-1.7,6-4.4-1.1c-5.7,11.7-6,1.7-19.3,0.9
c13.1-3.5,11,3.4,12-3.1c0.4,0.6,5.9-5.5,5.3-4.9c-0.1,0-1.3-1.1-1.1-1.3c-7.2-2.6-13-0.3-18.3-4.6c2.8,1,14.9,1.3,15.1,1.7
c-1.3-0.8-1.9-2.7-2.9-3.8c0.5-0.6,1-1.1,1.6-1.5c0.3,0.1,3.5,0.2,3.7-0.5c1.3,0.6-2.9,2.4-2.9,1.9c7.2,0.8,14.6,4.9,22.7-7.4
c4.4-6.6-4.8-8.5-5.2-14.3c0,0-0.7,4.4-1.3,1.9c-1.1,8.5-5.2,8-3.1,7.2c-4.4-1.5-3-9.7-21.3-2.1c0.4-0.7-2.5-10.9-1.8-10.3
c8.3-0.1,8.4-1.1,7.6-0.9c13,0.3,0.7,1,10.5,0.6c-0.8,0.2,1.6-1.8,1.7-1.8c-1.2-0.1-6.5-3.8-5.4-4.7c0.7-0.1,0.4,0.5,0.1,0.8
c3-1.1,6.3,3.5,9.8,3c-0.2-0.5-4.1-3.8-3.8-4.9c0.2,0.9,7,6.5,8.1,7.1c-7.3-11.9-5.2-8.5-11.7-16.7c2.1,2.4-2.6-1.9-16.2-6.9
c-7.4-4.2-9.1-10.8-24.4-11.7c-0.3,0-0.7,0-1.1-0.1c14.3,1.1,11.2,0.5,27.8,7.1c-0.2-0.4,2.7-2.4,3.2-2.2c-0.1-0.1,1-3,0.1-3.2
c-2-1.3-12.7-5.4-17.8-11.1c-0.4-0.1-0.5,0-0.8-0.3c-0.1-0.3-0.1-0.5-0.1-0.8c-1.2-0.3,15.7,8.2,14.2,6c-4.1-7.3-2.1-0.6,2.9-1.7
c-0.6-0.5-1.4-6.4-0.9-6.8c-3.8-2.2-17.4-11-28.6-18.5c-0.5-0.3-1.9-0.3-2.2-0.5c11.4,5.2,20.9,11.1,28,14.4
c-11.1-9-14.5-14.4-35.5-19.5c0-0.6,3-1.8-1-2.9c0.6-6.8,3.1-10.2,5.7-17.6c0.1-0.5-1.2-0.9-1.1-1.3c0,6.5-2.5,14.3,0.2,20.3
c2.3,0.7,18.6,4.1,28.1,6.1c-5.8-6.7-9.2-13.2-15.6-20.5c-5.8,1.8,10.4,10.2,10.6,10.4c-5.4-12.8-10-20.5-10.3-25.4
c0.1,0.8,4.2,3.1,5.2,0.8c-5.1-7.5-1.7,2.1-1.1-1.5c-1.3-4.6-4.9-2.4-7.3-5.6c0.1-0.1,1.6-0.5,1.4-0.9c5-5.6,5.3-4.2,15.5-15.8
c-0.9,7.9-1.2,2.7,3.1,0.1c-0.7,1.3-1.7,4.6,0.8,4.5c-4.2,5.4-5.5-1.6,0.7,3.2c-5.6,8.3-4.9,5.5-8.1,14.5c0.9-2.4,3.3-4,3.4-4.9
c-1.9,3.2-6.1,5.6-6.2,5.8c0.1,0.1-0.3,7.4,0.1,6.4c2,0.3,0.4-1.9,0.4-1.8c1,0.4,4.3-3,5.1-1.8c0.6,2.1-0.4,0,1.6,1.4
c-1.3,4.1-1.2,1.7,0.5,2.8c-1.4,1.1-5.5-0.9-5.8,0.4c0.3,0.4-0.1,4.3,0.1,5.2c0.8,0,0.9-0.7,0.7-1.3c-0.6-0.3,0.2-3,0.3-2.9
c1.1,2.7,4.6,3.3,9.2,4.7c0.4-0.3,0.4-2,0.8-2c0.1,0.1,0.2,0.1,0.3,0.2c-3.7,4-5.1,0.9-9,3c0.8,0.6,1.2,1.3,0.2,2.3
c-1-0.4,7.3,6.1,9.8,10.4c2.9-1.2-1.5-5.8,4.2-7.5c6.5,10.8,5.3,10,5.3,10l4.4,4.7c-2.6,10.3-1.2,25.8-0.9,30.2
c3.4-15.2,15.8-50.8,13.8-47.4c0,0-4.5-7.5-5.8-8.3c-9.4-12.1-16.5-27.8-6.5-52.5c-0.2,0.7-1.3,2.5-1.3,2.4c0,0.6-0.3,0.7-0.8,0.5
c0,0.1,0.6,2,0.9,1.5c-2,26.2-0.8,13.5,12.2,34.3c11.4-20.8,12.8-19.7,15.9-46.1c-1-0.2,4.4-6.2-9.1-13.6c-0.3-10.5,1.9-18,1.4-32.5
c1.2,5.4,1.8,16.4,3.6,21.7c17.6-25.3,36.2-24.6,53.9-36.7c14.3-9.8,5.3-9.7,8.4-20.7c4.4,3.9,4.4,6.1,7.9-1.3
c-0.1-0.2,0.7,10.5,1,12.2c2.2-0.9,9.8-13.4,10.4-13.4c-0.3,0.2,2.6-0.3,2.3-0.3c-0.5,0.4,1,8.1,0.5,7.8
c15.1-20.5,16.1-1.8,7.1-23.4c0.1,0.2-10.3,6.7-24.5-1.9c0.3,0.1-0.4-1.3-0.4-1.3s3.2-5.5,10-13.1c-0.1-0.1-2.2-1-1.5-1.9
c-5.5-8.2-4.9-27.2,5.7-46.3c-0.4,0,2.9-0.8,3.4-1.1c-0.4,0.8-0.5-2.3-0.3-4.2c-0.3-0.5,0.6,1.3,0.7-3.3c1.2,2.5,4.8-1.4,4.5,0.1
c1,2.3,0.9,1.9,2.2-0.4c-1.1,0.2,2.4-1.2,4.1-2.7c-2.3,4.3,8.9-14.4,10.2-18.7c-0.3-0.1-0.3-2.5-0.2-3.1c0.4-0.2,0.9-0.2,1.4-0.1
c2.2,2.7,1,9,0.5,8.9c2.1-1.3,6.7-0.9,8.8,0c-0.1,0.2-2-1.1-0.7-0.6c0.1-0.1-0.6-8.4-0.9-8.3c2.8,0.3,10,2.9,12.7,2.5
c3.4-8.5-1.2-3.3,3.5-3.6c4.9-8.9,8.8-8.6,13.2-13.3C1884.7,594.9,1887.9,589.6,1890.4,587.3z M1850.5,626.9 M1861.6,611.6
M1853.2,622.4 M1704.3,895.1 M1729.4,878 M1703.4,887.7 M1322.9,1274.3 M1327.9,1280.8 M1316.7,1289.3 M1315.1,1287.9 M1311.2,1284
M1327.1,1281.5 M1329.5,1279.1 M1299.3,1292.2 M1312.8,1290.8 M1295.7,1292.1 M1300.5,1292.1 M1342.2,1261.4 M1295.6,1292.1
c0.2,0,0.1,0-0.3-0.1L1295.6,1292.1z M1305.1,1291.1 M1339.5,1264.6 M1268.5,1274.6 M1592.1,1184 M1565.4,1274.6 M1565.2,1267
M1564.6,1267.1 M1563.1,1267.2 M1564.1,1266.2 M1563.4,1269 M1566.1,1275.6 M1565.7,1273.3 M1565.6,1271.2 M1428.6,1227.9
M1482.6,1248.8 M1565.2,1272 M1494.3,1244 M1551.2,1258.8 M1497.6,1241.3 M1558.8,1259 M1562.6,1270.5 M1562.7,1267.6
M1655.7,1391.1 M1654.3,1393.5 M1654.1,1393.7 M1564.8,1270.2 M1659.8,1392.5 M1665.9,1370 M1657.3,1390 M1652,1392.9 M1653.4,1394
M1666.9,1376.7 M1653,1393.6 M1642.1,1390.4 M1637.3,1388.5 M1638.4,1387.6 M1639.4,1388.5 M1642.9,1391.4 M1567,1278.8
M1643.6,1390.1 M1638.5,1389.1 M1632.9,1268.1 M1634.3,1280.5c0.8,1.6,0.2,0.5-0.4-0.6l0.1,0.2l-0.2-0.2L1634.3,1280.5z
M1574.2,1315 M1618.6,1370.7 M1614.9,1370.6 M1576,1322.8 M1599.9,1352.5 M1619.4,1370 M1564.4,1272.6 M1592.2,1346.8
M1590.2,1341.6 M1595.4,1344.7 M1624.6,1373 M1625.3,1372.5 M1621.1,1371.4 M322.2,911.9c-0.2,0.1-0.2,0.2-0.2,0.3c0.1-0.1,0,0,0,0
C322.3,911.8,322.2,912,322.2,911.9z M341.3,910.9 M340,909.2 M403.5,1067.4 M398.6,1064.8 M1382.9,1238.4"/>
<g>
<path class="st4" d="M1570.1,974.7c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1605.4,990.5,1589.6,974.7,1570.1,974.7z"/>
</g>
<g>
<defs>
<path id="SVGID_1_" d="M1570.6,986.5c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S1566.7,986.5,1570.6,986.5z M1598.6,1010.8
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V1010.8z M1589.2,1002.8
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1586.7,1002.8,1589.2,1002.8z M1554.5,1005.4c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1553.1,1008.8,1553.6,1007,1554.5,1005.4z M1551.9,1002.8
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1549.3,1002.8,1551.9,1002.8z M1570.6,1002.3c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1563.4,1003.2,1566.8,1002.3,1570.6,1002.3z"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<g class="st5">
<defs>
<rect id="SVGID_3_" x="1542.6" y="972.5" width="56" height="56"/>
</defs>
<clipPath id="SVGID_4_">
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
</clipPath>
<rect x="1530.9" y="974.8" class="st6" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M538,572.3c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3c1.3-1.6,32.8-39.7,32.8-58.3
C573.3,588.1,557.5,572.3,538,572.3z"/>
</g>
<g>
<defs>
<path id="SVGID_5_" d="M538.5,584.2c3.9,0,7,3.1,7,7s-3.1,7-7,7c-3.9,0-7-3.1-7-7S534.6,584.2,538.5,584.2z M566.5,608.5
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V608.5z M557.1,600.5
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S554.6,600.5,557.1,600.5z M522.4,603.1c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7H521v-3.8C521,606.5,521.5,604.7,522.4,603.1z M519.8,600.5
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S517.2,600.5,519.8,600.5z M538.5,599.9c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C531.3,600.8,534.7,599.9,538.5,599.9z"/>
</defs>
<clipPath id="SVGID_7_">
<use xlink:href="#SVGID_5_" style="overflow:visible;"/>
</clipPath>
<g class="st7">
<defs>
<rect id="SVGID_13_" x="510.5" y="570.2" width="56" height="56"/>
</defs>
<clipPath id="SVGID_14_">
<use xlink:href="#SVGID_13_" style="overflow:visible;"/>
</clipPath>
<rect x="498.8" y="572.5" class="st8" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M875.4,739.8c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C910.6,755.6,894.8,739.8,875.4,739.8z"/>
</g>
<g>
<defs>
<path id="SVGID_15_" d="M875.8,751.6c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S872,751.6,875.8,751.6z M903.8,775.9
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V775.9z M894.5,767.9
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S891.9,767.9,894.5,767.9z M859.8,770.5c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C858.3,773.9,858.9,772.1,859.8,770.5z M857.2,767.9
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S854.6,767.9,857.2,767.9z M875.8,767.4c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C868.7,768.3,872,767.4,875.8,767.4z"/>
</defs>
<clipPath id="SVGID_16_">
<use xlink:href="#SVGID_15_" style="overflow:visible;"/>
</clipPath>
<g class="st9">
<defs>
<rect id="SVGID_17_" x="847.8" y="737.6" width="56" height="56"/>
</defs>
<clipPath id="SVGID_18_">
<use xlink:href="#SVGID_17_" style="overflow:visible;"/>
</clipPath>
<rect x="836.2" y="739.9" class="st10" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M1670.1,674.8c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1705.3,690.6,1689.5,674.8,1670.1,674.8z"/>
</g>
<g>
<defs>
<path id="SVGID_19_" d="M1670.5,686.6c3.9,0,7,3.1,7,7c0,3.9-3.1,7-7,7s-7-3.1-7-7C1663.5,689.8,1666.7,686.6,1670.5,686.6z
M1698.5,711c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V711z
M1689.2,703c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1686.6,703,1689.2,703z M1654.5,705.5
c-0.9-0.1-1.7-0.2-2.6-0.2c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1653,708.9,1653.6,707.1,1654.5,705.5z
M1651.9,703c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1649.3,703,1651.9,703z M1670.5,702.4
c3.8,0,7.2,0.9,9.9,2.1c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1663.4,703.3,1666.7,702.4,1670.5,702.4z"/>
</defs>
<clipPath id="SVGID_20_">
<use xlink:href="#SVGID_19_" style="overflow:visible;"/>
</clipPath>
<g class="st11">
<defs>
<rect id="SVGID_21_" x="1642.5" y="672.6" width="56" height="56"/>
</defs>
<clipPath id="SVGID_22_">
<use xlink:href="#SVGID_21_" style="overflow:visible;"/>
</clipPath>
<rect x="1630.9" y="675" class="st12" width="79.3" height="51.3"/>
</g>
</g>
<path id="Hawaii_2_" class="st13" d="M877.9,1531.8 M916,1529.4c-5.7,1.7-13.9-6.9-23.8,2.2C907,1545.4,908.9,1531.6,916,1529.4z
M992,1567.7c-10.3-5.9-6.6-16.1-27.8-11c0.4,0.5,2.8,1.8,1.1,2.9C979,1571.9,979.2,1564.8,992,1567.7z M1071.9,1597.2
c-5.5-2.5-17-12.9-27.9-15.5c-0.1,0.9-1,0.6-1.5,0.5c0.1,1.3-0.7,0.8-1.4,0.8c-0.3,1.5-1,2.7-2.2,3.8
C1051,1601.9,1057.2,1593,1071.9,1597.2z M1038.7,1577.1c-9.3-0.1-16.6-2.1-26-3.9c0.3,1.2-1.8,4.4-2.6,4.8
C1020,1581.2,1033,1577,1038.7,1577.1z M1128,1642.9c-11.7-13.1-29.2-22.8-48.2-28.7C1061.9,1657.9,1094.4,1680,1128,1642.9z"/>
<path id="Land_2_" class="st14" d="M389.9,1612.2L389.9,1612.2L389.9,1612.2L389.9,1612.2l-0.1,0.1L389.9,1612.2l0,0.1l0,0l0.1,0
l0.1,0L389.9,1612.2L389.9,1612.2z M384.2,1613.3l-0.2,0.1l-0.1,0l0,0l0,0l0,0l0.2,0l0.2-0.1l0.1-0.1l0.1,0l0,0l-0.1,0L384.2,1613.3
z M400.3,1468.2l0.5-0.3l0,0l-0.5,0.1l0,0L400.3,1468.2l-0.1-0.1l-0.1,0l0,0l0,0l0.1,0L400.3,1468.2z M399.1,1471.1L399.1,1471.1
l0.5,0.3l0.1,0.1l0.1,0l0.4-0.1l0.1-0.1l0-0.2l0-0.1l-0.9-0.2l-0.1-0.1l-0.1-0.1l-0.1,0.1l-0.1,0.2l0.1,0.1l0.1,0l0,0.1
L399.1,1471.1L399.1,1471.1z M405.2,1487.8l1.1,1.1l0.3,0.5l0.2,0.7l-0.3-0.8l-0.4-0.6L405.2,1487.8z M401.6,1469.9l0.8,0l-0.1-0.3
l-0.5-0.6l-0.1-0.1l-0.1-0.1l-0.6-0.4l-0.2,0l-0.3,0.1l-0.3,0.1l-0.2,0.3l0,0.1l-0.1,0l-0.1,0h0l-0.1,0l0,0.1l0,0.1l0,0.1l-0.1,0.1
l-0.2,0.1l-0.1,0.1l0.1,0l0.1,0.3l0.1,0.1l1.3,0.1L401.6,1469.9z M395.4,1601.9L395.4,1601.9l0-0.1l-0.1,0L395.4,1601.9z
M429.7,1593.9L429.7,1593.9l-0.4,0.1l-0.2,0.1l0,0.1l0.1,0.1l0.1,0l0.2-0.1l0.1-0.1l0,0l-0.1,0l-0.1,0l0,0h-0.1l0-0.1L429.7,1593.9
z M409,1493l-0.1-0.2l0.1,0.4l0-0.1L409,1493z M418,1533.7l0.2,0.1l0.1,0.1l0.2,0.3l0.1,0.1l0.3,0.1l0.2,0l0.1,0l0,0.1l0.2-0.1
l0.2,0l0.2,0.1l0.4,0.3l0.1,0l0.1,0.1l0.1,0.2l0.2,0.1l0.1,0.2l0.1,0.2l0,0.2l0.1,0.1l0.2,0l0.3,0l0.2-0.1l0-0.2l-0.1-0.2l-0.1-0.2
l-0.1-0.1l-0.4,0l-0.2-0.2l0,0l0.2-0.2l0.4,0l0.3,0.1l0,0.2l0.5-0.1l0.1-0.1l0.1,0l0.2-0.1l0.1-0.1l-0.2-0.1l0.1-0.1l0.1,0.1
l0.1,0.1l0.1,0.1l0.3,0.1h0.1l0.6-0.2l0.1-0.1l0.1-0.1l0.1,0l0.1,0.1l0,0.1l0.1,0.1l0.6,0l0.2-0.1l0.1-0.1l0,0l0-0.1l0-0.1l0-0.1
l0,0l-0.1,0l0-0.1l0.1-0.1l0.1-0.1l0.1-0.1l-0.1,0l-0.2,0.1l-0.1,0l-0.1-0.1l-0.1-0.2l-0.1-0.1l0-0.1l0.1,0l0-0.1l0.1-0.1l-0.2-0.1
l-0.1-0.1l0-0.3l-0.1-0.1l-0.2,0l0.2-0.3l0.1-0.1l0.1-0.2l0-0.1l0,0l0,0l-0.1,0l0-0.1l0,0l0-0.1l0-0.1l-0.1,0l-0.1,0l-0.1-0.1l0-0.2
l0.1,0l0.3-0.3l-0.1-0.3l0-0.2l0-0.1l0.1,0l0.1-0.1l0.1-0.1l-0.1-0.1l0,0l0,0l0-0.1l-0.2-0.1l0.1-0.1l-0.1-0.1l-0.2,0l-0.1,0l0-0.1
l0-0.2l0-0.1l-0.1-0.1l-0.4-0.1l-0.1,0l-0.2,0.2l-0.4,0l-0.4-0.2l-0.1-0.1l0,0l0,0l0,0l0,0l-0.1-0.2l0-0.2l0-0.2l0-0.2l0.1-0.1
l0-0.1l-0.1-0.1l-0.1-0.1l0,0.3l0,0.2l0,0.2l-0.1,0.1l-0.1,0l-0.1-0.1l0.1-0.2l-0.8,0.1l-0.5,0.3l-0.1,0l0,0l0-0.1l0,0l-0.1-0.3
l-0.2-0.1l-0.6,0.2l-0.1,0.1l-0.1,0.2l-0.1,0.2l-0.1,0l-0.2-0.2l-0.2,0l-0.3,0.1l-0.2,0l-0.2,0.1l-0.1,0.1l-0.1,0.1l0,0.1l0,0.1
l0,0.1l-0.2,0.5l-0.3,0l-1.6-0.6l-0.5,0l-0.1,0l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.1,0.1l-0.1,0l-0.5,0.1l-0.1,0l-0.1-0.1l0,0.3
l0.4,0.7l0.1,0.2l0,0.1l0,0.1l-0.1,0.3l0,0l0.1,0.1l0.1,0.1l0.1,0l0.1-0.2l0,0l0,0.2l0.1,0.3l0.1,0.3l0.1,0.1l0.1,0.1l0.1,0.2
l0.1,0.1h0.1l0,0l0-0.1l0.1-0.1l0,0.1l0,0l0,0l0,0.1l0.1,0l0.1-0.1l0.1,0l0.1,0.1l0,0l-0.1,0.1l1.2,1.1l0.2,0.3L418,1533.7z
M432.6,1602.8L432.6,1602.8L432.6,1602.8L432.6,1602.8l-0.1-0.1L432.6,1602.8l-0.1-0.2l-0.1-0.2l-0.2,0l0,0l0,0l0,0l0-0.1l0,0l0,0
l0,0l0,0h0l0,0l0.2,0.3l0,0.1l0.2,0.2l0.1,0L432.6,1602.8L432.6,1602.8z M408.9,1603.9l-0.1-0.1l-0.3-0.1l-0.2,0l-0.1,0l-0.1,0.1
l0,0.2l0.1,0.1l0.1,0l0.3,0l0.2,0l0.1-0.1L408.9,1603.9L408.9,1603.9z M408.5,1605.5L408.5,1605.5l-0.2,0.1l-0.1,0l-0.1-0.1l-0.1,0
l-0.1,0.1l-0.1-0.1l-0.1,0.1l-0.2,0.4l-0.1,0l0.1-0.3l0-0.1l0,0l-0.1,0.1l-0.1,0l-0.1,0.1l0,0.2l-0.1-0.2l-0.1,0.1l0,0.3l0,0.1
l0.1,0.1l0.2,0.4l0.1,0.1l0-0.2l0-0.1l0.3,0l0.1,0l0-0.1l0-0.1l-0.1-0.2l0.1,0l0.2,0.1l0.1,0l0.1-0.1l0-0.1l0-0.1l-0.1-0.1l0-0.1
l0.1-0.1l0.1,0l0.1,0l0,0l0.1-0.1L408.5,1605.5L408.5,1605.5z M379,1610.6l-0.1,0l-0.4-0.2l-0.1,0l-0.1,0l-0.1,0.1l-0.1,0.1l0,0.1
l0,0.1l0.1,0.1l0.1,0.1l0.2,0.1l0.2,0l0.2-0.2L379,1610.6z M397.9,1440.7L397.9,1440.7l0.2,0l0.1-0.1l0.1-0.3l0-0.1l0-0.2l0-0.2
l0-0.1l0,0l0,0l-0.1,0.1l0,0.1l0,0.2l0,0.2l-0.2,0.4L397.9,1440.7z M408.5,1491.8l0.2,0.4l0.1,0.3l0.2,0.3l-0.2-0.6L408.5,1491.8z
M404,1484.9L404,1484.9L404,1484.9L404,1484.9z M403.9,1487l0.9,0.5l-1.2-0.7l-0.3-0.1l0.1,0.1L403.9,1487z M403.6,1484.7
L403.6,1484.7l0.3,0.2L403.6,1484.7z M411.3,1489.4l0.1,0.1l0.1,0.1l0.3,0.1l-0.3-0.2L411.3,1489.4z M415.4,1491.5L415.4,1491.5
l0-0.2l-1.2-0.6l-0.1-0.2l-0.1,0l-0.3,0l-0.8-0.3l0,0.1l0.4,0.1l0.2,0.1l0.1,0.2l-0.2,0.1l-0.2,0l-0.3-0.1l-0.1-0.1l-0.2-0.6
l-0.1-0.2l-0.2-0.1l-0.6-0.1l0.1,0l0,0.1l-0.2,0.1l-0.2,0l-0.2-0.1l-0.1-0.2l0-0.2l0-0.4l-0.1-0.2l-0.3-0.3l-0.7-0.1l-0.3-0.2l0.1,0
l0.2,0.1l0.1,0l-0.5-0.2l-0.2-0.2l-0.3-0.3l-0.5-0.2l-0.1,0l-0.1,0l0.1-0.1l0.1-0.2l0.1-0.2l0-0.2l0-0.1l0,0l0-0.1l0-0.1l0-0.1
l0-0.2l0-0.3l-0.1-0.1l-0.3-0.2l-0.1-0.1l-0.2-0.4l-0.1-0.1l-0.1,0l0,0l-0.1-0.2l-0.1-0.1l-0.1,0l-0.3,0l-0.1,0l-0.1-0.1l-0.1,0
l-0.2,0l-0.1,0l-0.6,0.2l-0.1,0l-0.1-0.2l-0.1,0.1l-0.4,0.2l-0.4,0.3l-0.4,0.1l-0.3,0.2l-0.3,0.1l-0.2-0.2l0,0l0,0l0,0l0,0l-0.6-0.1
l0,0l-0.1-0.1l-0.1,0l-0.2-0.1l0-0.1l0,0l0,0l0,0l-1-0.6l0,0.1l0.2,0l0.1,0l0.1,0.1l-0.2,0l-0.8-0.1l0,0l0-0.1l0-0.1l0,0l-0.1,0
l0-0.1l0.1-0.1l0.2-0.2l0.1,0l0.1,0.1l0.2,0.2l0.1,0l-0.2-0.2l-0.8-0.6l-0.1-0.1l0-0.2l0-0.2l0.1-0.2l0.1-0.1l0.1-0.1v-0.2l0-0.2
l-0.1-0.1l-0.1,0l0,0l-0.1-0.1l-0.1,0l-0.1,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l-0.1,0.2l-0.2,0.3l-0.1,0.2l0,0.1l-0.1,0.1l-0.1,0.1
l-0.1,0l-0.1,0l-0.1,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.1l-0.1,0.1l-0.1,0l-0.1,0.1l-0.1,0.1l0,0.1l-0.1,0.3l0,0.2l0,0.1l0,0.1l0,0.1
l0,0l0,0l0,0.1l0,0.2l0,0.1l0,0.2l0,0.2l0,0.1l0.2,0.7l0.1,0.2l0.1,0.1l0.2,0.1l0.1,0.1l0.1,0l0.1,0l0,0l0,0l0,0.1l0,0l0.6,0.3
l0.2,0l0.2-0.2l0.1,0l0.2,0l0.2-0.1l0.1-0.2l0,0l0.2-0.1l0.4,0l0.2-0.1l0.1-0.1l0.1-0.1l0.2,0l0,0v0v0l1.2,0.1l0.1,0l0.1,0.1l0,0.1
l0,0.2l0,0.1l0.1,0.1l0.5,0.2l0,0v0.1l0,0.1l0,0l0.3,0.1l0.7,0.7l0.1,0.3l0.3,0.5l0.3,0.3l0.1,0l0,0.1l0,0.1v0.1l0,0.1l0,0.1
l-0.1,0.3l0,0.1l-0.1,0.1h-0.1l-0.1,0l-0.1,0.1l0.1,0l0.2,0.2l0.1,0l0.1,0l0.2-0.1l0.1,0l0,0l0,0l0,0.1l0,0.1l0,0.1l0.1,0l0,0.1
l0,0.1l0.2,0.2l0-0.1l0.5,0.4l0.2,0.3l0.1,0.4l0.1,0.3l0,0.1l0.1,0.1l0,0l0,0.3l-0.1,0.2l-0.1,0.1l-0.1,0l0,0.1l0,0.1l0,0.1
l-0.1,0.2l0.1,0l0.1,0.1l0.2,0.2l0.1,0l0.1-0.1l0.2-0.2l0.1-0.1l0.2,0l0.1-0.1l-0.1-0.2l0-0.1l0.1-0.2l0.1-0.1l0.2-0.2l0-0.1
l0.1-0.1l0.1-0.1l0.3-0.1l0.2-0.2l0.1-0.1l0-0.1l0-0.1l0.4-0.2l0.4-0.1l0.8,0l-0.1,0.1l-0.2,0l-0.4,0l-0.1,0l-0.3,0.1l0.3-0.1
l1.3,0.2l0.1,0.1l0.1,0.1l0.2,0.2l0.5,0.2l0.2,0l0.2-0.2l0.4-0.4l0.1-0.3l-0.1-0.3l0.1-0.1L415.4,1491.5z M191.7,1417.6l0.3,0
l0.3-0.1l0.2,0h0.1l0.3,0.1l0.1-0.1l0.1-0.3l0-0.2l0-0.2l0-0.2l-0.2,0.1l-0.1,0.1l-0.2,0.1l-0.2,0l-0.1,0l-0.2-0.2l-0.1,0l-0.5,0
l-0.2,0l-0.2,0.1l-0.1,0.1l0.1,0.3l0.2,0.2L191.7,1417.6z M381.5,1609.6l-0.1,0h-0.2l-0.2,0.1l-0.1,0.3l-0.1,0.2l-0.1,0.2l0.1,0.1
l-0.1,0.1l0.2,0l0.2-0.2l0.2-0.2l0.2-0.1l0-0.2l0-0.1L381.5,1609.6L381.5,1609.6z M381,1611.6L381,1611.6L381,1611.6L381,1611.6
l-0.1-0.1l0-0.1l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.1-0.1l-0.2,0.1l-0.3-0.1l-0.1,0.1l-0.2,0.2l-0.1,0l-0.2,0l-0.3-0.1l-0.1,0
l-0.3,0.1l0,0.2l0,0.2l0.1,0.1l0,0.1l0,0l0.1,0l0.1,0l0.1,0l0.1,0l0.3-0.2l0.1,0l0.5,0.3l0.1,0.1l0.1,0.2l0.1,0.1l0.1-0.1l0-0.2
l0.1-0.1l0.1-0.1l0.1-0.1l-0.1-0.1l0.1-0.2L381,1611.6L381,1611.6L381,1611.6z M215.5,1436.8l0.2,0l0-0.2l-0.2-0.1l-0.2,0l-0.2,0.1
l0.1,0.1l0.2,0.1L215.5,1436.8z M492.9,1579.2L492.9,1579.2l0.5,0.2l0.1-0.1l0-0.2l0-0.1l-0.1-0.2l0,0l0,0.1l-0.2,0.2l-0.1,0l-0.1,0
l0,0l0,0L492.9,1579.2L492.9,1579.2L492.9,1579.2L492.9,1579.2L492.9,1579.2z M513.9,1546.3l-0.2,0l-0.1,0.1l-0.1,0.2l0,0.1
l-0.1,0.1l-0.2,0.3l0.1,0.2l0.2,0.1l0.2,0l0.1-0.1l0.1-0.2l0.3-0.6l-0.1-0.2L513.9,1546.3z M505.2,1535.1l-0.3,0.1l0,0l0,0.1
l0.1,0.1l0.1,0l0.1,0l0.4-0.3l-0.1-0.2l0-0.2l0.1-0.2l0.1-0.1l0.1,0l0.1,0l0.1,0l0.1-0.1l0-0.1l0.1-0.2l0.1-0.1l0.1,0l-0.1-0.1
l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.1,0l-0.1,0.3l0.1,0.2l0,0.2l0,0.1l0,0.2l0,0.1l-0.1,0.1l0,0.1l0,0.1l0,0.1l0,0.1L505.2,1535.1
L505.2,1535.1z M494.7,1569.3l-0.1-0.2l-0.1,0l0,0.1l0,0.1l0,0.1l0,0.1l0,0.2l0,0.2l0.1,0.3l0.2,0.2l0.1-0.2l0-0.4l0-0.2l0-0.1
V1569.3z M516.1,1545.5L516.1,1545.5l-0.2,0.1l-0.4,0.2l-0.1,0.1l-0.1,0.4h0.1l0.1-0.1l0.1-0.2l0.1-0.1l0,0l0.1,0l0,0l0.1-0.1l0,0
l0,0l0,0.1l0,0.1h0l0.1-0.1l0-0.2L516.1,1545.5L516.1,1545.5z M439.3,1595.4L439.3,1595.4L439.3,1595.4L439.3,1595.4l0,0.3l0.1,0.1
l0-0.1l-0.1-0.1L439.3,1595.4z M473.8,1580.4l-0.2-0.1l-0.1-0.1l-0.2-0.1l-0.7,0.1l-0.3-0.1l-0.1,0l-0.2,0.2l-0.1,0l0,0.1l-0.1,0.1
l-0.1,0.2l0,0.1l0.2-0.1l0.7,0l0.1-0.1l0.1,0l0.1,0.1l0.1,0l0,0l0.1-0.2l0,0l0.6,0l0.1,0l0.1,0.2l0.1,0l0.1-0.1l-0.1-0.2
L473.8,1580.4z M475.8,1586.7L475.8,1586.7l-0.1-0.2l-0.1-0.1l0,0.1l0,0.1l-0.1,0.1l-0.1,0l-0.1,0l-0.1,0l0,0.1l0.1,0.1l0.1,0.1
l0.1,0.1l0.1,0.1l0.1,0l0,0l0,0l0,0l0-0.1l0-0.1L475.8,1586.7L475.8,1586.7L475.8,1586.7L475.8,1586.7z M482.8,1588.4l-0.2,0.2
l-0.1,0.2l-0.1,0.2l-0.1,0.1l-0.3,0.3l0.1,0.1l0,0.1l0,0.1l0,0.1l0.1,0.2l0.1,0l0.3-0.1l0.3,0.1l0.1,0l0.1-0.1l0.1-0.2v-0.2
l-0.1-0.4l0-0.2l0.1-0.3l0-0.2l-0.2-0.2L482.8,1588.4z M478.9,1571L478.9,1571L478.9,1571l-0.1-0.1l0,0.1l0,0l0.1,0L478.9,1571
L478.9,1571L478.9,1571z M455.6,1600.4L455.6,1600.4l-0.1-0.2l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.1,0.1l0,0.1l0,0.1l0,0.1l0,0.1
l0,0.1l0,0.1l0.1,0.1l0.2,0l0.1-0.1l0.1-0.1l0-0.1L455.6,1600.4L455.6,1600.4z M468.4,1582.7L468.4,1582.7l0-0.1v0l-0.1-0.1l-0.2,0
l-0.3,0.2l0,0.1l0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1l0.1,0l0.1-0.1l0-0.1L468.4,1582.7L468.4,1582.7z M458,1588.4l-0.1,0l-0.2,0.2
l0,0.1l0.1,0l0.1,0.1l0.1,0.1l0.1,0.1l0.1-0.1l0-0.1l0-0.2L458,1588.4z M461.9,1588.2l-0.1-0.1l-0.1,0l-0.1-0.2l-0.1-0.1l-0.2-0.1
l-0.2,0.1l-0.3,0.2l0,0.2l-0.1,0.2l0,0.2l0.1,0.2l0.1,0.1l0.1,0l0.1-0.1l0-0.1l-0.1-0.1l-0.1,0l-0.1,0l0.2-0.4l0.3,0.1l0.7,0.4
l0-0.2L461.9,1588.2z M658.6,1385L658.6,1385l-0.2-0.1l0,0l0,0.1L658.6,1385l0.4,0.4l0.2,0l0-0.1l-0.2-0.1L658.6,1385z
M656.1,1383.5L656.1,1383.5L656.1,1383.5l-0.1,0.2l0.2,0l0.2,0l0.2,0l0.1-0.1l0-0.2l-0.1,0L656.1,1383.5z M659.7,1385L659.7,1385
l0,0.1l0.1,0l0,0.1l0.7-0.3l0-0.2l-0.4,0L659.7,1385z M638.1,1372l-0.2-0.1l-0.3,0.1l-0.2,0.2l-0.1,0.2l-0.1,0l0,0l-0.1,0.1l0.2,0
l0.7-0.5L638.1,1372z M637.6,1373.3l0.1,0l0.5-0.3l0.2,0l-0.1-0.1l-0.1,0l-0.2,0.1l-0.5,0.1l-0.1,0.1l0.2,0.1L637.6,1373.3z
M638.6,1372.3l0.3-0.3l0.2-0.1l0-0.1l0-0.2l0-0.1l0.4-0.2l-0.2,0l-0.4,0.2l-0.1,0l-0.1,0.3l-0.1,0.1l-0.1,0l-0.1,0.1l-0.1,0.1
l0,0.2L638.6,1372.3L638.6,1372.3z M663.9,1392.6l-0.4,0l-0.2,0.1l-0.1,0.2l0,0.1l0.1,0l0.2,0l0.1,0l0.9-0.5l0-0.1l0.1-0.1l0.2-0.1
l-0.3,0l-0.4,0.4L663.9,1392.6z M665.9,1390.9L665.9,1390.9l-0.1,0.2l0.4-0.1l0.8-0.7l0.1-0.1l0-0.1l-0.3-0.1l-0.2,0.1l-0.3,0.4
l0,0.1l0,0l0,0l0.1,0l0.1,0l0,0.1L665.9,1390.9z M675.7,1383.2L675.7,1383.2L675.7,1383.2l-0.1-0.1l-0.1,0.1l-0.1,0.7l-0.2,0.7
l0,0.2l0.1,0.1l0.1-0.2l0.1-0.4l0.2-0.3l0-0.1l-0.1-0.4L675.7,1383.2z M677.8,1379L677.8,1379l-0.2,0l-0.1,0.3l0,0.3l-0.1,0.2
l-0.1,0.2l-0.1,0.3l-0.1,0.3l0,0.3l0.1,0l0.1-0.1l0-0.1l0.1-0.1l0.2-0.1l0.1-0.1l0.1-0.4l0.2-0.2l0.1-0.2L677.8,1379L677.8,1379z
M640.3,1370.7l0.1-0.3l0-0.1l-0.1,0l-0.1,0l-0.1,0.1l0,0.1l-0.2,0.3l0,0.1l-0.1,0.2l0.5-0.2L640.3,1370.7z M672.5,1377.1l0-0.3
l-0.4,0.3l0-0.1l0,0l0,0l0,0l0,0l0-0.1l-0.1,0l0,0.2l-0.1,0.1l-0.2,0.1v0.1l0.1,0.1l0.1,0.1l0.1,0l0.2,0l0.3-0.1L672.5,1377.1z
M670.6,1381.9l0.1-0.1l0,0l0-0.1l-0.2,0l-0.4,0.4l-0.2,0.1l0,0l0,0.1l0.1,0.1l0,0.1l-0.1,0.2l0,0.1l0,0.1l0.2,0.2l0.2,0l0.1-0.2
l0-0.2l0-0.1l-0.1-0.2l0-0.2l0-0.1L670.6,1381.9z M671.7,1377.5l-0.2,0l-0.1,0.1l-0.4,0.9l0,0.3l0,0.2l0.1,0l0.7-0.4l0.5-0.6l0,0
l0.1-0.1l-0.3-0.2L671.7,1377.5z M609.9,1392.6L609.9,1392.6l-0.5,0.2l0,0.1l0,0.2l0.1,0.2l0.1,0l0.1,0l0.1,0l0-0.1l-0.2-0.1
l0.1-0.1l0.3,0l0-0.1l0,0l0-0.1L609.9,1392.6L609.9,1392.6L609.9,1392.6z M599.3,1325.8l-0.3,1.3l0,0.6l0,0l0,0.1l0,0l0,0l0.8,0
l0.2-0.3l0.1,0l0.2,0l0,0l0.1-0.1l0.1-0.1l0.2,0l0,0.1l-0.1,0l0,0.1l0,0.1l0.4-0.2l0.4,0.1l0.2,0l0.1-0.1l0.5-1.5l0.1-0.1l-0.1,0
l-0.2,0l0.2-1.3l0-0.2l0-0.1l0.1-0.1l0-0.1l-0.1-0.1l0-0.1l-0.1-0.1l0,0l0-0.1l0-0.1l0-0.1l0-0.1l0-0.1l-0.1-0.1l0-0.1l0.1-0.1
l0-0.1l0,0l0,0l0,0l0,0l0-0.1l0-0.4l0-0.2l0.1-0.3l0-0.1l-0.1-0.3l0-0.1l0-0.1l0-0.1l0-0.1l-0.1-0.1l0-0.2l0-0.1l0-0.2l-0.1-0.3
l0-0.1l0-0.1l-0.3-0.1l-0.2,0l-0.1,0.1l-0.1,0l-0.3,0.4l-0.1,0.4l0.1,0.1l0,0l-0.2,0.5l-0.1,0l-0.1,0.1l0,0.2l0.1,0.3l0,0.1l0,0.1
l-0.1,0.1l-0.3,0.1l-0.5,1l-0.1,0.3l0,0.3l0.1,0.3l-0.1,0.1l-0.1,0.2l0,0.4l0,0.4l0,0.1L599.3,1325.8z M651.2,1367l0.6-0.4l0-0.1
l0-0.1l-0.2,0l-0.3,0.1l-0.4,0.2l0,0.1l0,0.1l0,0.1l0,0L651.2,1367z M596.1,1393.1L596.1,1393.1l0-0.2l-0.2-0.1l-0.2-0.1l-0.2-0.1
l-0.1,0l0,0.2l0.1,0.9l0,0.3l0.2-0.4l0.1-0.1l0,0l0-0.1l0,0l0-0.2l0.1,0l0.2,0.1l0.1,0l0.1,0l0-0.1l-0.1-0.2L596.1,1393.1
L596.1,1393.1z M654.6,1364.3l1.4-1.2l-0.7,0.5l-0.3,0.1l-0.7,0.1l-0.7,0.3l-0.1,0.1l0,0.1l0.1,0.1L654.6,1364.3z M635.4,1373.1
L635.4,1373.1l-0.2,0.4l0.2,0.2l0.2,0l0.7-0.6l0.4-0.1l0-0.1l-0.2-0.1l-0.5,0.2L635.4,1373.1z M678,1377.4L678,1377.4l0-0.3l0-0.1
l0-0.1l-0.2,0.3l0,1l-0.1,0.4l0.3,0.1l0.1-0.2l0.1-0.5l0-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1l0-0.1L678,1377.4z M597.4,1375L597.4,1375
l0,0.2l0.1,0l0.1,0l0.1-0.1L597.4,1375L597.4,1375z M726.5,1308.8L726.5,1308.8L726.5,1308.8l0.1,0.1l0.1,0l0.1,0.1l0.1,0l0.1,0
l0-0.1l0-0.2l0.1-0.1l0-0.1l-0.1-0.2l0-0.1l0,0l-0.1,0l-0.1,0l0,0l0,0l0,0.1l-0.1-0.1l0-0.1l0-0.1l0-0.1l-0.2-0.1l-0.1,0l-0.1,0
l-0.1,0l-0.1,0l-0.2-0.1l-0.1,0l-0.3,0l-0.2,0l-0.1,0.1l0,0.4l0,0.1l0.1,0.1l0.1,0.1l0.5,0.4l-0.1-0.2l-0.1-0.2l-0.3-0.4l-0.1-0.2
l0.1,0l0.2,0.1l0.1,0.2l0.1,0l0.1-0.1l0.1,0.3l0,0.1l0.1,0.1l0.1,0l0.1-0.1l0.1,0l0,0.1l0.1,0.1l0.1,0.1l0.1,0l0-0.1l-0.1-0.1
L726.5,1308.8L726.5,1308.8L726.5,1308.8z M725.4,1306.7L725.4,1306.7l0.1,0.2l0,0.1l0,0.5l0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1l0.1-0.1
l0.3,0l0.1,0l0.1-0.1l0.1,0l0.1,0l0.1,0.1l0.1,0l0.4,0l0.1,0l-0.2-0.2l0,0l0.1,0l0-0.1l-0.1-0.2l-0.2-0.1l-0.1-0.1l-0.1-0.1
l-0.1-0.1l0-0.2l0-0.1l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l0,0l0,0.1l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l0,0l0,0l-0.1,0l-0.1-0.1v0.1
l0.1,0.2l0,0.1l0.2,0l0.1,0.1l0,0.1l0,0.1l0,0l0,0l0,0l0,0l-0.1,0l-0.2,0l-0.1,0l0,0l0,0l0,0l0,0L725.4,1306.7z M728.6,1308.5
l0.2,0.1l0.2,0.1l0.2,0l0.1-0.1l0-0.2l0.2,0.1l0.1,0l0.1-0.1l-0.1-0.1l-0.1,0l-0.3-0.1l-0.1-0.1l-0.1,0h-0.1l-0.1,0l0,0l-0.1,0l0,0
l0,0l0,0l0-0.1l-0.1,0.1l0,0.1l0.1,0.1l0,0.1l-0.1,0l-0.1,0l-0.1-0.1l-0.1,0l0.1,0.2L728.6,1308.5z M693.4,1360l-0.2-0.1l-0.1,0
l-0.1,0l-0.2,0l-0.4-0.1l-0.3,0.1l-0.2,0l-0.7,0.5l-0.3,0.4l-0.1,0.5l0.1-0.1l0.2,0l0.4,0.1l0.7,0.1l0.2,0l0.3-0.1l0.2,0l0.3-0.1
l0.3,0l0.4-0.4l0.1-0.3l-0.1-0.4L693.4,1360z M679.5,1378.7L679.5,1378.7L679.5,1378.7l1,0.2l0.2,0l0.1-0.1l-0.1-0.2l-0.2-0.2
l-0.2-0.1l-0.1,0l-0.1,0.1l-0.1,0l-0.1-0.1l-0.1-0.1l-0.1,0l-0.2,0l-0.1,0.1l0,0.1l0,0.1l0.1,0l0.1,0l0.1,0.1l0.1,0.1l0,0.1l-0.1,0
H679.5z M602.1,1297.9l0.3,0l-0.1,0.1l0,0.1l0,0.1l0,0l0.1,0.1l0.1,0.1l0,0.1l0,0.1l0,0.1l0.1,0l0.1,0l0.1,0l0,0l0.3,0l0.1,0l0,0.1
l-0.1,0.3l0.1,0.2l0.1,0l0.1,0.1l0.1,0.2l0.1,0.1l0.2,0.1l0.3-0.2l0.1,0l0.1,0l0.1,0.2l0.1,0.1l0.1,0l0.5-0.1l0.1-0.1l0.1-0.2
l0.1-0.1l0.2,0l0.4,0.3l0.2,0.2l0.1,0l0.1,0l1.1-0.2l0.3-0.2l0.1-0.4l0.8-1.3l0-0.1h-6.8l0,0L602.1,1297.9z M593.4,1328.3
L593.4,1328.3L593.4,1328.3l-0.1,0.2l-0.2,0.5l0,0.2l0.2,0.1l0.3,0l0.2-0.1l0.1-0.1l0.1-0.3l0-0.6l0-0.2l-0.1-0.1l-0.1-0.4l0-0.1
l-0.1-0.1l-0.1-0.1l0-0.1l0-0.1l-0.1-0.2l-0.1,0l-0.1,0.1l-0.1,0.1l0,0.2l0,0.1l0.1,0.1l0.2,0.1l0.1,0.1l0.1,0.3l0,0.1l0.1,0.1
l0,0.1L593.4,1328.3L593.4,1328.3z M257.1,1472.6l-0.1-0.1l-0.7-0.1l-0.5,0l-0.5,0.1l-0.3,0.1l-0.3,0l-2.1-0.5l-1.1-0.7l-0.2-0.1
l-0.2,0l-0.2,0.1l0.2,0l0.2,0.1l0.3,0.2l0.1,0.1l0.1,0.2l0.1,0.1l0.2,0.1l0.1,0l0,0.1l-0.7,0.1l-0.4,0.1l-0.4,0.3l-0.1,0.1l-0.2,0.3
l-0.1,0.2l-0.1,0.1l-0.5,0.3l-0.2,0.1l-0.5,0.2l-0.2,0.1l-0.5,0.3l-0.5,0.2l-0.4,0l-0.7-0.1l0,0.1l-0.1,0.3l-0.1,0.4l0,0.3l0.1,0.1
l0-0.1l0.3-0.1l1-0.3l1.6-0.1l0.4-0.1l0.1,0l0.2,0.1l0.1,0l0.1,0l0.3-0.1l0.3,0l0.5,0.1l0.3-0.1l0.3-0.1l0.1,0l0.2,0l0.1,0l0.1,0
l0,0.1l0,0.1l0,0.1l0,0l0.1,0l0.1,0l0.1,0l0.1,0l0.1,0l0.2,0.1l0.4,0l0.2,0.1l0.8,0.5l0.3,0l0.3-0.1l0.1-0.1l0.1-0.1l0-0.1l0.1-0.1
l0.2-0.3l0.1-0.1l0.3-0.2l0.2-0.1l0.1-0.2l0.1-0.3l0-0.1l-0.1-0.3l0-0.1l0.3-0.5l0-0.1l0.1-0.1l0,0l0,0l-0.1,0l0,0l0.1-0.1
L257.1,1472.6z M420.2,1462.4l0.2-0.2l0.2-0.2l0.1-0.2l-0.2-0.2l-0.1,0l-0.1,0.1l-0.1,0.2l-0.1,0.2l0,0.2l0.1,0.1L420.2,1462.4z
M458.5,1416.5l0.1-0.1l0.7-0.7l0.8-0.5l-0.6,0.3l-0.8,0.7l-0.1,0.1l-0.3,0.6l0.1-0.1L458.5,1416.5z M461.5,1414.5l1.1,0.3l-1.3-0.5
l-0.2,0.1l-0.1,0.2l0,0.1l0.3-0.3L461.5,1414.5z M457.5,1418l0.1-0.3l0.3-0.4l0.2-0.2l0,0l-0.2,0.1l-0.2,0.2l-0.2,0.2l-0.1,0.2
l-0.1,0.3l-0.4,0.5l0.3-0.3L457.5,1418z M454.9,1422.7l0-0.3l0.1-0.4l0.1-0.3l0.1-0.1l0,0l-0.1,0l-0.1,0.2l-0.1,0.5l-0.1,0.7l0,0.1
l0,0.3l0,0.3l0.1-0.9L454.9,1422.7z M435.3,1459.8l0.1-0.1l0.3-0.1l0-0.1l-0.1,0l-0.2,0l-0.2,0.1l-0.1,0.1l-0.1,0.1l0,0.1
L435.3,1459.8z M513.2,1413.4l0.8,0.6l0.2,0l0.1-0.1l0.2,0l0.4,0.2l0,0l-0.3-0.3l-0.1,0l-0.1,0l-0.1,0.1l-0.1,0l-1-0.6l-0.2,0
l-0.1,0.1l0,0l0.2,0L513.2,1413.4z M455.8,1420.1l0.2-0.3l0.7-0.7l0.2-0.4l-0.8,0.8l-0.2,0.2L455.8,1420.1l-0.5,1.1l0.2-0.3
L455.8,1420.1z M436.2,1459.4l0.3-0.2l0.1,0l0.3-0.2l0,0l-0.3,0.1l-0.6,0.3l-0.1,0.1l-0.1,0.1l0,0.1l0.2,0L436.2,1459.4z
M577.1,1412.7l0.3,0.1l0.1,0l0.1-0.1l-0.2,0l0-0.1l0.4-0.2l0-0.2l-0.2,0l0,0l0,0l0,0l0,0l-0.1,0l-0.1,0l-0.2,0.4l0,0.1l0,0
L577.1,1412.7L577.1,1412.7L577.1,1412.7z M572.3,1417l0.2,0.1l0.2,0.2l0-0.1l0-0.2l0-0.2l-0.1-0.1l-0.2,0.1l-0.1,0l0-0.1l0-0.2
l-0.2-0.2l-0.2,0l-0.3,0.2l-0.3-0.1l-0.1,0l0,0.3L572.3,1417z M570.7,1414.6l0.1,0l0.1,0l0.1-0.1l0.1-0.2l0-0.6l0-0.1l-0.3,0.1
l-0.1,0.1l-0.1,0.2l-0.1,0.4l0,0.2L570.7,1414.6z M555.4,1418.6L555.4,1418.6l0.1-0.1l0-0.1l0.1,0l0.1,0.1l0.1,0.1l0.1,0.1l0.2,0.1
l0.2,0l0.1,0l0.1-0.1l0.1-0.4l0.1-0.1l0.2,0l0.4,0l0.1-0.2l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.3,0l-0.3-0.2l-0.1,0l-0.2,0.1l-0.2,0.2
l-0.3,0.6l0,0.2L555.4,1418.6L555.4,1418.6z M544.6,1417.9l0.2,0.1l0.2,0l0.3,0.2l0.3,0l0.6,0.4l0.3,0.1l0.1,0.1l-0.1-0.1l-0.1-0.1
l-0.1-0.1l-0.5-0.4l-1.3-0.5l-0.4,0l0.2,0.1L544.6,1417.9z M432.3,1460.9l0.5-0.2l0.3-0.2l0.2-0.1l0.1-0.1l0.1,0l0.4-0.1l0.4-0.2
l0.2,0l0.1,0l0.1-0.1l0.2-0.1l-0.5,0l-0.2,0.1l-2.4,1l-0.2,0.1l0,0.1l0.4-0.1L432.3,1460.9z M399.9,1435.5L399.9,1435.5l0,0.2
l0.1,0.1l0.1,0l0-0.1l0-0.1L399.9,1435.5L399.9,1435.5z M426.5,1464l0.1,0l0.3-0.3l-0.1,0l0-0.1l0.1-0.1l0.4-0.1l0.1-0.1l0,0
l-0.6,0.2l-0.2,0.1l-0.1,0.1l0,0.1l0,0.1L426.5,1464L426.5,1464z M429.4,1462.4l0.3-0.2l0.2,0l0,0l0,0l0.1-0.1l0.5-0.2l0.2-0.1
l0.7-0.4l0.2-0.1l0,0l-0.1,0l-0.1,0L429.4,1462.4l-0.1,0L429.4,1462.4L429.4,1462.4z M425.9,1463.9L425.9,1463.9l0.2-0.1l0.1-0.1
l0.1-0.1l0.1,0l0.1-0.1l0,0l-0.1,0l-0.1,0l-0.2,0.1l-0.1,0.1L425.9,1463.9L425.9,1463.9z M423,1472.8l0.1-0.1l0-0.1l0-0.1l-0.1,0
l-0.1,0l-0.1,0.1l0.1,0.1L423,1472.8z M420.7,1462.7L420.7,1462.7l0.1-0.1l0-0.2l0-0.1l-0.1,0l-0.1,0l-0.1,0.1L420.7,1462.7
L420.7,1462.7z M598,1299.6l0.6,0.2l0.3,0l0.2,0l0.2,0.2l-0.3,0l0,0.1l0.1,0l0.4-0.2l0.7,0.1l0.4-0.2l0.7-1.3l0-0.6l0-0.1l-0.2-0.1
l-0.2,0h-3.5l0.1,0.3l0,0.1l0,0.1l-0.2,0.2l0,0.2l0,0.1l-0.1,0l-0.2,0l-0.1,0l0,0.1l0,0.1l1.2,0.5L598,1299.6z M475.1,1584.8l0-0.1
l0-0.1l0-0.1l0,0l-0.1,0.1l-0.1,0.1L475.1,1584.8l-0.1,0l0,0l0,0.1l0,0.1l0,0.2l0.1,0.1l0.1,0l0.1-0.2l0-0.1l-0.1-0.1L475.1,1584.8z
M509.2,1544.1l-0.1,0L509.2,1544.1L509.2,1544.1z M586.4,1413.6L586.4,1413.6L586.4,1413.6L586.4,1413.6z M721.8,1344.4l0.1,0
l0.1,0l0.1,0.2l0.1,0.1l0.1,0.1l0.2,0.1l0.1,0l0.1-0.4l-0.1-0.5l0-0.1l0-0.1l-0.1-0.1l-0.3-0.3l-0.2,0l0,0.1l0,0.2l0.1,0.2l0,0.2
l-0.2,0.2L721.8,1344.4z M681.2,1378.3l0.3,0.3l0.3,0.1l1.1,0l0.1-0.1l0-0.2l-0.1-0.2l-0.2-0.1l-0.1,0.1l-0.1-0.3l0,0l-0.1,0l-0.2,0
l-0.2,0l0,0v0l0,0.1l0,0l-0.2,0.1l-0.1,0l0.1,0l0.2,0.1l-0.6,0.1L681.2,1378.3z M683,1379.6l-0.2,0.2l-0.2,0.4l0.3,0.1l0.2-0.1
l0.2-0.4l0,0l0,0l0,0l0,0L683,1379.6z M437.9,1458.5L437.9,1458.5l0.1-0.1l0.1,0l0.4-0.2l0.2-0.1l0,0l0,0l-1,0.3l-0.1,0.1l0,0.1
l0.1,0L437.9,1458.5z M687.1,1380l-0.2,0l0,0.2l0.1,0.1l0,0l0,0.1l0,0.1l0,0l0,0l0.2,0.2l0.3,0.1l0.2,0.1l0.2-0.1l0.1-0.4l0-0.1
l-0.1-0.1l-0.1-0.1l-0.1-0.1l0-0.1l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.1,0v0.1l0,0.1l0,0.1l-0.1,0.1L687.1,1380z M685.3,1376.6
L685.3,1376.6l0.2-0.2l0.3-0.1l0.1-0.1l0-0.2l-0.1-0.3l-0.2-0.3l-0.2-0.2l-0.1,0.1l-0.1,0.4l0,0.2l0,0.1l0,0.1l0.1,0.1l0.1,0.1
l0.1,0.1l0,0.1L685.3,1376.6z M439.3,1458l0.2-0.1l-0.4,0.1L439.3,1458L439.3,1458z M689.3,1380.5L689.3,1380.5l-0.1,0l0,0.1
l0.2,0.1l0.3,0l0.2-0.1l0.1-0.1l0,0l0,0l0,0l0,0l0.5,0.2l0.1,0l0-0.1l-0.1-0.1l-0.2-0.1l-0.1,0l-0.1-0.1l0-0.2l-0.1-0.2l-0.1-0.2
l-0.2-0.3l-0.1-0.1l-0.2-0.1l-0.1,0l0,0.1l-0.1,0.1l0.1,0l0,0.2l-0.2,0.3l0,0.3l0.3,0l0,0.1l0,0.1l0,0l0,0l-0.3,0L689.3,1380.5z
M688.8,1378.9L688.8,1378.9l0.1,0l0.1,0l0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1,0l-0.1,0l-0.4-0.4l-0.2-0.1h-0.1
l-0.3,0.1l0,0.1l0,0.1l0.1,0.2l0.1,0.2l0.1,0.1l0.1,0.1l0.1,0.1l0.1,0h0.2l0,0.1l-0.1,0.1l0,0.1l0.1,0.2l0.1,0.1l0.1,0l0.1,0.1
l0.1,0.1l0.2,0.1l0.1-0.1l0-0.2l-0.1-0.2l0,0l0,0l-0.1-0.1l-0.1,0l-0.1,0l-0.1-0.1l0-0.1L688.8,1378.9z M436.6,1498.4L436.6,1498.4
l-0.1,0.1l0,0.1l0.1,0.1l0.1,0l0.1,0l0-0.1L436.6,1498.4L436.6,1498.4z M448.1,1493.4L448.1,1493.4l-0.1-0.1l-0.1,0l-0.2,0l-0.1,0.1
l-0.3,0.4l0.2,0.2l0.1,0.1l0.1,0.1l0.1,0l0.6,0.1l0.6-0.1l0,0.1l0,0.1l0.1,0.1l0.1-0.1v-0.1l-0.1-0.3h0l0,0l0,0l0,0l0,0l0,0l0,0
l0-0.1l-0.2-0.3l0-0.1l-0.2-0.1l-0.1,0l0,0l-0.1,0.1l-0.1,0.1l-0.1,0l-0.4-0.1l-0.1,0l0,0.1L448.1,1493.4L448.1,1493.4z
M436.6,1497.9l-0.1,0.1l-0.1,0.1l0,0.1l0.1,0.1l0.2-0.1l0,0l0-0.1l0-0.1L436.6,1497.9L436.6,1497.9z M438.9,1458.1l-0.2,0.1l0,0
l0.3-0.1L438.9,1458.1z M439.5,1457.9L439.5,1457.9L439.5,1457.9L439.5,1457.9z M440.2,1457.8l0.2-0.1l0.1,0l0.3,0l0.7-0.2l0.2,0
l0.1,0l0,0l0,0l0-0.1l0-0.1l0.1,0l0.2,0l0.1,0l0,0l0,0l0.1,0l0.1,0l0-0.1l-0.1,0l-2.9,0.8l0.3,0L440.2,1457.8z M693.5,1384.6
L693.5,1384.6L693.5,1384.6l0-0.1l0-0.3l-0.1,0.1l-0.1,0l-0.4-0.1l-0.1,0l-0.1-0.1l-0.1-0.1l-0.2,0l-0.1-0.1l0.1,0.1l0.2,0.2
l0.2,0.2l0.1,0.1l0.5,0.3l0.2,0.2l0.1,0l0.1-0.1l0-0.1l0,0L693.5,1384.6L693.5,1384.6L693.5,1384.6L693.5,1384.6z M434.3,1503.4
l0-0.3l-0.1,0l0,0.1l0,0.1L434.3,1503.4L434.3,1503.4z M693.9,1381.8l0.1,0l0.5-0.4l0.1-0.2l0-0.2l-0.1,0l-0.3,0.1l-1-0.2l-0.2-0.1
h-0.2l0,0.1l0.1,0.2l0.2,0.2l0.6,0.4L693.9,1381.8z M693.8,1384.1l0.2,0.3l0.1,0.3l0.1,0.5l0.1,0l0-0.2l0-0.3l0-0.2l-0.1-0.2
l-0.3-0.6l-0.1-0.2l-0.2-0.1l0,0.2l0.1,0.4L693.8,1384.1z M434.1,1503.2L434.1,1503.2L434.1,1503.2l-0.2-0.1l-0.1,0.1l0,0l0,0.1
l0,0.1l0.1,0.1l0.1-0.1l0-0.1l0-0.1L434.1,1503.2z M431.7,1590.5L431.7,1590.5l0.2-0.2l0-0.1l0-0.1l-0.1-0.1l-0.2,0l-0.2,0.1
l-0.1,0.1l0.1,0.1L431.7,1590.5L431.7,1590.5z M496.9,1546.8L496.9,1546.8l-0.2,0.2l-0.1,0l0,0l-0.1,0.1l-0.1,0.1l0,0.1l0,0.2l0,0
l0.1,0l0.1,0.1l0.2,0.1l0.6-0.2l0.2-0.1l0.1-0.2l0-0.2l-0.2-0.4L496.9,1546.8z M502.1,1537.7l-0.1-0.2l-0.1-0.1l-0.1,0l-0.1,0.1
l0,0.1l0,0.1l0,0.1l0.1,0.2l0.2,0.3l0.1,0l0-0.3l0-0.2L502.1,1537.7z M432.7,1592.3L432.7,1592.3l0.3-0.3l0.1-0.1l0.1-0.1l0.1-0.1
l0,0l0,0l-0.1,0L432.7,1592.3L432.7,1592.3L432.7,1592.3L432.7,1592.3L432.7,1592.3z M447.7,1586.3l-0.2,0l-0.1,0l-0.1,0l-0.2,0.1
L447.7,1586.3l0.4,0.1l0-0.1l0-0.1l0-0.1l0-0.2l-0.1,0l-0.2,0.3L447.7,1586.3z M434.8,1590.8L434.8,1590.8l-0.2-0.1l-0.5,0.2
l-0.5,0.3l-0.1,0.2l0,0.1l0.1-0.2L434.8,1590.8L434.8,1590.8z M447.4,1584.9L447.4,1584.9L447.4,1584.9l0.2,0l0.1,0l0-0.1l-0.1,0
L447.4,1584.9L447.4,1584.9L447.4,1584.9L447.4,1584.9z M515.3,1525.5l0.2-0.2l0.1-0.2l0-0.1l-0.1,0l-0.1,0l0,0.1l-0.1,0.2l-0.1,0.2
l-0.1,0.1l0.1,0L515.3,1525.5z M721.6,1325.7L721.6,1325.7L721.6,1325.7L721.6,1325.7z M448.1,1585L448.1,1585L448.1,1585
L448.1,1585l-0.3-0.1l0,0.1l0.1,0l0.1,0.1L448.1,1585z M427.1,1508.8L427.1,1508.8l-0.1,0l-0.1,0.1l-0.1,0.2l0,0.2l0.1,0.1l0,0l0,0
h0l0,0l0,0l0,0l0,0l0,0.1l0,0l0-0.1l0,0l-0.1-0.1l-0.1-0.1l0.1-0.2L427.1,1508.8z M449.6,1554.5l0.2,0.1l0.6,0l0.2,0l0.2-0.1
l0.1-0.2l0.2-0.4l0.2-0.3l0.1-0.1l0.1-0.1l0.2-0.5l0.5-0.7l0.1-0.3l0,0l0,0l0-0.1l0-0.1l-1.4,0.7l-0.5,0.1l-0.1,0l-0.4,0.2l-0.1,0.1
l-0.1,0.1l-0.2,0.5l-0.1,0.1l-0.1,0l-0.2-0.2l0.1,0.3l0.1,0.3l0,0.2l-0.1,0.1l0,0.1l0,0.1l0,0.1L449.6,1554.5z M433.5,1503.3l-0.1,0
l0.1,0.1L433.5,1503.3L433.5,1503.3z M431.1,1480.3l0.1-0.2l0-0.1l-0.1-0.1l-0.1,0l0,0.1L431.1,1480.3L431.1,1480.3z M433.7,1504
L433.7,1504l0,0.1l0.1,0l0.1,0l0.1-0.1l0-0.1l-0.1,0L433.7,1504z M434,1504L434,1504l-0.1,0.1l0,0.1l0.1,0.1l0.1,0l0.1,0l0-0.1
L434,1504L434,1504L434,1504z M426.5,1510.8l0,0.1l0,0.2l0.1,0l0-0.1l0-0.3l0.1-0.3l0.2-0.5l0-0.1l-0.1,0l-0.1,0.2L426.5,1510.8z
M455.4,1551.9l0.1,0.1l0-0.1v-0.1l-0.1-0.1l-0.1,0l0,0l0-0.1l0,0l-0.1,0l-0.1,0l0,0.1l0.1,0.1L455.4,1551.9L455.4,1551.9z
M454.7,1554l0,0.2l0.1,0l0.1-0.1l0-0.1l0-0.1l-0.1-0.1l0,0l0-0.1l0-0.2l0-0.2l-0.1-0.1l-0.1,0l-0.1,0.2l0,0.1l0,0.1l0,0.1l0.1,0.1
L454.7,1554z M453.9,1553.6L453.9,1553.6l0.2-0.2l0.1-0.1l0-0.1l0-0.1l0-0.1l0-0.1l-0.1-0.1l-0.1,0l-0.1,0.2l-0.1,0.4L453.9,1553.6
L453.9,1553.6L453.9,1553.6z M458.7,1577.8l0.1-0.1l0-0.1L458.7,1577.8l-0.1,0l-0.1,0.1l0,0l0.1-0.1L458.7,1577.8z M456.6,1554.8
L456.6,1554.8L456.6,1554.8l-0.1-0.2l-0.1,0l0-0.1l0,0.1l0,0.1l0.1,0.2L456.6,1554.8z M458.4,1577.9l-0.1,0l-0.2,0.1l-0.1,0.1
l0.1-0.1L458.4,1577.9L458.4,1577.9z M638.2,1589.3L638.2,1589.3L638.2,1589.3l-0.1-0.1l0,0l0,0l-0.1,0l0,0l0,0l0,0l0,0l0,0l0,0l0,0
l0.1,0l0,0l0-0.1l0,0V1589.3L638.2,1589.3L638.2,1589.3z"/>
<path id="Alaska_2_" class="st13" d="M277.2,1642.8 M284.6,1649.1 M282,1644.6 M282.4,1644.9 M280.2,1645 M281.5,1638.8
M276.8,1647.3 M274.8,1648.8 M300.9,1647 M640.9,1503.2 M641.5,1503.5 M642.2,1503.7 M644.6,1504.6 M646.8,1505.5 M648,1505.5
c-0.1,0-0.5-0.1-0.7-0.2C647.7,1505.6,648.1,1506,648,1505.5z M651.2,1505.5 M650.1,1505.4 M505.3,1541.1 M507.2,1546.6
M542.4,1577.6 M510.5,1590.5 M510,1590.7 M493.9,1604.2 M492.6,1604.1 M472.1,1448.5 M471.6,1448.1 M470.7,1448.2 M410.6,1636.6
M402,1656.1 M393,1658.3 M469.5,1626.4 M319.9,1647.4 M319.5,1651.9 M312.1,1649.8 M471.5,1449.6 M471,1449.7 M459.8,1462.6
M655.6,1509.9 M564.4,1593.2 M493.2,1606.7 M472.8,1615.4 M469.4,1618.2 M464.8,1621.2 M315.4,1651.7 M590.2,1526.1 M493.8,1429.3
M504.5,1294.3c0.7-4.8,0,0-0.3,2.1C504.2,1295.7,504.3,1295,504.5,1294.3z M505.9,1289.5c2.7-5.6,0.2-0.1-0.8,2.1
C505.4,1290.9,505.7,1290.2,505.9,1289.5z M508.6,1285.4 M510.2,1282.5c0.7-1.1,1.5-1.9,2.5-2.5
C511.3,1281,509.4,1282.3,510.2,1282.5z M515,1278.6l1.8,0.6C515.8,1279.1,512.6,1278.7,515,1278.6z M596.4,1276.5 M645.9,1285.3
M780.8,1571.8 M794.3,1591.7 M789.6,1584.8 M647.7,1503.8 M570.7,1531.2 M583.8,1509 M308.8,1651.1 M316.5,1651.1 M315.5,1650.3
M313.1,1651.5 M383.3,1655.9 M467.9,1614.8 M388.6,1651.2 M384.7,1653.1 M515.6,1610.3 M482.6,1622.9 M431.3,1426.3
c0.2,0.7,0.4,1.3,0.7,2C431.9,1427.5,431.6,1426.9,431.3,1426.3z M426.1,1418.6c1.4,1.1,2.3,2.6,2.7,4.5
C428.4,1421.2,427.5,1419.7,426.1,1418.6z M432.1,1428.5l-0.1-0.3C432.3,1429.7,432.1,1428.9,432.1,1428.5z M424.2,1413.1l-0.1-0.1
C424.1,1413.1,424.1,1413.1,424.2,1413.1z M424.1,1417.2l1.4,1C425.6,1418.2,421.8,1415.9,424.1,1417.2z M435.7,1421.8
c0.1,0.4,0.3,0.6,0.7,0.7C436.1,1422.4,435.8,1422.1,435.7,1421.8z M423.6,1412.7c-0.3,0-0.2,0.1,0.4,0.3L423.6,1412.7z
M479.8,1361.8l0.3-0.1C478.8,1362.2,479.6,1361.9,479.8,1361.8z M481.4,1361.5 M480.2,1361.6l-0.1,0.1
C480.3,1361.7,480.3,1361.6,480.2,1361.6z M477.6,1362.7 M479.3,1361.9 M473.5,1365.2 M464.3,1370.2 M460.7,1458.8 M579,1513.9
M502.9,1544.2 M504.2,1545 M567.3,1574.3 M525.8,1600 M536.4,1603.9 M537.4,1607.6 M509.4,1610.7 M505.6,1633.7 M599.8,1490.7
M739.4,1536.3 M777.6,1570.4 M775.5,1559.7c-0.5-5.8-5.9-18.2-5-7.6C770.4,1550.1,775.4,1558.9,775.5,1559.7z M802.4,1576.2
c0.8-6.3,0.9-5.5,4.1,1c-0.5-1.2,1.1-5.3,1-5.2c-0.7-0.8-1.1-3.7-0.9-4.1c-0.3-0.2-0.5-1.3-0.4-1.7c-0.5-0.2-1.9-2-2-2.5
C790,1561.5,803.4,1568,802.4,1576.2z M794,1593.7c-6.6-6.2-12.3-9.7-4.9-2.8C790.5,1592.1,794.7,1594.2,794,1593.7z M496.1,1546
c4.7-4.1,5-5.1-0.2-2.5C496.3,1544.4,496.4,1545.2,496.1,1546z M314.1,1648.6 M312.2,1652.9 M388,1655.1 M749.2,1547.1
c0.8-11.9,3.5-3.7,2.8-9.1c-0.1-0.5-4.1-1.9-5.5-3.4c2.4,1.7,7,0.3,7.7,0.2c-3.3-1.7-1.1-0.8,0-0.8c-0.7-0.2-0.9-1.4-0.4-2
c-0.3-0.1-0.2-0.7-0.1-0.8c0,0-2.6-2.5-2.4-1.9c-7.3,0.1-5.2,0.5-12,1c-0.2,0.2-0.5,0.3-0.8,0.3c0.5,2.7,2.2,1.4,0,2.1
C739.5,1536,748.7,1544.6,749.2,1547.1z M753.7,1524.6c-4.5-7.7,7,18.3,7,18.8c1.7,2.9-0.1,2.8,0.9,7.8c0.4-1.1,2.5-3.2,2.3-3.5
c0,0.1,0-2,0.7-1.6c2.2-12.5-0.7-0.5-5.5-17.6c2.1,1.2,0-1.4-0.2-1.8C772.3,1538,757.7,1531.6,753.7,1524.6z M751.7,1551.6
M765.6,1568.7c-5.8-9.8-5.8-21.2-12.4-25.7c-0.1,0.7-0.6,0.5-0.9,0.4c0,1.7-0.1-0.8-1.5-1.2c0-0.1-0.3,1-0.6,1
c0.3,0.7-0.2,2.9-0.2,2.9l-0.5,1.1c7.3,9.7,8.4,12.1,10.9,16.4C762,1566.5,766.1,1569.6,765.6,1568.7z M801.1,1590.9
c-5.3-9.1-4.2-9.2-9.3-15.2c0.5,0.6-5.5-2.5,3.3,0c-4.7-1.6-12.1-11.7-14-13.6c0,0.2-2-1.3-1.9-1.3c0.3,1.6-2.8,1.8-4.1,1.1
c-0.1-0.1,1.6,2.2,0.2,1.7c5,9,10.3,17.9,10.1,17.6c2.8,3.1,7,4.9,9.7,7.4C794.2,1587.8,800,1590,801.1,1590.9z M773.1,1568
c-4.1-8.6,0.5-11.6-3.9-14.6c-0.1,0.2-0.2-0.5-0.4-0.7c0.3-1.3-2.8-1-3.5-1.2l-0.2,1.1c0,0,0.7,0.4-0.6,1c4.4,10.9,2.1,6.4,7.6,17.8
C769.3,1565.3,771.8,1565.2,773.1,1568z M585.7,1555.8c-0.9,0.1-7.9,0.6-8.2,0.6c-1.4,0.2-0.6-1.4-3.1,0.8c1.1,2.4,1.4,1.1,1.1,2.1
C580.1,1565,580.1,1556.5,585.7,1555.8z M307.3,1652.1c-2.5-1.2-8.4-0.1-4.9,1.6C303.1,1654.1,306.5,1651.7,307.3,1652.1z
M335.2,1654.1c5.9,1.8-21.9-4.8-5.1,0.3C330.3,1654.5,333.4,1653.6,335.2,1654.1z M428.6,1645.5c-2-7.5-2-4.9-6,0.2
c-1,1.3-3.1,0.8-4.2,2.8c-10.6,9.2,1.1,3.2,5.6,1C423.9,1649.6,426.9,1646.4,428.6,1645.5z M410.4,1648.9
c2.9-1.1-23.2,11.9-10.8,7.2C403.5,1654.6,405.8,1650.7,410.4,1648.9z M582.3,1571.6c-7.2-4.7-3.6-5.3-11.4-3.8
c2.6-0.5-3.5-1.4-2-1.9c-0.2,0.4-0.4-0.2-0.6-0.2c-0.2,0.3-0.8,0.6-1.1,0.6c-2.5,5.5,2,5.4,2.1,13.8c-1.6,1.4-4.1-10.9-6-9.2
c-0.1,0.7-1.2,0.4-1.4,0.6c0,0.8-3.8,5.9-4.6,6.8c0.6,1.1,0.6,0.6,0.1,1.3c1.1,1.7,4,1.8,2.7,6.9c0.1,0,0.9,0,0.8,0.3
c0.6,0.4,2.1,3.6,2.1,2.3c0.1,0-0.6,0-0.6,0.3c-0.1,0,0.2-1.9,0.2-0.5c-0.4,0,0.5-0.8,0.5-0.3c3.8,0.1-2.2-7.8-2.6-4.9
c4.2,3,5.7-2,7.7-0.4c0.3,2.4-5.4,5.8-4.2,8.7c0.1-0.1,1.4-0.3,1.7,0.2c0.4-0.5,1.6-2.6,2.1-2.2c0.1-0.2,0.2-0.9,0.7-0.5
c3.7-6.8,8.5-11.7,10.9-14.4C579.9,1574.7,581.7,1572.6,582.3,1571.6z M466.9,1631c-9.8-2.3-32.1-6.8-4.5-0.2
C463,1630.9,466.7,1631,466.9,1631z M446.3,1506.3c4.9-3.6,14-20.9-2.7-8.6C439.2,1500.8,445.9,1506.6,446.3,1506.3z M417.3,1414.7
c9,7.9,16.7,12.8,19.1,12.4c0.4,4-7.4-21.5-16.6-20C418.8,1407.3,417.8,1414.5,417.3,1414.7z M817.2,1568.9
c-17-23.6-49-51.5-73.2-72.2c-11.7-10-12,15.4-19.6,22.1c-67.6-35.5-41.7-153-76.2-231.8c-1-2.3-6.2-2.4-7.2-4.4
c-11.7,0.2-25.2-1.7-42.7-4.2c-23.2-3.2-15.9-5.6-36.2-7.1c-2.1-0.2-5.1,0.2-7.1-0.1c-1.6-0.2-1.2,1.2-2.1,1.4
c-0.2,0,0.6-3.2-0.7-3.3c0.8-0.1-1.1-8.8-2.1-10.9c0.7-0.4,0.8,1.1,0.1-0.4c-9.3,6-21.7,12.9-17.5,11.3c-0.7,1-5,3.7-6.4,4.5
c0.6-1.2-24.6,13.4-30.4,33.3c2.7-9.2-21.1,10.6-19.5,9.4c1.2,1.4,4-3.6-0.6,0.1c16,17.9,31.4,39,30.9,41.3c-2,8.7,7,4.6,9.6,6.2
c0.4-1.1,0.5-0.8,1.3-0.4c0.4-0.8,0.2-0.8,1-0.5c0-0.1-1.3,0.4-0.5,0.7c-0.1,0.2,0.3,1.8,0.5,1.9c0,0-0.2,2.7-0.3,2.7
c-10.1,1.2-10-7.1-14.5-14.5c0.4,1.4-1.1-0.1-1.2-0.2c0.2,0.6-1.2,1.3-1.3,1.2c2.6,6.1,8.2,20.6,9.7,19.3c-0.8-0.4-0.4,0,0.1-0.4
c-0.2-0.1,0.1-0.7,0.2-0.8c-0.3-0.1,0.2-1.5,0.2-1.5c0.1,0-2.7-1-2-1c2.3,0.6-22.7-2-20.1-2.1c3.8-0.1-0.4-11.2,3.4-7.8
c-14.3,2.5-17.3,8.7-25.5,8c-13.8,11.6-6.7,7.5-1.5,20.4c-2.9-7.2-3,0.1,0.5,5.3c3,7,10.4,12.6,15.3,10.8c2.8-0.2,24.8,0.6,22.4-1.3
c1.4,1.2,4.6-1.8,5.6-2.7c-0.2,0.5-1.2,0.2-1.2,0.2c0,0.1,0.4,2,0.9,1.7c-0.1,0.1,0.7,0.9,0.8,0.8c0,0,0.4,2.1,0.6,2.1
c-0.6,1-57.5,66.2-53.1,60.5c1.5,1.9,3,9.1,2.9,12.8c-1.3-0.2,2,4.3,2,3.2c-0.5,0.1,1.1,2.5,1.4,3.3c-0.3,2.9,2.8,0.9,2.1,0.5
c-0.1-0.1-1.2,3.2-1.3,3.2c1.7,0.5-3.8,4.3-4.4,4.5c-6.6-0.1,24.1,5.9,26.4,17c2.5,12,3.6,23.8,3.3,23.6c2.4,2.3-1.5,6.6-2,8.4
c0,0,1.6,0.8,1.5,1.2c0.4,0,0.6-1.5-0.1,1c7.8-1.3,14.7-12.9,20-4.6c-3-4.6,8.8,10.9,6.4,10.5c-0.6,0.9,2.2,0,2.8,0c0,0,0.4-1,0.6-1
c4.3-5.9-4.7-6.8,3.2-13.1c-0.5-0.4-0.6-0.8-0.5-1.4c-0.2-0.1-0.1-0.1,0.1-0.2c0.5,0.3,4.5,4.9,4.3,5c-0.1,0-0.4,0-5.3,2.4
c1.3,0.7,2.1,4.5,2.7,4.7c5.5,2.8,10.4-7.9,13.9-8.7c0.1-0.9,0-2.1,1-2.5c-2.8,18.1-6.5,23.1-7.7,37.5c-0.7,0.6-19.3,14.7-22.2,17.7
c-11.8,19.9-17.3,21.8-18.5,12.3c-12.7,9.7-17.9,13.1-25.2,16.8c0.2,0,0.2,0.4,0,0.6c0.4,0,0.1,3.4,0.1,3.5
c-0.5,0.3-1.1,1.3-1.4,1.7c0,0,0.3,0.9,0.2,1c1.4-0.7,4.8-5.9,2.1-4.9c0.4-0.6,0.4-0.8,0.1-0.7c0.2,0-0.1-0.7,0.4-1.2
c7.1,0.1,6.9-0.8,13.2,2.1c-1.8-0.8,17.1-8.1,20.2-9.5c4.4-2,4.3,2.4,4.3,2.4s9.4-9.4,13.2-12.2c3.1-2.3,13-9.8,20.2-18.7
c3.7-4.6,14.2-12.1,20.4-21.8c2.4-3.8,5.6-12.6,12.6-22.3c-5.4,7.5,3.3-20.8,2.1-19.2c0-0.1,16.5-39,25.9-34.1c2.6,1.3,5.4-4,8-6
c-0.3,0.3,1.4,0.1,1.4,0c-3.7,3.4-12,13.3,0,13.1c0.9,0.2,2.5,1.4,2.9,1.5c-29.4-4-13.8,14.1-21.1,29.9c-1-2.2-0.9,6.4-0.3,9.5
c3.7-2.5,7.9-10,11.5-11.7c-1.6,0.8,1.9-3.5,5.1-6.3c0.1-0.1-2.2,4.4,2.2-4.4c-2.5,2.2,13.1-8.1,9.3-4.6c1.7-1.6,2.1-1.9,3.8-4.4
c-0.2-0.2-0.8-0.3-0.3-1.2c-0.5-0.7-1.2-0.6-0.9-1.3c-0.1-0.2-0.5-0.3-0.4-0.7c1.7,3-5.7,3.1-5.4,3.9c2-13,3.5-0.2-0.5-5
c3.1-4.5,0.8-1.6-0.2-2.7c2.2-2.1,5.4-2.2,4.3-7c-0.8,0.2-1.9,2.7-2.3,2c1-0.4,0.4-1.1,0.3-1.4c0.1,0,1.4-0.7,1.3-0.9
c-0.1,0,1-0.4,1-0.6c0.3,0,3.2,1.6,3.5-4.1c0,0.2,0.1,2.6,0.3,1.1c-0.6-2.7-2.4,13.5-0.1,9.3c2.7-2-2.3-1.5,1.1-0.8
c1.6-1.3-1.2-5.1,0.6-6.9c8.4,4.9-3.1,1.3,11.9-0.1c0-0.3-5.4,1.5-2.9,1.5c2.8,3.2-2.6,0.4,4.7,4.1c-1.6-0.9-4.2,4.2-5.3,3
c0.4-0.1,0.4,0.8,0.5,1c9.6-3.1,3.6,1.4,7.4,3.9c11.5,7.8,2.6-3.2,9.5,2.9c3,2.6,6.7,4.7,6.9,4.9c14.3-4.4,27.7-10.5,26.2-2.4
c12.3,0.1,17.6-1.8,18.4-1.8c-0.6-0.6-0.5,4.6-1.1,5.3c0.5,0.3-1,0.7-1,0.7c9.8,5.4,19.5,13.6,32.5,17.5c1.8,0.6,1.9,1.7,3.6,3.1
c0-0.1,0.5-0.3,0.6-0.3c-0.7-2-0.8-4.2,1.8-2.4c-1.6-2.6-2.1-4,2.6-1.9c0.1-0.4,0.2-0.7,0.3-1.1c-0.3-0.2-0.6-1.7-0.8-1.8
c-0.4-0.1-0.3-0.9-0.4-0.9c0.1,0-9.9-3.6-10.8-5.1c-0.2,0,0.5-1.9-0.5-3.4c1-0.1,7.1,4.9,2.8-0.8c2.7,0.5,9.7,7.3,5.1-2
c3.5,0.1,4.2,6.7,4.9,12.2c0.3-1.8,0.8,1.6,0.8,1.5c0.3-1.4,3.2-2.3,4.1-1.2c0.3-2.7,0.4-0.9,4,2.3c-0.1-0.3,0.4-2.1,0.4-2.1
c-0.6-4.3-10.2-16.6-9.3-19.1c0.4,0,0.7,0.1,1.1,0.4c1.8,1.4,0.6,2.1,1.4,1.3c-0.1-0.1-0.5-0.4-0.3-0.6c0.4,0.3-0.5-1-0.5-1
c-0.2,0-0.3-0.1-0.5-0.2c-0.2-0.2-0.9-4.7-0.8-5.4c17.7,18.7,3.4,17.3,19.8,15.4c1.3,12.9,0.8,9.5,2.8,11.7c5.5,5.9,1-4.7,7.1,0.4
c0.2,1-3.2,0.1,3.1,6.9c1.3,7.4-2.6,0.1,10,13c3.5,3.6,5,4.7,12.6,9c0.1,0.5-5.2,12.7-4.7,13.6c-0.4-0.1,4.7,4.4,4.5,3.9
c0.6,0-0.7-2.6-0.6-2.4c0.2,0.1-0.7-12.9,6.3-14.8c0.2,0.8,0,0.2,0,1.3c4.8,18,7,13,10.5,13C810.6,1597.1,811.4,1574.5,817.2,1568.9
z"/>
<path class="st0" d="M1716.8,1566.6l-1.7-1.9l-3.4-1.2l-4-0.6l-3.5,0l0,0.4l5.9,4l1.9,2.2l0.6-1.1l-0.2-0.9l-1.3-1.8h1l0.4,0.8
l0.8,0.5l1.2,0.2l1.5-0.1l-1-0.7l1.5,0.1L1716.8,1566.6z M1709.2,1582.9l-7.4-0.2l-4.9-1.2l-1.8-0.2l-11.3,1.3l-1.3,0.5l-2,1.2
l-2.5,1.1l-2.8,0.8l-2.8,0.2l-0.7,0l-2.2,0l2.2,3l4.1,0.4l4.4-0.4l2.9,0.7l2.2-0.8l11.1-1.9l2.7-0.8l2.1-0.4l1.3,0.9h1l0.8-0.6
l2.7-1.3l0.9-0.3l3.8,0.2l1-0.4l-1.4-1.2L1709.2,1582.9z M1346.8,1587.1l-0.8-0.1l-8.2,0.2l-1.6,0.6l-0.9,1.5l0.9,1.5l4,1.6l0.9,1
l0.6,0.3l1.3,0.1l1.3-0.1l0.6-0.3l0.2-0.8l0.5-0.5l0.6-0.5l1.4-1.9l0.8-0.7l0-0.8L1346.8,1587.1z M1662.8,1571.6l-1-0.8l0.6-1.3
l-0.6-1.3l0.3-4.5l1.4-5.3l0-0.7l-1.1-0.2l-1.2,0.6l-1.1,0.8l-1,0.4l-6.4-0.4l-3.3-0.6l-1.4-1l-1.2,0.1l-6.6-3.4l-0.5,0.4l-0.3,0.1
l-0.4,0l-0.8,0.2l0.5-0.9l0-0.3l-0.3-0.3l-0.2-0.7l-2.3,1.3l-2.1-0.4l-2.5-1l-4.6-0.7l-1.7-0.9l-1.4-0.4l-9-0.1l-3.2-0.5l-1.8-0.1
l-1.3,0.2l-2.4,1l-1.7,0.2l-2.3-0.4l-8.4-2.6l0.8,1.8l2.1,1.5l2.6,0.9l2.3,0.2v0.8l-4.7,1l-2.2-0.1l-0.9-1.3l-0.5-1.5l-1.2-0.9
l-1-1.1l-0.3-1.9l-1.4,0.5l-1.2,0.7l-2.3,1.7l-0.5-0.6l-1-0.9l-0.3-0.7l-3.1,1.3l-7.5-1.7l-6.5,1.4l-11.1-2.4l-12.1,1.7l-5.6-1.2
l-9.1-0.1l-2.3,0.3l-3.8-1l-3.8-0.3l-8.1,0.5l-5.5,0.9l-2.1-0.1l-5.3-1.3l-2-0.2l-15.6,0.7l-14-1.5l-5.1-1.6l-7.5-0.2l-7.1,1.5
l-3.7,3.3l0.2,2.7l1,1.9l0.2,1.6l-2.3,2l-2,0.9l-2.7,0.8l-3,0.5l-3-0.1l-0.9,2.7l1.1,3.2l2.1,2.7l2,1.1l2.5,0.2l1.9,0.7l1.5,1.1
l4.8,5.8l0.6,0.9l-0.1,1.2l-0.8,1.2l-1.2,0.9l-1.4,0.4l-1.5,9.5v2.2l-0.3,0.7l-1.3,1.6l-0.4,0.7l3,0.7l1.4,0.5l0.6,0.6l-0.5,0.8
l-1.1,0.4l-1.3,0.3l-1,0.4l-1.2,1.6l-0.8,2.5l0.3,2.2l2.1,1l1.1-0.3l1.7-1.4l1.5-0.5l1.5,0l3.2,0.6l1.7,0.2l2.1-0.4l2.3-0.9l2-1.2
l1-1.3l2.6,0.9l5.6,0.6l2.4,0.7l3.2,2.4l2,1l2.6,0.2l0.1-1l0.3-0.7l0.6-0.5l0.7-0.1l1.6,0.1l2.2-0.2l4.4,0.1l3-0.3l3.2-0.7l2.8-1.1
l1.6-1.6h-1.9v-0.8l1.8-0.8l1.9-0.3l1.3,0.4l-0.1,1.4h5.8l4.3,1.2l1.1,0.2l5.8-0.6l2.4,0.2l1,1.2l1-0.3l1-0.5l2.2,0.8l1.7-0.3
l1.5-0.7l1.5-0.6l4.7-0.2l2.1-0.3l2-1.1l1,0.8l3.1-0.9l2.4,1.1l2.3,1.9l2.8,1.5l2.9,0.2l4-2l3.3-0.6l2.3-0.1l1.3,0.2l1.8,0.7
l0.8,0.6l0.5,0.7l0.8,0.6l1.4,0.3l3.9,0.3l2,0.4l1.6-0.3l2.8-1.8l1.3,0.7l0.6,0.6l-0.4,0.5l-1.5,0.3l0.1,0.5l0.2,0.3l0.6,0.6
l1.1-0.5l1.4-0.1l1.6,0l1.8-0.1l8.3-3.2l2.9-0.5l4.3,0.1l1-0.1l4.2-1.2l1.7-0.3l2.9,0.2l3.2,0.5l3.2,0.1l9-3.7l4.5-3.3l0.3-0.7
l0.1-1.5l0.7-0.7l3.3-0.5l0.7-0.3l0.5-1.7l2.5-4l4.4-4.6l2.5-1.8l2.4-0.8l2.8-0.5l2.6-0.9l2.5-0.6l2.4,0.5l1.6-1.9l3.9-1l0.4-1.4
l-1-0.9L1662.8,1571.6z"/>
<g>
<path class="st4" d="M421.2,905.5c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C456.4,921.3,440.6,905.5,421.2,905.5z"/>
</g>
<g>
<defs>
<path id="SVGID_23_" d="M421.6,917.3c3.9,0,7,3.1,7,7s-3.1,7-7,7c-3.9,0-7-3.1-7-7S417.7,917.3,421.6,917.3z M449.6,941.6
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V941.6z M440.3,933.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S437.7,933.6,440.3,933.6z M405.6,936.2c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C404.1,939.6,404.6,937.8,405.6,936.2z M402.9,933.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7c-2.6,0-4.7,2.1-4.7,4.7S400.4,933.6,402.9,933.6z M421.6,933.1c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C414.4,934,417.8,933.1,421.6,933.1z"/>
</defs>
<clipPath id="SVGID_24_">
<use xlink:href="#SVGID_23_" style="overflow:visible;"/>
</clipPath>
<g class="st15">
<defs>
<rect id="SVGID_25_" x="393.6" y="903.3" width="56" height="56"/>
</defs>
<clipPath id="SVGID_26_">
<use xlink:href="#SVGID_25_" style="overflow:visible;"/>
</clipPath>
<rect x="381.9" y="905.6" class="st16" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M1335.8,555.6c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1371,571.4,1355.3,555.6,1335.8,555.6z"/>
</g>
<g>
<defs>
<path id="SVGID_27_" d="M1336.3,567.4c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S1332.4,567.4,1336.3,567.4z M1364.3,591.8
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V591.8z M1354.9,583.8
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1352.4,583.8,1354.9,583.8z M1320.2,586.3c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1318.8,589.8,1319.3,587.9,1320.2,586.3z M1317.6,583.8
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1315,583.8,1317.6,583.8z M1336.3,583.2c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1329.1,584.1,1332.5,583.2,1336.3,583.2z"/>
</defs>
<clipPath id="SVGID_28_">
<use xlink:href="#SVGID_27_" style="overflow:visible;"/>
</clipPath>
<g class="st17">
<defs>
<rect id="SVGID_29_" x="1308.3" y="553.4" width="56" height="56"/>
</defs>
<clipPath id="SVGID_30_">
<use xlink:href="#SVGID_29_" style="overflow:visible;"/>
</clipPath>
<rect x="1296.6" y="555.8" class="st18" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M609.4,1030.4c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C644.6,1046.2,628.8,1030.4,609.4,1030.4z"/>
</g>
<g>
<defs>
<path id="SVGID_11_" d="M609.8,1042.3c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S605.9,1042.3,609.8,1042.3z M637.8,1066.6
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V1066.6z M628.5,1058.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S625.9,1058.6,628.5,1058.6z M593.8,1061.2c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C592.3,1064.6,592.8,1062.8,593.8,1061.2z M591.1,1058.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S588.6,1058.6,591.1,1058.6z M609.8,1058c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C602.6,1058.9,606,1058,609.8,1058z"/>
</defs>
<clipPath id="SVGID_31_">
<use xlink:href="#SVGID_11_" style="overflow:visible;"/>
</clipPath>
<g class="st19">
<defs>
<rect id="SVGID_12_" x="581.8" y="1028.3" width="56" height="56"/>
</defs>
<clipPath id="SVGID_32_">
<use xlink:href="#SVGID_12_" style="overflow:visible;"/>
</clipPath>
<rect x="570.1" y="1030.6" class="st20" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M1166.8,649.5c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1202,665.3,1186.2,649.5,1166.8,649.5z"/>
</g>
<g>
<defs>
<path id="SVGID_9_" d="M1167.2,661.3c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S1163.3,661.3,1167.2,661.3z M1195.2,685.6
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V685.6z M1185.9,677.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1183.3,677.6,1185.9,677.6z M1151.2,680.2c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1149.7,683.6,1150.2,681.8,1151.2,680.2z M1148.5,677.6
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1146,677.6,1148.5,677.6z M1167.2,677c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1160,678,1163.4,677,1167.2,677z"/>
</defs>
<clipPath id="SVGID_33_">
<use xlink:href="#SVGID_9_" style="overflow:visible;"/>
</clipPath>
<g class="st21">
<defs>
<rect id="SVGID_10_" x="1139.2" y="647.3" width="56" height="56"/>
</defs>
<clipPath id="SVGID_34_">
<use xlink:href="#SVGID_10_" style="overflow:visible;"/>
</clipPath>
<rect x="1127.5" y="649.6" class="st22" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M1094.3,1171.8c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1129.5,1187.6,1113.7,1171.8,1094.3,1171.8z"/>
</g>
<g>
<defs>
<path id="SVGID_6_" d="M1094.7,1183.6c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S1090.8,1183.6,1094.7,1183.6z M1122.7,1207.9
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V1207.9z M1113.4,1199.9
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1110.8,1199.9,1113.4,1199.9z M1078.7,1202.5c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1077.2,1205.9,1077.8,1204.1,1078.7,1202.5z M1076.1,1199.9
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1073.5,1199.9,1076.1,1199.9z M1094.7,1199.3c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1087.6,1200.3,1090.9,1199.3,1094.7,1199.3z"/>
</defs>
<clipPath id="SVGID_35_">
<use xlink:href="#SVGID_6_" style="overflow:visible;"/>
</clipPath>
<g class="st23">
<defs>
<rect id="SVGID_8_" x="1066.7" y="1169.6" width="56" height="56"/>
</defs>
<clipPath id="SVGID_36_">
<use xlink:href="#SVGID_8_" style="overflow:visible;"/>
</clipPath>
<rect x="1055.1" y="1171.9" class="st24" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M582.2,1379.5c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C617.4,1395.3,601.6,1379.5,582.2,1379.5z"/>
</g>
<g>
<defs>
<path id="SVGID_37_" d="M582.6,1391.4c3.9,0,7,3.1,7,7c0,3.9-3.1,7-7,7c-3.9,0-7-3.1-7-7C575.6,1394.5,578.7,1391.4,582.6,1391.4z
M610.6,1415.7c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V1415.7z
M601.3,1407.7c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S598.7,1407.7,601.3,1407.7z M566.6,1410.3
c-0.9-0.1-1.7-0.2-2.6-0.2c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8
C565.1,1413.7,565.6,1411.8,566.6,1410.3z M563.9,1407.7c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7
S561.4,1407.7,563.9,1407.7z M582.6,1407.1c3.8,0,7.2,0.9,9.9,2.1c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4
C575.4,1408,578.8,1407.1,582.6,1407.1z"/>
</defs>
<clipPath id="SVGID_38_">
<use xlink:href="#SVGID_37_" style="overflow:visible;"/>
</clipPath>
<g class="st25">
<defs>
<rect id="SVGID_39_" x="554.6" y="1377.4" width="56" height="56"/>
</defs>
<clipPath id="SVGID_40_">
<use xlink:href="#SVGID_39_" style="overflow:visible;"/>
</clipPath>
<rect x="542.9" y="1379.7" class="st26" width="79.3" height="51.3"/>
</g>
</g>
<g>
<path class="st4" d="M1480.2,1469.5c-19.4,0-35.2,15.8-35.2,35.2c0,18.6,31.4,56.7,32.8,58.3l2.5,3l2.5-3
c1.3-1.6,32.8-39.7,32.8-58.3C1515.4,1485.3,1499.6,1469.5,1480.2,1469.5z"/>
</g>
<g>
<defs>
<path id="SVGID_41_" d="M1480.6,1481.3c3.9,0,7,3.1,7,7s-3.1,7-7,7s-7-3.1-7-7S1476.7,1481.3,1480.6,1481.3z M1508.6,1505.7
c0-1.9-1.1-3.6-2.8-4.3c-2-0.9-4.2-1.4-6.5-1.4c-0.9,0-1.8,0.1-2.6,0.2c0.9,1.6,1.5,3.4,1.5,5.3v3.8h10.5V1505.7z M1499.3,1497.7
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1496.7,1497.7,1499.3,1497.7z M1464.6,1500.2c-0.9-0.1-1.7-0.2-2.6-0.2
c-2.3,0-4.5,0.5-6.5,1.4c-1.7,0.7-2.8,2.4-2.8,4.3v3.7h10.5v-3.8C1463.1,1503.6,1463.6,1501.8,1464.6,1500.2z M1461.9,1497.7
c2.6,0,4.7-2.1,4.7-4.7s-2.1-4.7-4.7-4.7s-4.7,2.1-4.7,4.7S1459.4,1497.7,1461.9,1497.7z M1480.6,1497.1c3.8,0,7.2,0.9,9.9,2.1
c2.5,1.1,4.1,3.6,4.1,6.4v3.8h-28v-3.8c0-2.8,1.6-5.3,4.1-6.4C1473.4,1498,1476.8,1497.1,1480.6,1497.1z"/>
</defs>
<clipPath id="SVGID_42_">
<use xlink:href="#SVGID_41_" style="overflow:visible;"/>
</clipPath>
<g class="st27">
<defs>
<rect id="SVGID_43_" x="1452.6" y="1467.3" width="56" height="56"/>
</defs>
<clipPath id="SVGID_44_">
<use xlink:href="#SVGID_43_" style="overflow:visible;"/>
</clipPath>
<rect x="1440.9" y="1469.7" class="st28" width="79.3" height="51.3"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 80 KiB

View file

@ -9,9 +9,9 @@ import J40MainGridContainer from '../components/J40MainGridContainer';
import Layout from '../components/layout'; import Layout from '../components/layout';
// @ts-ignore // @ts-ignore
import aboutUSMapImg from '../images/about-usmap.svg'; import aboutUSMapImg from '../images/about-usmap-1.svg';
// @ts-ignore // @ts-ignore
import aboutJ40Img from '../images/about-j40.svg'; import aboutJ40Img from '../images/about-j40-1.svg';
import accountBalanceIcon // @ts-ignore import accountBalanceIcon // @ts-ignore
from '/node_modules/uswds/dist/img/usa-icons/account_balance.svg'; from '/node_modules/uswds/dist/img/usa-icons/account_balance.svg';
@ -63,12 +63,12 @@ const IndexPage = ({location}: IndexPageProps) => {
}, },
aboutScreenToolHeading: { aboutScreenToolHeading: {
id: 'index.heading.screentool', id: 'index.heading.screentool',
defaultMessage: 'About the screening tool', defaultMessage: 'The screening tool',
description: 'heading for about screening tool', description: 'heading for about screening tool',
}, },
aboutJustice40Heading: { aboutJustice40Heading: {
id: 'index.heading.justice40', id: 'index.heading.justice40',
defaultMessage: 'About the Justice40 Initiative', defaultMessage: 'The Justice40 Initiative',
description: 'heading for about justice 40', description: 'heading for about justice 40',
}, },
}); });
@ -197,7 +197,7 @@ const IndexPage = ({location}: IndexPageProps) => {
<AboutCard <AboutCard
size={'small'} size={'small'}
imgSrc={commentIcon} imgSrc={commentIcon}
header={'Send Feedback'} header={'Send feedback'}
actionText={'Email: screeningtool.feedback@usds.gov'} actionText={'Email: screeningtool.feedback@usds.gov'}
actionUrl={'mailto:screeningtool.feedback@usds.gov'}> actionUrl={'mailto:screeningtool.feedback@usds.gov'}>
Have ideas about how this tool can be improved to better Have ideas about how this tool can be improved to better

View file

@ -59,11 +59,7 @@ const IndexPage = ({location}: MethodPageProps) => {
</Grid> </Grid>
</J40MainGridContainer> </J40MainGridContainer>
<J40MainGridContainer fullWidth={true} blueBackground={true}> <DatasetContainer/>
<J40MainGridContainer>
<DatasetContainer/>
</J40MainGridContainer>
</J40MainGridContainer>
<J40MainGridContainer> <J40MainGridContainer>
<Grid row> <Grid row>

View file

@ -430,6 +430,7 @@ p.secondary.j40-indicator {
.j40-aboutcard-image { .j40-aboutcard-image {
flex: 1 0 10%; flex: 1 0 10%;
align-self: flex-start; align-self: flex-start;
@include u-margin-top(5);
} }
.j40-aboutcard-link { .j40-aboutcard-link {