@newskit-render/core 1.9.0 → 1.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -0
- package/CHANGELOG.md +146 -0
- package/README.md +1 -1
- package/{context → app-context}/AppContext.test.tsx +3 -2
- package/{context → app-context}/AppContext.tsx +3 -3
- package/{context → app-context}/__snapshots__/AppContext.test.tsx.snap +0 -0
- package/components/header/index.tsx +1 -1
- package/infrastructure/.circleci/config.yml +1 -0
- package/infrastructure/terraform-newrelic/dashboards.tf +176 -0
- package/infrastructure/terraform-newrelic/lighthouse-script-prod.js +46 -0
- package/infrastructure/terraform-newrelic/lighthouse-script.js +46 -0
- package/infrastructure/terraform-newrelic/monitors.tf +12 -0
- package/next-env.d.ts +0 -1
- package/next.config.js +37 -32
- package/package.json +22 -9
- package/pages/_app.tsx +38 -1
- package/pages/account/cancellation/index.tsx +6 -5
- package/pages/account/edit/[field].tsx +11 -2
- package/pages/account/index.tsx +9 -2
- package/pages/account/newsletters-and-alerts/index.tsx +10 -1
- package/pages/account/payment/index.tsx +8 -1
- package/pages/account/subscription-and-billing/index.tsx +14 -1
- package/pages/checkout/account-creation/index.tsx +8 -1
- package/pages/checkout/payment-details/index.tsx +8 -1
- package/public/MyAccount/display-personalDetails-header-sun.svg +55 -0
- package/public/MyAccount/display-personalDetails-header-times.svg +90 -0
- package/public/MyAccount/display-personalDetails-header-vr.svg +46 -0
- package/public/MyAccount/navigationPrimary-brandMark-sun.svg +3 -0
- package/public/MyAccount/navigationPrimary-brandMark-times.svg +18 -0
- package/public/MyAccount/navigationPrimary-brandMark-vr.svg +10 -0
- package/public/fonts/GillSansMTStd-Bold.otf +0 -0
- package/public/fonts/GillSansMTStd-BoldCondensed.otf +0 -0
- package/public/fonts/GillSansMTStd-BoldItalic.otf +0 -0
- package/public/fonts/GillSansMTStd-Book.otf +0 -0
- package/public/fonts/GillSansMTStd-BookItalic.otf +0 -0
- package/public/fonts/GillSansMTStd-Condensed.otf +0 -0
- package/public/fonts/GillSansMTStd-ExtraBold.otf +0 -0
- package/public/fonts/GillSansMTStd-Heavy.otf +0 -0
- package/public/fonts/GillSansMTStd-HeavyItalic.otf +0 -0
- package/public/fonts/GillSansMTStd-Light.otf +0 -0
- package/public/fonts/GillSansMTStd-LightItalic.otf +0 -0
- package/public/fonts/GillSansMTStd-Medium.otf +0 -0
- package/public/fonts/GillSansMTStd-MediumItalic.otf +0 -0
- package/public/fonts/GillSansMTStd-UltraBold.otf +0 -0
- package/public/fonts/GillSansMTStd-UltraBoldCond.otf +0 -0
- package/public/fonts/Montserrat-Black.ttf +0 -0
- package/public/fonts/Montserrat-BlackItalic.ttf +0 -0
- package/public/fonts/Montserrat-Bold.ttf +0 -0
- package/public/fonts/Montserrat-BoldItalic.ttf +0 -0
- package/public/fonts/Montserrat-ExtraBold.ttf +0 -0
- package/public/fonts/Montserrat-ExtraBoldItalic.ttf +0 -0
- package/public/fonts/Montserrat-ExtraLight.ttf +0 -0
- package/public/fonts/Montserrat-ExtraLightItalic.ttf +0 -0
- package/public/fonts/Montserrat-Italic.ttf +0 -0
- package/public/fonts/Montserrat-Light.ttf +0 -0
- package/public/fonts/Montserrat-LightItalic.ttf +0 -0
- package/public/fonts/Montserrat-Medium.ttf +0 -0
- package/public/fonts/Montserrat-MediumItalic.ttf +0 -0
- package/public/fonts/Montserrat-Regular.ttf +0 -0
- package/public/fonts/Montserrat-SemiBold.ttf +0 -0
- package/public/fonts/Montserrat-SemiBoldItalic.ttf +0 -0
- package/public/fonts/Montserrat-Thin.ttf +0 -0
- package/public/fonts/Montserrat-ThinItalic.ttf +0 -0
- package/public/fonts/TheSun-Bold.ttf +0 -0
- package/public/fonts/TheSun-BoldItalic.ttf +0 -0
- package/public/fonts/TheSun-HeavyCondensed.ttf +0 -0
- package/public/fonts/TheSun-HeavyNarrow.ttf +0 -0
- package/public/fonts/TheSun-Italic.ttf +0 -0
- package/public/fonts/TheSun-Medium.ttf +0 -0
- package/public/fonts/TheSun-MediumItalic.ttf +0 -0
- package/public/fonts/TheSun-Regular.ttf +0 -0
- package/public/fonts/TimesDigital-Bold.ttf +0 -0
- package/public/fonts/TimesDigital-BoldItalic.ttf +0 -0
- package/public/fonts/TimesDigital-BoldSC.ttf +0 -0
- package/public/fonts/TimesDigital-Italic.ttf +0 -0
- package/public/fonts/TimesDigital-Regular.ttf +0 -0
- package/public/fonts/TimesDigital-RegularSC.ttf +0 -0
- package/public/fonts/TimesDigitalW04-Bold.ttf +0 -0
- package/public/fonts/TimesDigitalW04-BoldItalic.ttf +0 -0
- package/public/fonts/TimesDigitalW04-BoldSC.ttf +0 -0
- package/public/fonts/TimesDigitalW04-Italic.ttf +0 -0
- package/public/fonts/TimesDigitalW04-Regular.ttf +0 -0
- package/public/fonts/TimesDigitalW04-RegularSC.ttf +0 -0
- package/tsconfig.json +1 -1
package/pages/_app.tsx
CHANGED
|
@@ -3,7 +3,7 @@ import { AppProps } from 'next/app'
|
|
|
3
3
|
import Head from 'next/head'
|
|
4
4
|
import { ThemeProvider, Global, css, styled } from 'newskit'
|
|
5
5
|
import { SessionProvider } from '@newskit-render/auth'
|
|
6
|
-
import { AppContextProvider, AppContext } from '../context/AppContext'
|
|
6
|
+
import { AppContextProvider, AppContext } from '../app-context/AppContext'
|
|
7
7
|
import { logger } from '../helpers/logger'
|
|
8
8
|
|
|
9
9
|
if (!process.browser) {
|
|
@@ -13,6 +13,43 @@ if (!process.browser) {
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
const GlobalStyling = css`
|
|
16
|
+
@font-face {
|
|
17
|
+
font-family: GillSansMTStd-Medium;
|
|
18
|
+
src: url('/fonts/GillSansMTStd-Medium.otf');
|
|
19
|
+
}
|
|
20
|
+
@font-face {
|
|
21
|
+
font-family: TimesModern-Bold;
|
|
22
|
+
src: url('/fonts/TimesDigital-Bold.ttf') format('truetype');
|
|
23
|
+
}
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: TimesModern-Regular;
|
|
26
|
+
src: url('/fonts/TimesDigital-Regular.ttf') format('truetype');
|
|
27
|
+
}
|
|
28
|
+
@font-face {
|
|
29
|
+
font-family: TimesDigitalW04-Regular;
|
|
30
|
+
src: url('/fonts/TimesDigitalW04-Regular.ttf') format('truetype');
|
|
31
|
+
}
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: Montserrat;
|
|
34
|
+
src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
|
|
35
|
+
}
|
|
36
|
+
@font-face {
|
|
37
|
+
font-family: TheSun-Bold;
|
|
38
|
+
src: url('/fonts/TheSun-Bold.ttf') format('truetype');
|
|
39
|
+
}
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: TheSun-HeavyNarrow;
|
|
42
|
+
src: url('/fonts/TheSun-HeavyNarrow.ttf') format('truetype');
|
|
43
|
+
}
|
|
44
|
+
@font-face {
|
|
45
|
+
font-family: TheSun-Regular;
|
|
46
|
+
src: url('/fonts/TheSun-Regular.ttf') format('truetype');
|
|
47
|
+
}
|
|
48
|
+
@font-face {
|
|
49
|
+
font-family: TheSun-Medium;
|
|
50
|
+
src: url('/fonts/TheSun-Medium.ttf') format('truetype');
|
|
51
|
+
}
|
|
52
|
+
|
|
16
53
|
html,
|
|
17
54
|
body {
|
|
18
55
|
padding: 0;
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import React from 'react'
|
|
1
|
+
import React, { useContext } from 'react'
|
|
2
2
|
import { Cancellation, getProviderProps } from '@newskit-render/my-account'
|
|
3
3
|
import newrelic from 'newrelic'
|
|
4
|
-
import
|
|
4
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
5
5
|
|
|
6
|
-
const
|
|
7
|
-
|
|
6
|
+
const AccountCancellation = (props) => {
|
|
7
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
8
|
+
return <Cancellation {...props} customTheme={theme} setTheme={setTheme} />
|
|
8
9
|
}
|
|
9
10
|
|
|
10
|
-
export default
|
|
11
|
+
export default AccountCancellation
|
|
11
12
|
|
|
12
13
|
export const getServerSideProps = async (context) => {
|
|
13
14
|
newrelic.setTransactionName('Account: Cancellation')
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React from 'react'
|
|
1
|
+
import React, { useContext } from 'react'
|
|
2
2
|
import newrelic from 'newrelic'
|
|
3
3
|
import {
|
|
4
4
|
EditField,
|
|
@@ -7,12 +7,21 @@ import {
|
|
|
7
7
|
componentMap,
|
|
8
8
|
} from '@newskit-render/my-account'
|
|
9
9
|
import validation from '../../../validation'
|
|
10
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
10
11
|
|
|
11
12
|
const AccountEditField = (props) => {
|
|
12
13
|
const doesEditPageExist = Object.keys(componentMap).includes(props.data.type)
|
|
14
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
13
15
|
|
|
14
16
|
if (doesEditPageExist) {
|
|
15
|
-
return
|
|
17
|
+
return (
|
|
18
|
+
<EditField
|
|
19
|
+
{...props}
|
|
20
|
+
validation={validation}
|
|
21
|
+
customTheme={theme}
|
|
22
|
+
setTheme={setTheme}
|
|
23
|
+
/>
|
|
24
|
+
)
|
|
16
25
|
}
|
|
17
26
|
return <NotFound />
|
|
18
27
|
}
|
package/pages/account/index.tsx
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
import { PersonalDetails, getProviderProps } from '@newskit-render/my-account'
|
|
2
1
|
import newrelic from 'newrelic'
|
|
2
|
+
import { PersonalDetails, getProviderProps } from '@newskit-render/my-account'
|
|
3
|
+
import React, { useContext } from 'react'
|
|
4
|
+
import { AppContext } from '../../app-context/AppContext'
|
|
5
|
+
|
|
6
|
+
const AccountPersonalDetails = (props) => {
|
|
7
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
8
|
+
return <PersonalDetails {...props} customTheme={theme} setTheme={setTheme} />
|
|
9
|
+
}
|
|
3
10
|
|
|
4
|
-
export default
|
|
11
|
+
export default AccountPersonalDetails
|
|
5
12
|
|
|
6
13
|
export const getServerSideProps = async (context) => {
|
|
7
14
|
newrelic.setTransactionName('Account: Personal details')
|
|
@@ -3,8 +3,17 @@ import {
|
|
|
3
3
|
getProviderProps,
|
|
4
4
|
} from '@newskit-render/my-account'
|
|
5
5
|
import newrelic from 'newrelic'
|
|
6
|
+
import React, { useContext } from 'react'
|
|
7
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
const AccountNewslettersAndAlerts = (props) => {
|
|
10
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
11
|
+
return (
|
|
12
|
+
<NewslettersAndAlerts {...props} customTheme={theme} setTheme={setTheme} />
|
|
13
|
+
)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default AccountNewslettersAndAlerts
|
|
8
17
|
|
|
9
18
|
export const getServerSideProps = async (context) => {
|
|
10
19
|
newrelic.setTransactionName('Account: Newsletters and Alerts')
|
|
@@ -4,8 +4,15 @@ import {
|
|
|
4
4
|
getProviderProps,
|
|
5
5
|
PaymentProvider,
|
|
6
6
|
} from '@newskit-render/my-account'
|
|
7
|
+
import React, { useContext } from 'react'
|
|
8
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
7
9
|
|
|
8
|
-
|
|
10
|
+
const AccountCancellation = (props) => {
|
|
11
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
12
|
+
return <Payment {...props} customTheme={theme} setTheme={setTheme} />
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export default AccountCancellation
|
|
9
16
|
|
|
10
17
|
export const getServerSideProps = async (context) => {
|
|
11
18
|
newrelic.setTransactionName('Edit Payment method')
|
|
@@ -3,8 +3,21 @@ import {
|
|
|
3
3
|
getProviderProps,
|
|
4
4
|
} from '@newskit-render/my-account'
|
|
5
5
|
import newrelic from 'newrelic'
|
|
6
|
+
import React, { useContext } from 'react'
|
|
7
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
const AccountSubscriptionAndBilling = (props) => {
|
|
10
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
11
|
+
return (
|
|
12
|
+
<SubscriptionAndBilling
|
|
13
|
+
{...props}
|
|
14
|
+
customTheme={theme}
|
|
15
|
+
setTheme={setTheme}
|
|
16
|
+
/>
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default AccountSubscriptionAndBilling
|
|
8
21
|
|
|
9
22
|
export const getServerSideProps = async (context) => {
|
|
10
23
|
newrelic.setTransactionName('Account: Subscription and Billing')
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { AccountCreation, getProviderProps } from '@newskit-render/checkout'
|
|
2
|
+
import React, { useContext } from 'react'
|
|
3
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
const AccountCreationPage = (props) => {
|
|
6
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
7
|
+
return <AccountCreation {...props} customTheme={theme} setTheme={setTheme} />
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default AccountCreationPage
|
|
4
11
|
|
|
5
12
|
export const getServerSideProps = async (context) => {
|
|
6
13
|
return getProviderProps({ ...context, provider: 'accountCreation' })
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { PaymentDetails, getProviderProps } from '@newskit-render/checkout'
|
|
2
|
+
import React, { useContext } from 'react'
|
|
3
|
+
import { AppContext } from '../../../app-context/AppContext'
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
const PaymentDetailsPage = (props) => {
|
|
6
|
+
const { theme, setTheme } = useContext(AppContext)
|
|
7
|
+
return <PaymentDetails {...props} customTheme={theme} setTheme={setTheme} />
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export default PaymentDetailsPage
|
|
4
11
|
|
|
5
12
|
export const getServerSideProps = async (context) => {
|
|
6
13
|
return getProviderProps({ ...context, provider: 'paymentDetails' })
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<svg width="560" height="315" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="560" height="315" rx="4" fill="#FAFAFA"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M303.777 84.36H109.405c-5.288 0-9.797 4.339-9.797 9.714V221.92h213.966V94.074c0-5.375-4.492-9.715-9.797-9.715z" fill="#fff" stroke="#000" stroke-width=".417"/>
|
|
4
|
+
<path d="M206.983 93.373a1.568 1.568 0 10-.001-3.135 1.568 1.568 0 00.001 3.135z" stroke="#000" stroke-width=".417"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M322.12 234.06H91.099c-12.01 0-20.099-4.121-20.099-5.873v-5.327c0-.527.523-.952 1.174-.952h268.871c.651 0 1.175.425 1.175.952v5.537c-.003 1.385-6.267 5.663-20.1 5.663z" fill="#fff" stroke="#000" stroke-width=".417"/>
|
|
6
|
+
<path d="M71.197 227.588h270.295" stroke="#000" stroke-width=".208" stroke-linecap="square"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M235.979 222.301v1.21c0 .862-1.698 1.123-2.984 1.123H180.26c-1.352 0-3.063-.261-3.063-1.123v-1.21" fill="#fff"/>
|
|
8
|
+
<path d="M235.979 222.301v1.21c0 .862-1.698 1.123-2.984 1.123H180.26c-1.352 0-3.063-.261-3.063-1.123v-1.21" stroke="#000" stroke-width=".208"/>
|
|
9
|
+
<path d="M304.586 99.643H108.227v114.431h196.359V99.643z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
|
|
10
|
+
<mask id="a" maskUnits="userSpaceOnUse" x="109" y="100" width="195" height="114">
|
|
11
|
+
<path d="M303.554 100.082H109.068v113.381h194.486V100.082z" fill="#0072EE"/>
|
|
12
|
+
</mask>
|
|
13
|
+
<g mask="url(#a)">
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 40.523c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.053c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.637-19.137-35.124-19.137-56.362 0-51.461 41.892-93.353 93.353-93.353 51.461 0 93.353 41.892 93.353 93.353 0 21.238-7.235 40.725-19.138 56.362zm-115.055-85.53a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
|
|
15
|
+
</g>
|
|
16
|
+
<path d="M108.447 213.468V99.476h195.919v113.992H108.447z" stroke="#000" stroke-width=".44"/>
|
|
17
|
+
<g clip-path="url(#display-personalDetails-header__clip0)" fill="#fff">
|
|
18
|
+
<path d="M136.298 112.022c-1.111-1.967-3.926-3.043-7.962-3.043-4.828 0-7.761 1.5-7.761 3.998 0 1.575 1.364 2.626 4.233 3.303l1.254.293 1.218.292 1.253.292c.055.018.146.032.225.075.449.164.713.399.713.659 0 .531-.847.898-2.105.898-2.022 0-3.042-.367-3.61-1.279l-5.451.677c1.391 2.277 4.351 3.41 8.951 3.41 4.892 0 8.266-1.746 8.266-4.276 0-1.397-1.534-2.719-3.863-3.232l-1.084-.235-1.084-.253-1.084-.236a16.018 16.018 0 01-.847-.221c-.623-.164-.911-.384-.911-.695 0-.498.713-.808 1.825-.808 1.506 0 2.59.424 2.925 1.19l4.899-.809zm13.78 1.153h-4.849l-1.064 4.088c-.362 1.372-1.092 2.063-2.183 2.063-.568 0-.883-.221-.883-.62 0-.132 0-.235.153-.809l1.246-4.725h-4.927l-1.328 5.164c-.154.62-.261 1.143-.261 1.411 0 1.069 1.506 1.91 3.43 1.91 1.951 0 3.141-.488 4.331-1.764l-.413 1.543h4.619l2.129-8.261zm1.049-.002l-2.156 8.268h4.745l1.301-4.961c.237-.873.859-1.322 1.813-1.322.777 0 1.191.221 1.191.652 0 .114-.056.385-.127.67l-1.273 4.961h4.856l1.455-5.649c.083-.303.126-.588.126-.841 0-1.208-1.482-2.031-3.654-2.031-1.994 0-3.449.556-4.178 1.593l.363-1.34h-4.462zm-8.538-3.084h.922l.154-.62h-3.007l-.162.62h.895l-.54 2.081h1.21l.528-2.081zm3.358 1.005l-.28 1.076h1.203l.693-2.683h-1.21l-.252.987h-1.084l.252-.987h-1.202l-.694 2.683h1.203l.28-1.076h1.091zm4.592.463h-1.86l.126-.474h1.498l.154-.588h-1.498l.106-.424h1.786l.153-.588h-2.979l-.694 2.683h3.047l.161-.609z"/>
|
|
19
|
+
</g>
|
|
20
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M468.147 226.296c0 4.324-3.519 7.828-7.861 7.828h-47.903c-4.342 0-7.862-3.504-7.862-7.828V107.907c0-4.323 3.52-7.827 7.862-7.827h47.903c4.342 0 7.861 3.504 7.861 7.827v118.389z" fill="#fff" stroke="#000" stroke-width=".52"/>
|
|
21
|
+
<path d="M463.709 117.658h-54.782v97.438h54.782v-97.438z" fill="#EB1701" stroke="#000" stroke-width=".26"/>
|
|
22
|
+
<path clip-rule="evenodd" d="M442.208 112.642c0 .311-.215.562-.48.562h-9.838c-.265 0-.48-.251-.48-.562v-1.262c0-.311.215-.562.48-.562h9.838c.265 0 .48.251.48.562v1.262z" stroke="#000" stroke-width=".26"/>
|
|
23
|
+
<path d="M436.824 107.382a1.468 1.468 0 100-2.935 1.468 1.468 0 000 2.935zm-.469 121.871c2.714 0 4.914-2.192 4.914-4.895 0-2.704-2.2-4.895-4.914-4.895-2.714 0-4.914 2.191-4.914 4.895 0 2.703 2.2 4.895 4.914 4.895z" stroke="#000" stroke-width=".26"/>
|
|
24
|
+
<path d="M464.108 117.461h-55.449v96.829h55.449v-96.829z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
|
|
25
|
+
<path d="M408.879 214.898v-97.217h55.009v97.217h-55.009z" stroke="#000" stroke-width=".44"/>
|
|
26
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M406.156 237.16h-96.524a6.074 6.074 0 01-6.075-6.073V82.981a6.073 6.073 0 016.075-6.073h96.524a6.073 6.073 0 016.075 6.073v148.106a6.073 6.073 0 01-6.075 6.073z" fill="#fff" stroke="#000" stroke-width=".538"/>
|
|
27
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M406.156 237.16h-96.524a6.074 6.074 0 01-6.075-6.073V82.981a6.073 6.073 0 016.075-6.073h96.524a6.073 6.073 0 016.075 6.073v148.106a6.073 6.073 0 01-6.075 6.073z" fill="#fff" stroke="#000" stroke-width=".538"/>
|
|
28
|
+
<path d="M404.14 93.05h-92.03v127.891h92.03V93.051z" fill="#EB1701" stroke="#000" stroke-width=".269"/>
|
|
29
|
+
<path d="M358.136 232.631a4.056 4.056 0 100-8.112 4.056 4.056 0 000 8.112zm-.523-145.66a1.512 1.512 0 100-3.024 1.512 1.512 0 000 3.024z" stroke="#000" stroke-width=".269"/>
|
|
30
|
+
<path d="M404.522 93.46h-92.691v126.623h92.691V93.461z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
|
|
31
|
+
<mask id="b" maskUnits="userSpaceOnUse" x="311" y="93" width="94" height="128">
|
|
32
|
+
<path d="M404.522 93.46h-92.691v126.623h92.691V93.461z" fill="#0072EE"/>
|
|
33
|
+
</mask>
|
|
34
|
+
<g mask="url(#b)">
|
|
35
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 39.693c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.055c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.636-19.137-35.124-19.137-56.362 0-51.46 41.892-93.353 93.353-93.353 51.461 0 93.353 41.893 93.353 93.353 0 21.238-7.235 40.726-19.138 56.362zm-115.055-85.534a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
|
|
36
|
+
</g>
|
|
37
|
+
<path d="M312.051 220.691V93.681h92.251v127.01h-92.251z" stroke="#000" stroke-width=".44"/>
|
|
38
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M329.918 230.548c0 4.097-3.335 7.418-7.45 7.418h-45.395c-4.115 0-7.45-3.321-7.45-7.418V118.357c0-4.097 3.335-7.418 7.45-7.418h45.395c4.115 0 7.45 3.321 7.45 7.418v112.191z" fill="#fff" stroke="#000" stroke-width=".493"/>
|
|
39
|
+
<path d="M325.71 127.602h-51.914v92.337h51.914v-92.337z" fill="#EB1701" stroke="#000" stroke-width=".247"/>
|
|
40
|
+
<path clip-rule="evenodd" d="M305.337 122.846c0 .294-.204.532-.454.532h-9.324c-.251 0-.455-.238-.455-.532v-1.197c0-.294.204-.532.455-.532h9.324c.25 0 .454.238.454.532v1.197z" stroke="#000" stroke-width=".247"/>
|
|
41
|
+
<path d="M300.235 117.861a1.392 1.392 0 10.001-2.783 1.392 1.392 0 00-.001 2.783zm-.447 115.488c2.571 0 4.656-2.076 4.656-4.638s-2.085-4.639-4.656-4.639c-2.572 0-4.657 2.077-4.657 4.639 0 2.562 2.085 4.638 4.657 4.638z" stroke="#000" stroke-width=".247"/>
|
|
42
|
+
<path d="M325.899 127.391h-52.138v92.691h52.138v-92.691z" fill="#EB1701" stroke="#000" stroke-width=".208"/>
|
|
43
|
+
<mask id="c" maskUnits="userSpaceOnUse" x="273" y="127" width="53" height="94">
|
|
44
|
+
<path d="M325.899 127.391h-52.138v92.691h52.138v-92.691z" fill="#0072EE"/>
|
|
45
|
+
</mask>
|
|
46
|
+
<g mask="url(#c)">
|
|
47
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M285.362 39.693c-64.413 0-116.691 52.278-116.691 116.692 0 64.413 52.278 116.691 116.691 116.691 64.414 0 116.692-52.278 116.692-116.691 0-64.414-52.278-116.692-116.692-116.692zm74.214 173.055c-16.686-20.304-57.178-27.189-74.215-27.189-17.037 0-57.529 6.885-74.216 27.189-11.902-15.636-19.137-35.124-19.137-56.362 0-51.46 41.892-93.353 93.353-93.353 51.461 0 93.353 41.893 93.353 93.353 0 21.238-7.235 40.726-19.138 56.362zm-115.055-85.534a40.737 40.737 0 0140.842-40.842 40.738 40.738 0 0140.842 40.842 40.738 40.738 0 01-40.842 40.842 40.737 40.737 0 01-40.842-40.842z" fill="#fff"/>
|
|
48
|
+
</g>
|
|
49
|
+
<path d="M273.981 220.689v-93.078h51.698v93.078h-51.698z" stroke="#000" stroke-width=".44"/>
|
|
50
|
+
<defs>
|
|
51
|
+
<clipPath id="display-personalDetails-header__clip0">
|
|
52
|
+
<path fill="#fff" transform="translate(118.022 108.781)" d="M0 0h45.142v13.166H0z"/>
|
|
53
|
+
</clipPath>
|
|
54
|
+
</defs>
|
|
55
|
+
</svg>
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<svg width="560" height="315" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="560" height="315" rx="4" fill="#F5F5F5"/>
|
|
3
|
+
<ellipse cx="282.623" cy="241.819" rx="137.962" ry="40.386" fill="#EEE"/>
|
|
4
|
+
<g opacity=".3">
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M385.789 115.327l-1.949 2.096 2.86.262 1.403 2.488 1.135-2.621 2.816-.557-2.159-1.881.337-2.834-2.468 1.458-2.608-1.193.633 2.782z" fill="#01000D"/>
|
|
6
|
+
<path d="M361.923 92.014c-2.619-.697-5.306.848-6.006 3.443-.7 2.596.85 5.268 3.469 5.965 2.619.698 5.306-.847 6.006-3.442.7-2.596-.85-5.269-3.469-5.966zm9.657 18.14a1.661 1.661 0 00-2.034 1.165 1.647 1.647 0 001.176 2.019 1.66 1.66 0 002.034-1.164 1.649 1.649 0 00-1.176-2.02z" stroke="#01000D"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M382.223 85.906l-4.262.616 3.084 2.987-.728 4.217 3.812-1.991 3.812 1.991-.728-4.217 3.085-2.987-4.263-.616-1.906-3.837-1.906 3.837z" fill="#01000D"/>
|
|
8
|
+
<ellipse rx="4.298" ry="4.322" transform="matrix(.2604 -.9655 -.96635 -.25725 371.55 69.594)" fill="#01000D"/>
|
|
9
|
+
</g>
|
|
10
|
+
<g opacity=".3">
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.891 187.154l.633-2.783-2.608 1.194-2.468-1.458.336 2.833-2.158 1.881 2.816.558 1.134 2.62 1.404-2.488 2.859-.262-1.948-2.095z" fill="#01000D"/>
|
|
12
|
+
<path d="M176.044 198.455a1.788 1.788 0 001.274-2.191 1.803 1.803 0 00-2.207-1.265 1.79 1.79 0 00-1.274 2.192 1.802 1.802 0 002.207 1.264zm-8.61-22.217a1.648 1.648 0 001.175-2.019 1.662 1.662 0 00-2.034-1.166 1.648 1.648 0 00-1.175 2.02 1.66 1.66 0 002.034 1.165z" stroke="#01000D"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M194.786 176.615l3.381-2.65-4.174-1.055-1.492-4.014-2.299 3.618-4.304.17 2.753 3.29-1.168 4.119 4.001-1.584 3.582 2.376-.28-4.27z" fill="#01000D"/>
|
|
14
|
+
<ellipse rx="4.304" ry="4.316" transform="matrix(.26003 .96413 .9677 -.25761 196.957 204.403)" fill="#01000D"/>
|
|
15
|
+
</g>
|
|
16
|
+
<g filter="url(#display-personalDetails-header__filter0_i)">
|
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M218.65 49c0-7.732 6.268-14 14-14h96.057c7.732 0 14 6.268 14 14v190.233c0 7.732-6.268 14-14 14H232.65c-7.732 0-14-6.268-14-14V49z" fill="#2B80AA"/>
|
|
18
|
+
</g>
|
|
19
|
+
<g filter="url(#display-personalDetails-header__filter1_i)">
|
|
20
|
+
<ellipse cx="289.786" cy="45.743" rx="1.707" ry="1.696" fill="#069"/>
|
|
21
|
+
</g>
|
|
22
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M224.34 50.652c0-5.523 4.477-10 10-10h15.283a2 2 0 012 2v1.177a7 7 0 007 7h44.164a7 7 0 007-7v-1.177a2 2 0 012-2h15.228c5.523 0 10 4.477 10 10v186.926c0 5.523-4.477 10-10 10H234.34c-5.523 0-10-4.477-10-10V50.652z" fill="#EEE"/>
|
|
23
|
+
<g filter="url(#display-personalDetails-header__filter2_d)">
|
|
24
|
+
<rect x="228.895" y="61.01" width="103.57" height="166.219" rx="1" fill="#fff"/>
|
|
25
|
+
</g>
|
|
26
|
+
<g filter="url(#display-personalDetails-header__filter3_i)">
|
|
27
|
+
<rect x="269.865" y="44.047" width="15.934" height="3.392" rx="1.5" fill="#069"/>
|
|
28
|
+
</g>
|
|
29
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M243.106 150.336a1.696 1.696 0 100 3.392h74a1.696 1.696 0 100-3.392h-74zm-.002 9.044a1.696 1.696 0 000 3.392h56.929a1.696 1.696 0 100-3.392h-56.929zm-1.696 10.741c0-.937.76-1.697 1.696-1.697h63.758a1.696 1.696 0 010 3.393h-63.758c-.936 0-1.696-.76-1.696-1.696zm1.696 7.352a1.696 1.696 0 000 3.392h56.929a1.696 1.696 0 100-3.392h-56.929z" fill="#E4E4E4"/>
|
|
30
|
+
<ellipse opacity=".5" cx="280.444" cy="106.692" rx="24.47" ry="24.311" fill="#EEE"/>
|
|
31
|
+
<mask id="a" maskUnits="userSpaceOnUse" x="256" y="82" width="50" height="50">
|
|
32
|
+
<ellipse cx="280.682" cy="106.801" rx="24.47" ry="24.311" fill="#EEE"/>
|
|
33
|
+
</mask>
|
|
34
|
+
<g mask="url(#a)">
|
|
35
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M280.679 109.629c4.714 0 8.536-3.797 8.536-8.48 0-4.684-3.822-8.481-8.536-8.481-4.715 0-8.536 3.797-8.536 8.481 0 4.683 3.821 8.48 8.536 8.48zm.57 36.181c9.428 0 17.072-7.594 17.072-16.961 0-9.368-7.644-16.961-17.072-16.961-9.429 0-17.072 7.593-17.072 16.961 0 9.367 7.643 16.961 17.072 16.961z" fill="#01000D"/>
|
|
36
|
+
</g>
|
|
37
|
+
<g filter="url(#display-personalDetails-header__filter4_d)">
|
|
38
|
+
<circle cx="296.93" cy="124.979" r="8" fill="#fff"/>
|
|
39
|
+
</g>
|
|
40
|
+
<ellipse cx="334.716" cy="235.709" rx="31.299" ry="31.095" fill="#2B80AA"/>
|
|
41
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M348.817 226.238c1.287 1.191 1.287 3.124 0 4.315l-15.318 14.18c-1.931 1.788-5.061 1.788-6.992 0l-5.899-5.46c-1.287-1.192-1.287-3.124 0-4.316 1.287-1.192 3.375-1.192 4.662 0l4.733 4.381 14.152-13.1c1.287-1.192 3.374-1.192 4.662 0z" fill="#fff"/>
|
|
42
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M299.075 128.875h-4.043v-.092l1.128-.477v-5.866h-.009s-.333-.003-.639.068c-.147.045-.315.092-.545.28a87.607 87.607 0 00-1.431 1.293l-.13-.045.18-1.911h6.791l.225 1.911-.129.045s-1.202-1.104-1.431-1.293c-.23-.188-.398-.236-.545-.28-.306-.071-.571-.063-.571-.063l.001.004v5.857l1.145.47.003.099z" fill="#01000D"/>
|
|
43
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M299.075 128.778h-4.043v-.091l1.128-.471v-5.794h-.009s-.333-.003-.639.068c-.147.044-.315.09-.545.277a84.863 84.863 0 00-1.431 1.276l-.13-.044.18-1.888h6.791l.225 1.888-.129.044s-1.202-1.09-1.431-1.277c-.23-.186-.398-.233-.545-.276-.306-.07-.571-.063-.571-.063l.001.004v5.785l1.145.464.003.098z" fill="#000"/>
|
|
44
|
+
<defs>
|
|
45
|
+
<filter id="display-personalDetails-header__filter0_i" x="218.65" y="35" width="124.057" height="218.233" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
46
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
47
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
48
|
+
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
49
|
+
<feOffset dx="3"/>
|
|
50
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
51
|
+
<feColorMatrix values="0 0 0 0 0.854902 0 0 0 0 0.866667 0 0 0 0 0.890196 0 0 0 0.5 0"/>
|
|
52
|
+
<feBlend in2="shape" result="effect1_innerShadow"/>
|
|
53
|
+
</filter>
|
|
54
|
+
<filter id="display-personalDetails-header__filter1_i" x="288.079" y="44.047" width="3.414" height="3.392" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
55
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
56
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
57
|
+
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
58
|
+
<feOffset dx="1"/>
|
|
59
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
60
|
+
<feColorMatrix values="0 0 0 0 0.827451 0 0 0 0 0.835294 0 0 0 0 0.858824 0 0 0 0.5 0"/>
|
|
61
|
+
<feBlend in2="shape" result="effect1_innerShadow"/>
|
|
62
|
+
</filter>
|
|
63
|
+
<filter id="display-personalDetails-header__filter2_d" x="228.895" y="61.01" width="105.57" height="169.219" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
64
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
65
|
+
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
66
|
+
<feOffset dx="2" dy="3"/>
|
|
67
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0"/>
|
|
68
|
+
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
69
|
+
<feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
70
|
+
</filter>
|
|
71
|
+
<filter id="display-personalDetails-header__filter3_i" x="269.865" y="44.047" width="15.934" height="3.392" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
72
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
73
|
+
<feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
74
|
+
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
75
|
+
<feOffset dx="1"/>
|
|
76
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
77
|
+
<feColorMatrix values="0 0 0 0 0.827451 0 0 0 0 0.835294 0 0 0 0 0.858824 0 0 0 0.5 0"/>
|
|
78
|
+
<feBlend in2="shape" result="effect1_innerShadow"/>
|
|
79
|
+
</filter>
|
|
80
|
+
<filter id="display-personalDetails-header__filter4_d" x="284.93" y="114.979" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
81
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
82
|
+
<feColorMatrix in="SourceAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
|
83
|
+
<feOffset dy="2"/>
|
|
84
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
85
|
+
<feColorMatrix values="0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0 0.0392157 0 0 0 0.08 0"/>
|
|
86
|
+
<feBlend in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
|
87
|
+
<feBlend in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
|
88
|
+
</filter>
|
|
89
|
+
</defs>
|
|
90
|
+
</svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<svg width="560" height="316" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M559.37 314.957h-81.399c-.749-1.735-.384-3.609-.7-5.403-.828-4.634-1.321-9.347-2.376-13.931-1.104-4.792-1.735-9.909-4.999-13.843-6.339-7.661-13.004-14.996-21.158-20.872-4.042-2.909-8.114-5.097-13.251-4.309-1.538-.295-2.928.602-4.436.503-5.936-7.463-12.601-13.99-21.987-17.007.049-.73.424-1.282 1.104-1.528 3.648-1.332 5.975-4.496 9.16-6.488 3.756-2.356 7.197-5.334 11.17-7.207 3.934-1.864 4.338-4.437 2.524-7.917a2316.021 2316.021 0 01-19.708-38.817c-4.979-10.017-10.471-19.768-15.322-29.854-4.525-9.405-9.711-18.486-14.503-27.764-5.137-9.928-10.116-19.925-15.243-29.854a3881.92 3881.92 0 00-17.283-33.048c-2.238-4.23-3.993-8.726-6.803-12.65-.168-.335-.335-.67-.503-.996-.039-1.518-.877-2.593-2.001-3.49v-.503c-.533-1.666-1.055-3.332-2.495-4.495v-.503c-.217-1.302-.808-2.347-1.991-2.998-.207-.877-.355-1.784-.996-2.494.089-1.183-.493-1.962-1.499-2.494-.207-.878-.355-1.785-.995-2.495-.178-1.025-.513-1.952-1.499-2.494l-.503-1.499c-.355-1.34-.759-2.652-1.992-3.49-.187-1.173-.907-2.11-1.409-3.155-2.13-4.447-4.832-8.617-6.596-13.251.995-.02 1.991-.06 2.997-.06h230.975c4.151 0 3.757-.403 3.757 3.747-.03 103.553-.04 207.106-.04 310.659zm-422.493 0c-44.948 0-89.897-.01-134.836.049-1.706 0-2.041-.335-2.041-2.041C.04 208.821.04 104.686.04.542l19.984.06c-.088 1.064.503 1.902.927 2.8 2.041 4.337 4.111 8.656 6.083 13.014 2.998 6.615 5.916 13.27 8.894 19.906 2.198 4.89 4.426 9.77 6.645 14.66 1.843 4.053 3.677 8.105 5.53 12.147 1.41 3.076 2.87 6.143 4.28 9.229C55.242 78.597 58.15 84.81 60.9 91.1c1.854 4.25 4.062 8.351 5.798 12.61 2.602 6.369 5.777 12.453 8.44 18.782 3.49 8.302 7.551 16.357 11.278 24.55 2.919 6.399 5.65 12.876 8.558 19.285 2.021 4.437 4.27 8.775 6.281 13.221 2.869 6.33 5.56 12.729 8.439 19.049 2.879 6.32 5.926 12.561 8.824 18.88 2.968 6.468 5.827 12.975 8.775 19.453 4.427 9.711 8.943 19.383 13.31 29.124 3.56 7.947 7.286 15.805 11.457 23.456.651 1.193 1.331 1.597 2.544.996-.819 2.474-1.755 4.929-2.416 7.444-1.449 5.481-3.747 10.726-4.407 16.415-1.716-1.055-3.687-1.429-5.561-2.05-4.052-1.341-4.062-1.292-5.344 2.642z" fill="#FEC2C6"/>
|
|
3
|
+
<path d="M435.467 256.609c5.147-.789 9.209 1.39 13.251 4.309 8.164 5.876 14.819 13.211 21.158 20.872 3.264 3.944 3.895 9.051 4.999 13.842 1.055 4.585 1.558 9.288 2.376 13.932.316 1.794-.049 3.667.7 5.403H357.598c-.049-.415-.049-.838-.167-1.233a28790.724 28790.724 0 00-9.249-30.179c-.345-1.114-.719-2.209-1.577-3.067.079-4.762-2.258-8.912-3.53-13.31-1.893-6.576-4.19-13.034-6.576-19.452-1.696-4.555-2.889-9.317-5.265-13.616-1.252-4.249-2.455-8.518-4.565-12.443-.128-1.587-.68-3.046-1.203-4.535-2.297-6.556-4.919-12.994-6.822-19.679-1.873-6.576 1.134-11.654 7.818-13.291 2.159.286 3.254.069 2.781-2.8-.503-3.095-.74-6.467 1.419-9.307.306-.404.424-.946.01-1.37-3.421-3.51-3.806-7.888-3.628-12.433.937-2.475 1.617-5.048 3.323-7.178.453-.571.995-1.35.128-1.952-2.228-1.528-2.564-4.17-3.806-6.26-.099-.661-.197-1.322-.306-1.982.02-1.706.03-3.411.05-5.117l.236-1.962c.454-.878.75-1.883 1.381-2.603 3.204-3.648 4.121-7.897 3.519-12.59-.029-.247.01-.493.01-.74 4.506 1.745 7.858 4.92 11.23 8.292 5.985 5.985 4.24 15.321.207 20.428-.808 1.026-.71 1.558.059 2.505 1.41 1.715 3.076 3.46 3.352 5.708.602 4.95.316 9.81-3.371 13.754-.622.671-1.095 1.302-.464 2.169 2.416 3.313 1.765 6.981.947 10.51-.71 3.067-2.653 5.334-5.906 6.074-1.814.404-2.228 1.193-.937 2.593 2.475 2.691 3.56 6.103 4.989 9.346 1.834 4.161 3.757 8.282 5.679 12.403 2.051 4.408 4.23 8.755 6.152 13.212 1.41 3.273 2.909 6.487 4.605 9.613 2.78 5.156 5.6 10.293 8.291 15.489 2.396 4.624 4.713 9.297 7.661 13.616h-.01c.02.414.148.778.523 1.015.848.109 1.025.799 1.163 1.43 1.262 5.6 4.24 10.53 6.202 15.854 1.36 3.697 3.52 4.91 7.71 4.781-1.085-2.257-2.297-4.426-3.205-6.714-2.533-6.389-4.89-12.847-6.872-19.433-2.001-6.635-4.022-13.27-6.043-19.906.483-1.104 1.636-1.291 2.524-1.853 5.994-3.826 13.566-3.559 18.742 2.336.898 1.016 1.144 2.653 2.721 3.057 1.282 5.491 4.585 10.056 6.961 15.035 2.879 6.034 6.34 11.792 9.13 17.865 1.607 3.501 3.687 5.689 7.621 5.857.493.02 1.065.286 1.371-.207.335-.532-.207-.887-.513-1.252-3.51-4.131-5.797-9.031-8.548-13.636-2.455-4.111-4.555-8.429-6.724-12.699-2.169-4.279-4.22-8.617-6.33-12.935 2.504-2.041 5.472-2.179 8.499-2.031 9.386 3.017 16.051 9.544 21.976 17.007.01.582.158 1.114.464 1.637 3.944 6.763 7.937 13.507 11.762 20.34 2.189 3.924 3.628 4.841 8.42 4.515 0-.157.069-.364-.01-.473-4.752-6.261-8.637-13.093-12.797-19.728-1.253-2.13-3.007-4.171-3.343-6.833z" fill="#FDD4AF"/>
|
|
4
|
+
<path d="M331.265 234.101c2.376 4.298 3.569 9.06 5.265 13.615 2.386 6.419 4.683 12.887 6.576 19.453 1.262 4.397 3.609 8.548 3.53 13.31-1.479 1.193-2.81 2.475-2.998 4.516-3.578 2.967-4.909 7.315-6.773 11.279-2.761 5.896-3.076 12.265-2.711 18.673h-81.399c1.025-3.5 1.972-7.039 3.125-10.5.602-1.794.109-2.573-1.636-3.066-3.027-.858-5.995-1.893-8.992-2.85.187-1.695 1.272-3.046 1.785-4.614 2.05-6.379 4.15-12.748 6.221-19.117a6.592 6.592 0 011.498-2.544c5.354-5.669 10.688-11.348 16.032-17.027.67-.71 1.587-1.291 1.37-2.494 1.075-.05 2.159-.128 3.234-.128 13.872-.01 27.744.078 41.616-.05 5.857-.059 10.146-2.731 12.768-8.242 1.588-3.362 1.203-6.783 1.489-10.214z" fill="#FEBFC2"/>
|
|
5
|
+
<path d="M147.792 314.355c.661-5.689 2.958-10.944 4.407-16.416.661-2.524 1.607-4.969 2.426-7.443.049-.346.088-.691.138-1.026.926-.976 1.064-2.189 1.055-3.451.423-3.579 2.07-6.822 2.859-10.273.572-2.494 1.705-2.544 3.677-1.972 3.668 1.065 7.207 2.534 10.984 3.234 1.636.582 3.253 1.242 4.929 1.715 9.939 2.82 19.857 5.709 29.578 9.229-.779 4.289-2.346 8.351-3.51 12.531-1.35 4.831-3.302 9.495-4.002 14.493h-52.442c.246-.256.216-.453-.099-.621z" fill="#FEFEFE"/>
|
|
6
|
+
<path d="M200.303 314.957c.7-5.008 2.652-9.672 4.003-14.493 1.173-4.181 2.741-8.243 3.51-12.531 3.973.443 7.641 2.07 11.476 3.026 5.137 1.578 10.234 3.303 15.43 4.684 3.51.936 6.872 2.425 10.51 2.898 2.997.957 5.975 1.982 8.992 2.85 1.745.493 2.238 1.271 1.636 3.066-1.163 3.461-2.1 6.99-3.125 10.5h-52.432z" fill="#F5F5F5"/>
|
|
7
|
+
<path d="M20.024.601L.04.542C.148.394-.217.03.286.04c.66.02 1.33.01 2.001.01 185.11 0 370.229 0 555.338-.049 1.874 0 2.298.424 2.298 2.287-.05 103.474-.05 206.948-.079 310.422 0 .73.572 1.696-.474 2.248V4.289c0-4.151.395-3.747-3.756-3.747-76.992-.01-153.983 0-230.975 0-.996 0-1.992.04-2.997.06-.996-.02-1.992-.06-2.998-.06C220.1.532 121.556.532 23.012.532c-.996.01-1.992.05-2.988.07z" fill="#FEFEFE"/>
|
|
8
|
+
<path d="M334.144 314.958c-.365-6.409-.049-12.778 2.711-18.674 1.854-3.963 3.195-8.321 6.774-11.279.098.128.256.246.295.394 2.406 9.85 4.802 19.709 7.208 29.559h-16.988z" fill="#FDD4AF"/>
|
|
9
|
+
<path d="M351.121 314.958a14814.58 14814.58 0 00-7.207-29.559c-.04-.148-.197-.266-.296-.394.187-2.041 1.519-3.333 2.997-4.516.848.858 1.233 1.952 1.578 3.067 3.086 10.056 6.172 20.113 9.248 30.179.118.394.118.818.168 1.232-2.16-.009-4.319-.009-6.488-.009z" fill="#FEC08A"/>
|
|
10
|
+
<path d="M147.792 314.356c.316.168.345.365.069.602h-10.983c1.282-3.934 1.292-3.983 5.354-2.652 1.873.621 3.845.995 5.56 2.05z" fill="#FE3F4D"/>
|
|
11
|
+
<path d="M20.025.601c.995-.02 1.991-.059 2.997-.059 98.544 0 197.088 0 295.633.01.995 0 1.991.04 2.997.059 1.755 4.634 4.456 8.804 6.596 13.26.503 1.036 1.222 1.973 1.41 3.156-.543 1.853.68 2.701 1.991 3.49l.503 1.499c-.601 1.488.158 2.169 1.499 2.494.65.71.788 1.617.996 2.494.069 1.095.138 2.18 1.498 2.495.651.71.789 1.617.996 2.494.029 1.42.621 2.465 1.992 2.998v.502c-.03 1.972.621 3.57 2.494 4.496v.503c.158 1.46.394 2.87 2.001 3.49.168.336.336.67.503.996-.848 1.844.188 3.352.947 4.841 4.772 9.297 9.603 18.555 14.404 27.843 1.233 2.376 3.126 4.486-.217 7.128-1.35 1.065-2.307 2.702-4.17 2.978-1.371.207-1.952 1.222-2.603 2.12-.947 1.31-1.785 2.602-3.668 2.583-.503 0-.956.335-.956.946 0 .483.365.779.769.848.937.158 1.568.523 1.479 1.597-5.995-2.03-12.157-2.869-18.477-2.455-.019-19.62-.069-39.24-.039-58.87.01-5.58-1.282-10.648-4.979-14.947-.049-1.005-.749-1.084-1.518-1.045-2.998-1.804-6.34-2.475-9.741-2.484-14.385-.07-28.76-.01-43.145 0-12.561-.01-25.122-.09-37.682.03-3.136.029-6.291.58-8.982 2.494-4.733 3.371-6.172 8.32-6.212 13.714-.108 17.54-.059 35.08-.079 52.62-.542-.1-.926-.405-1.025-.957-.453-2.583-1.962-4.742-2.908-7.128-1.282-3.244-3.323-4.2-8.44-3.915-3.717.208-4.703.996-5.61 4.674-1.39 5.63-2.672 11.279-4.121 16.889-2.012 7.779-4.21 15.509-6.212 23.288-2.169 8.42-3.983 16.938-6.379 25.289-1.981 6.921-2.317 14.04-3.115 21.069-.779 6.863-1.952 13.596-4.003 20.153a36.623 36.623 0 00-1.647 9.238c-.236 4.802 1.203 9.317 1.982 13.951 1.075 6.448 2.761 12.778 3.362 19.315.661 7.089 3.017 14.049.247 21.306-1.992 5.245-3.333 10.756-4.615 16.238-1.005 4.279-2.957 8.282-3.45 12.679-3.767-.7-7.316-2.159-10.984-3.234-1.971-.571-3.105-.522-3.677 1.972-.789 3.451-2.426 6.695-2.859 10.274-1.44.818-1.174 2.159-1.055 3.45-.04.346-.089.691-.138 1.026-1.223.611-1.893.197-2.544-.996-4.18-7.651-7.907-15.509-11.457-23.455-4.357-9.741-8.883-19.413-13.31-29.125-2.948-6.478-5.807-12.995-8.775-19.452-2.898-6.31-5.955-12.551-8.824-18.881-2.879-6.32-5.57-12.729-8.439-19.048-2.012-4.447-4.26-8.775-6.28-13.222-2.91-6.399-5.65-12.886-8.559-19.285-3.727-8.193-7.789-16.258-11.279-24.549-2.662-6.33-5.846-12.413-8.44-18.783-1.745-4.259-3.943-8.37-5.797-12.61-2.75-6.29-5.659-12.501-8.518-18.742-1.41-3.086-2.86-6.143-4.28-9.229a2684.086 2684.086 0 01-5.53-12.146c-2.219-4.88-4.447-9.761-6.645-14.661-2.978-6.626-5.896-13.28-8.894-19.906-1.971-4.368-4.052-8.686-6.083-13.015-.434-.887-1.025-1.725-.936-2.79z" fill="#FEB9BD"/>
|
|
12
|
+
<path d="M350.125 95.842c.089-1.075-.542-1.44-1.479-1.597-.414-.07-.769-.365-.769-.848-.01-.611.444-.947.957-.947 1.873.02 2.711-1.271 3.667-2.583.651-.897 1.233-1.912 2.603-2.12 1.873-.285 2.83-1.912 4.171-2.977 3.342-2.642 1.439-4.752.217-7.128-4.802-9.278-9.633-18.546-14.405-27.843-.769-1.489-1.804-3.007-.946-4.841 2.81 3.924 4.564 8.42 6.803 12.65a3909.389 3909.389 0 0117.283 33.048c5.127 9.929 10.106 19.936 15.243 29.854 4.801 9.278 9.977 18.358 14.503 27.764 4.86 10.086 10.342 19.837 15.321 29.854a2386.272 2386.272 0 0019.709 38.817c1.814 3.49 1.41 6.063-2.524 7.917-3.973 1.873-7.404 4.851-11.171 7.207-3.184 1.991-5.511 5.156-9.159 6.487-.68.247-1.045.789-1.104 1.529-3.027-.148-5.995-.01-8.499 2.031-1.41.039-1.873 1.488-2.968 1.981-1.577-.404-1.824-2.041-2.721-3.056-5.166-5.896-12.738-6.162-18.743-2.337-.887.572-2.04.75-2.523 1.854-.908.513-1.479 1.311-1.824 2.258-1.065 2.957-.691 5.994-.484 9.031.276 4.052 2.288 7.69 2.83 11.673-2.948-4.318-5.265-8.991-7.661-13.616-2.691-5.195-5.511-10.332-8.291-15.489-1.686-3.135-3.185-6.349-4.605-9.612-1.922-4.457-4.111-8.805-6.152-13.212-1.913-4.121-3.845-8.242-5.679-12.403-1.43-3.244-2.514-6.655-4.989-9.347-1.291-1.41-.877-2.189.937-2.593 3.253-.729 5.196-3.007 5.906-6.073.818-3.54 1.469-7.197-.947-10.51-.631-.868-.158-1.499.464-2.169 3.687-3.944 3.973-8.805 3.371-13.754-.276-2.248-1.942-3.993-3.352-5.709-.779-.946-.877-1.479-.059-2.504 4.033-5.107 5.778-14.444-.207-20.428-3.372-3.372-6.724-6.547-11.23-8.292 0-.819-.01-1.637-.01-2.465 2.899-1.272 5.985-1.903 8.992-2.83 2.84-.877 5.709-1.883 8.095-3.766 2.307-1.814 4.279-3.983 4.397-7.118.069-2.386-1.518-4.082-2.968-5.788z" fill="#FEBEC1"/>
|
|
13
|
+
<path d="M435.468 256.61c.325 2.662 2.09 4.703 3.401 6.803 4.161 6.635 8.046 13.478 12.798 19.729.079.098.01.305.01.473-4.792.325-6.231-.592-8.42-4.516-3.826-6.832-7.819-13.576-11.762-20.34a3.394 3.394 0 01-.464-1.636c1.509.089 2.909-.819 4.437-.513z" fill="#FEC08A"/>
|
|
14
|
+
<path d="M341.636 39.97c-1.873-.916-2.524-2.523-2.494-4.495 1.429 1.163 1.962 2.84 2.494 4.495zm-9.996-19.463c-1.312-.799-2.544-1.637-1.992-3.49 1.242.838 1.637 2.149 1.992 3.49zm11.988 23.456c-1.607-.631-1.843-2.041-2.001-3.49 1.124.907 1.962 1.971 2.001 3.49zm-4.496-8.981c-1.37-.533-1.972-1.568-1.991-2.998 1.183.651 1.784 1.696 1.991 2.998zm-5.491-10.481c-1.331-.335-2.1-1.005-1.499-2.494.986.542 1.321 1.469 1.499 2.494zm2.494 4.989c-1.36-.316-1.429-1.4-1.498-2.495 1.005.532 1.587 1.311 1.498 2.494z" fill="#FEBEC1"/>
|
|
15
|
+
<path d="M326.493 184.143c-6.685 1.637-9.692 6.714-7.819 13.29 1.903 6.685 4.526 13.133 6.823 19.68.522 1.488 1.075 2.948 1.203 4.535-.247 4.072-1.104 4.89-5.147 4.89-24.776 0-49.553 0-74.33.01-.995 0-1.991.069-2.987.109a40.8 40.8 0 00-1.025-.198c-.266-2.474-1.183-4.772-1.943-7.108-1.626-4.969-3.174-9.968-4.752-14.957 2.357 2.889 5.452 3.648 9.071 3.638 20.803-.079 41.596-.039 62.4-.049 1.074 0 2.179 0 3.234-.187 4.742-.829 7.71-5.768 6.231-10.284-1.529-4.683-4.181-6.596-9.229-6.596-21.049-.01-42.099-.01-63.149 0-5.58 0-8.518 2.317-9.958 7.799-.848-.237-1.065-.976-1.291-1.686-1.874-5.738-3.717-11.476-5.62-17.195-1.134-3.401-1.854-6.95-3.727-10.076a.387.387 0 01-.454.03c.454-1.548.296-3.136.296-4.703.01-38.639.01-77.268.01-115.907 0-4.022 1.025-5.058 4.979-5.058 14.385-.01 28.77 0 43.154-.01 3.244 0 6.478-.078 9.722-.118.907.04 1.814.119 2.721.119 12.107.01 24.224 0 36.332.02.966 0 2.001-.287 2.888.384-.887.67-1.922.384-2.898.384-11.723.02-23.436.01-35.159.01-.66 0-1.331-.01-1.991.02-1.075.04-1.479.414-1.035 1.577 2.031 5.423 4.219 10.796 5.905 16.327 1.036 3.392 2.919 6.517 3.175 10.146-.513-.266-1.025-.523-1.518-.809-7.523-4.348-15.598-5.383-23.752-2.74-14.098 4.554-21.68 16.504-20.182 31.263.779 7.651 4.171 14.04 10.323 18.822 4.25 4.042 9.445 6.024 15.164 6.606 8.272.848 15.775-1.045 22.075-6.754 1.291-.769 2.277-1.844 3.293-2.948 2.849-3.096 4.338-6.941 6.201-10.589.286.493.661.956.858 1.489 2.228 6.152 4.595 12.265 6.557 18.506 1.035 3.293 2.967 6.32 3.046 9.909-.986.059-1.981.177-2.967.177-20.873.01-41.735.01-62.607.01-3.155 0-6.32-.03-9.475.01-2.997.029-3.826.887-3.845 3.874-.01 2.988-.01 5.985 0 8.972.01 3.658.621 4.329 4.377 4.329 24.609.019 49.218.01 73.827.01.335 0 .661 0 .996-.01 2.189-.069 3.401-1.055 3.303-3.392-.05-1.321.079-2.652.118-3.973.187.158.463.276.532.473 2.081 6.004 4.122 12.019 6.212 18.013.394 1.124.601 2.406 1.893 2.968l-.059 16.948zm-50.056-5.817c12.561 0 25.112.01 37.672-.01 3.047 0 3.629-.601 3.648-3.658.02-3.243-.059-6.487.02-9.721.059-2.307-.927-3.372-3.244-3.372-25.368.02-50.726.02-76.094.01-2.15 0-3.224.917-3.175 3.155.069 3.155.01 6.32.02 9.475 0 3.638.483 4.111 4.229 4.111 12.315.01 24.619.01 36.924.01z" fill="#FE3F4D"/>
|
|
16
|
+
<path d="M292.142 72.99c-.256-3.629-2.139-6.764-3.174-10.146-1.686-5.531-3.875-10.904-5.906-16.327-.434-1.163-.04-1.538 1.035-1.578.661-.02 1.331-.02 1.992-.02 11.722 0 23.435.01 35.158-.01.976 0 2.002.277 2.899-.384.414 0 .749.158.966.523.039.582.365.887.927.956.867.907.552 2.041.552 3.086.02 24.244.01 48.489.02 72.733 0 3.983.059 7.966.088 11.949l-.236 1.962c-1.252 1.696-1.183 3.402-.05 5.117.099.661.198 1.321.306 1.982v15.41c-.059 2.988-.108 5.975-.168 8.962-1.301-.562-1.508-1.843-1.893-2.967-2.08-6.005-4.131-12.009-6.211-18.013-.069-.198-.355-.316-.532-.474-.04-1.873-.089-3.746-.109-5.619-.029-3.284-.335-3.668-3.628-4.378-.079-3.579-2.011-6.616-3.047-9.909-1.962-6.241-4.328-12.353-6.556-18.506-.187-.532-.562-.995-.858-1.488 1.055-5.423 1.538-10.836.059-16.278-1.873-6.941-6.043-12.265-11.634-16.584z" fill="#FE011F"/>
|
|
17
|
+
<path d="M326.7 133.771c-.03-3.983-.089-7.966-.089-11.949-.01-24.244 0-48.489-.02-72.733 0-1.045.316-2.179-.552-3.086-.02-.601-.355-.897-.927-.956-.227-.355-.552-.523-.966-.523-.887-.67-1.923-.384-2.889-.384-12.107-.02-24.224-.01-36.332-.02-.907 0-1.814-.079-2.721-.118-.029-1.43-.71-2.662-1.193-3.964-1.183-3.194-2.691-6.28-3.372-9.642 2.071.266 4.082-.296 6.133-.404.69-.04 1.725.217 1.715-.858 0-1.124-1.045-1.085-1.863-1.095-2.465-.029-4.94-.029-7.404-.049.009-.67-.336-1.232-.533-1.843-1.094-3.392-3.046-6.478-3.46-10.096 14.384-.01 28.759-.07 43.144 0 3.402.02 6.744.68 9.741 2.484.335.602.868.907 1.518 1.045 3.698 4.309 4.989 9.377 4.979 14.947-.029 19.62.02 39.24.04 58.87-.02 7.326-.03 14.651-.049 21.977 0 .818.009 1.636.009 2.465-.009.246-.049.502-.009.739.611 4.693-.316 8.942-3.52 12.59-.631.71-.927 1.726-1.38 2.603z" fill="#FEFEFE"/>
|
|
18
|
+
<path d="M244.235 226.667c.996-.04 1.992-.109 2.988-.109 24.776-.01 49.553 0 74.329-.01 4.043 0 4.891-.818 5.147-4.89 2.11 3.934 3.313 8.193 4.565 12.443-.286 3.431.099 6.852-1.499 10.214-2.622 5.511-6.911 8.193-12.768 8.242-13.872.129-27.744.04-41.616.05-1.075 0-2.159.088-3.234.128-3.204-.04-6.418-.02-9.623-.148-3.273-.128-6.566.345-9.81-.365-.897-4.22-2.78-8.104-4.101-12.176-1.459-4.457-3.471-8.745-4.378-13.379zm31.146 18.427c5.235 0 10.481-.049 15.716.02 2.238.029 3.204-.898 3.106-3.126-.079-1.903-.03-3.825-.02-5.728.01-1.725-.799-2.642-2.554-2.642-10.806 0-21.611 0-32.427.009-1.627 0-2.445.858-2.465 2.475-.01 1.824-.02 3.658-.01 5.482.02 3.066.434 3.5 3.431 3.51 5.078.01 10.155 0 15.223 0z" fill="#ECECEC"/>
|
|
19
|
+
<path d="M374.113 263.541c-.552-3.984-2.554-7.622-2.83-11.674-.207-3.037-.582-6.073.483-9.031.345-.947.917-1.745 1.824-2.258 2.012 6.635 4.043 13.261 6.044 19.906 1.982 6.586 4.338 13.044 6.872 19.433.907 2.287 2.12 4.466 3.204 6.714-4.2.118-6.349-1.084-7.71-4.782-1.962-5.324-4.939-10.263-6.201-15.853-.148-.631-.326-1.331-1.164-1.43-.177-.335-.345-.68-.522-1.016v-.009zm23.465-19.433c1.104-.493 1.568-1.943 2.968-1.982 2.1 4.318 4.16 8.657 6.329 12.935 2.17 4.279 4.27 8.598 6.725 12.699 2.75 4.605 5.028 9.505 8.548 13.636.315.365.857.72.512 1.252-.305.483-.887.227-1.37.207-3.934-.168-6.014-2.356-7.621-5.856-2.791-6.074-6.251-11.832-9.13-17.866-2.376-4.969-5.679-9.534-6.961-15.025z" fill="#FEC08A"/>
|
|
20
|
+
<path d="M326.552 167.206c.059-2.988.109-5.975.168-8.963a4.22 4.22 0 01.355-.019c-.178 4.545.207 8.932 3.628 12.432.414.424.296.966-.01 1.371-2.159 2.849-1.932 6.211-1.419 9.307.473 2.869-.622 3.086-2.781 2.8l.059-16.928z" fill="#EDEAEA"/>
|
|
21
|
+
<path d="M327.075 158.223c-.119.01-.237.01-.355.02v-15.41c1.242 2.1 1.577 4.733 3.805 6.261.868.591.326 1.38-.128 1.952-1.696 2.129-2.386 4.703-3.322 7.177z" fill="#FEFEFE"/>
|
|
22
|
+
<path d="M326.424 140.85c-1.134-1.715-1.203-3.421.049-5.117-.02 1.706-.039 3.412-.049 5.117z" fill="#FE3F4D"/>
|
|
23
|
+
<path d="M374.104 263.54c.177.335.345.68.522 1.016-.375-.237-.503-.602-.522-1.016z" fill="#FEBEC1"/>
|
|
24
|
+
<path d="M252.705 252.222c3.244.71 6.537.246 9.81.365 3.205.118 6.419.098 9.623.147.217 1.203-.7 1.785-1.37 2.495-5.344 5.679-10.678 11.358-16.032 17.027a6.577 6.577 0 00-1.498 2.544c-2.071 6.379-4.161 12.738-6.221 19.117-.503 1.577-1.588 2.928-1.785 4.614-3.638-.473-7-1.962-10.51-2.899-5.186-1.38-10.293-3.105-15.43-4.683.759-5.127 3.273-9.682 4.811-14.552 2.505-7.957 7.296-15.371 5.669-24.284 7.651.05 15.292.079 22.933.109z" fill="#FEC08A"/>
|
|
25
|
+
<path d="M229.782 252.124c1.627 8.913-3.165 16.327-5.669 24.283-1.538 4.871-4.052 9.426-4.812 14.553-3.835-.957-7.503-2.583-11.476-3.027-9.721-3.52-19.64-6.399-29.578-9.228-1.666-.474-3.283-1.134-4.93-1.716.503-4.397 2.455-8.4 3.451-12.679 1.282-5.472 2.623-10.993 4.614-16.238 2.761-7.257.405-14.218-.246-21.306-.602-6.537-2.297-12.867-3.362-19.315-.769-4.644-2.219-9.149-1.982-13.951.158-3.165.69-6.182 1.647-9.238 2.05-6.557 3.224-13.291 4.002-20.153.799-7.039 1.134-14.158 3.116-21.069 2.396-8.351 4.21-16.869 6.379-25.289 2.001-7.779 4.2-15.509 6.211-23.288 1.45-5.61 2.731-11.27 4.122-16.89.907-3.667 1.893-4.465 5.61-4.673 5.117-.285 7.158.67 8.439 3.915.947 2.386 2.455 4.535 2.909 7.128.098.552.483.848 1.025.956.04 4.713 1.203 9.317 1.124 14.07-.069 4.002-1.173 7.857-1.114 11.831-1.085.167-1.016 1.163-1.37 1.863-1.499 2.978-.908 6.054-.7 9.199.423 6.34-.267 12.65-1.42 18.9-.552 2.317-.809 4.693-1.804 6.922-.375.828-.316 2.011-.079 2.928 1.271 4.782 2.662 9.534 4.032 14.286.217.759.611 1.38 1.578 1.242.67 1.272-.355 2.505.059 3.885 3.736 12.551 4.141 25.299 1.834 38.156-.848 4.722-2.702 9.336-2.041 14.217.611 4.565.246 9.12.453 13.685.335 7.197 2.682 13.172 9.978 16.041z" fill="#FDD4B0"/>
|
|
26
|
+
<path d="M154.753 289.461c-.108-1.292-.385-2.633 1.055-3.451.01 1.262-.128 2.474-1.055 3.451z" fill="#FEC2C6"/>
|
|
27
|
+
<path d="M219.272 110.819c-.06-3.983 1.054-7.828 1.114-11.831.078-4.762-1.085-9.366-1.124-14.07.01-17.54-.04-35.079.069-52.619.029-5.393 1.479-10.352 6.211-13.714 2.692-1.913 5.847-2.475 8.982-2.495 12.561-.108 25.122-.03 37.682-.03.415 3.62 2.367 6.715 3.461 10.097.197.611.542 1.173.532 1.844-2.908.01-5.817 0-8.725.039-.878.01-2.13-.128-2.051 1.163.069 1.164 1.282.74 2.041.79 3.382.226 6.803-.425 10.165.403.68 3.372 2.189 6.448 3.372 9.643.483 1.301 1.163 2.534 1.193 3.963-3.244.04-6.478.109-9.721.119-14.385.01-28.77 0-43.155.01-3.953 0-4.979 1.035-4.979 5.057-.01 38.64 0 77.268-.01 115.907 0 1.568.158 3.155-.295 4.703-1.026-.552-.927-1.657-1.272-2.544a2629.015 2629.015 0 00-3.067-8.016c-.128-6.487.257-12.984-.414-19.462 0-9.662 0-19.314-.009-28.957zm37.79-79.87c.819-.277 1.667-.8 1.598-2.002-.06-1.144-.76-1.863-1.913-1.873-1.252-.02-1.804.917-1.785 1.972.03 1.045.622 1.883 2.1 1.902z" fill="#EDEAEA"/>
|
|
28
|
+
<path d="M331.6 115.374c.019-7.325.029-14.651.049-21.976 6.32-.414 12.482.414 18.476 2.455 1.45 1.705 3.037 3.401 2.948 5.807-.118 3.145-2.09 5.304-4.397 7.118-2.376 1.873-5.245 2.889-8.095 3.766-2.997.917-6.093 1.548-8.981 2.83z" fill="#FEC08A"/>
|
|
29
|
+
<path d="M326.621 19.58c-.651-.147-1.183-.443-1.518-1.045.769-.03 1.469.04 1.518 1.046z" fill="#FEBEC1"/>
|
|
30
|
+
<path d="M292.143 72.99c5.6 4.318 9.76 9.642 11.644 16.583 1.478 5.442 1.005 10.855-.06 16.277-1.863 3.648-3.352 7.493-6.201 10.589-1.016 1.105-2.002 2.169-3.293 2.948-2.357-5.462-6.093-9.356-11.723-11.713-9.721-4.072-22.499 1.716-25.506 11.861-6.162-4.782-9.554-11.171-10.323-18.821-1.499-14.76 6.083-26.71 20.182-31.264 8.154-2.633 16.229-1.608 23.751 2.74.503.277 1.016.533 1.529.8zm-5.403 16.247c0-6.527-4.812-11.377-11.26-11.367-6.28.01-11.279 4.93-11.259 11.22.029 7.098 5.166 11.377 11.723 11.663 5.718.247 10.796-5.423 10.796-11.516zm-10.304 89.089h-36.923c-3.747 0-4.22-.473-4.23-4.111 0-3.155.049-6.32-.02-9.475-.049-2.238 1.026-3.165 3.175-3.155 25.368.01 50.726.01 76.095-.01 2.317 0 3.302 1.065 3.243 3.372-.079 3.244 0 6.478-.019 9.721-.02 3.057-.602 3.658-3.648 3.658h-37.673z" fill="#FEC1C5"/>
|
|
31
|
+
<path d="M314.188 135.743c3.283.71 3.599 1.095 3.628 4.378.02 1.873.069 3.746.109 5.62-.05 1.321-.178 2.652-.119 3.973.089 2.346-1.114 3.322-3.303 3.391-.335.01-.66.01-.995.01-24.609 0-49.218.01-73.827-.01-3.747 0-4.368-.67-4.378-4.328 0-2.987-.01-5.984 0-8.972.01-2.987.848-3.845 3.845-3.875 3.155-.029 6.32-.009 9.475-.009 20.872 0 41.735 0 62.607-.01.976.01 1.962-.099 2.958-.168zm-37.485 6.478c-9.061 0-18.122.029-27.192-.03-1.815-.01-2.948.138-2.919 2.485.03 2.159.818 2.612 2.79 2.603 18.211-.06 36.421-.06 54.621 0 1.982.009 2.761-.454 2.79-2.603.03-2.337-1.084-2.495-2.908-2.485-9.061.059-18.122.03-27.182.03z" fill="#FEBFC2"/>
|
|
32
|
+
<path d="M219.707 159.219c1.025 2.672 2.05 5.344 3.066 8.015.335.898.236 2.002 1.272 2.544a.42.42 0 00.453-.029c-.029 17.697-.059 35.385-.069 53.082 0 1.371.395 2.623 1.864 3.195.207.453.571.552 1.025.434 5.294 0 10.599.009 15.893.009.345.069.69.138 1.026.198.907 4.643 2.918 8.922 4.367 13.389 1.321 4.072 3.205 7.956 4.102 12.176-7.641-.03-15.282-.069-22.923-.099-7.296-2.869-9.643-8.844-9.968-16.021-.207-4.555.158-9.12-.454-13.685-.65-4.88 1.203-9.504 2.041-14.217 2.307-12.867 1.903-25.605-1.834-38.156-.414-1.39.612-2.613-.059-3.884.069-2.327.138-4.644.198-6.951z" fill="#FEFEFE"/>
|
|
33
|
+
<path d="M243.211 226.46c-5.295 0-10.599-.01-15.893-.01-.178-.542-.395-.966-1.026-.434-1.479-.562-1.873-1.814-1.863-3.194.01-17.698.039-35.385.069-53.083 1.873 3.126 2.593 6.675 3.727 10.077 1.903 5.728 3.746 11.466 5.62 17.194.236.71.443 1.45 1.291 1.686.01 2.002.414 3.914 1.39 5.679 1.578 4.989 3.126 9.988 4.753 14.957.749 2.366 1.666 4.653 1.932 7.128z" fill="#FE011F"/>
|
|
34
|
+
<path d="M257.004 119.525c3.007-10.145 15.795-15.923 25.506-11.861 5.63 2.356 9.366 6.261 11.723 11.713-6.3 5.699-13.803 7.602-22.075 6.754-5.709-.582-10.905-2.564-15.154-6.606z" fill="#FEFEFE"/>
|
|
35
|
+
<path d="M236.516 204.394c-.986-1.765-1.39-3.677-1.39-5.679 1.439-5.491 4.378-7.799 9.958-7.799 21.05 0 42.099-.009 63.149 0 5.048 0 7.7 1.913 9.228 6.596 1.47 4.526-1.498 9.465-6.231 10.284-1.055.187-2.149.187-3.234.187-20.803.01-41.596-.039-62.399.049-3.629.01-6.724-.749-9.081-3.638zm39.99 2.288c10.894 0 21.799.009 32.693 0 3.274 0 5.492-1.598 6.793-4.555 1.184-2.682.484-5.048-1.262-7.188-1.666-2.051-3.953-2.494-6.487-2.494-21.129.039-42.257.019-63.386.029-.749 0-1.498.01-2.238.119-2.623.364-4.427 1.902-5.373 4.269-2.002 5.008 1.41 9.77 7.059 9.81 10.737.059 21.464.01 32.201.01z" fill="#FEDCDE"/>
|
|
36
|
+
<path d="M325.112 45.037c.572.06.907.365.927.956-.562-.069-.887-.374-.927-.956z" fill="#FE3F4D"/>
|
|
37
|
+
<path d="M275.382 245.093c-5.068 0-10.145.01-15.213 0-2.997-.009-3.411-.443-3.431-3.509-.01-1.824-.01-3.658.01-5.482.01-1.617.838-2.475 2.465-2.475 10.805-.01 21.611-.01 32.427-.01 1.765 0 2.573.907 2.554 2.643-.01 1.912-.069 3.825.019 5.728.099 2.228-.867 3.165-3.105 3.125-5.255-.069-10.491-.02-15.726-.02z" fill="#FEFEFE"/>
|
|
38
|
+
<path d="M219.706 159.219l-.178 6.931c-.966.148-1.36-.483-1.577-1.242-1.371-4.752-2.761-9.504-4.033-14.286-.246-.917-.296-2.1.079-2.928.996-2.229 1.252-4.605 1.804-6.922 1.164-.345 2.337-.68 3.5-1.025.661 6.488.277 12.985.405 19.472z" fill="#FEC08A"/>
|
|
39
|
+
<path d="M219.292 139.757c-1.163.345-2.337.68-3.5 1.025 1.154-6.251 1.844-12.561 1.42-18.9-.207-3.146-.799-6.222.7-9.199.355-.7.286-1.706 1.37-1.864 0 9.643 0 19.295.01 28.938z" fill="#FEBEC1"/>
|
|
40
|
+
<path d="M286.739 89.238c0 6.093-5.077 11.762-10.786 11.516-6.556-.286-11.703-4.565-11.722-11.664-.02-6.29 4.978-11.21 11.259-11.22 6.438-.01 11.24 4.841 11.249 11.368zm-10.036 52.983c9.06 0 18.121.03 27.192-.029 1.824-.01 2.938.148 2.908 2.484-.029 2.16-.808 2.613-2.79 2.603-18.21-.059-36.42-.059-54.621 0-1.972.01-2.77-.443-2.79-2.603-.029-2.346 1.104-2.494 2.918-2.484 9.051.059 18.112.029 27.183.029z" fill="#FEFEFE"/>
|
|
41
|
+
<path d="M226.291 226.026c.631-.543.848-.109 1.025.433-.453.119-.818.01-1.025-.433z" fill="#FE3F4D"/>
|
|
42
|
+
<path d="M276.506 206.681c-10.727 0-21.464.05-32.191-.019-5.649-.04-9.061-4.802-7.059-9.81.946-2.367 2.75-3.905 5.373-4.27.739-.098 1.489-.118 2.238-.118 21.129-.01 42.257.01 63.386-.029 2.534 0 4.821.443 6.487 2.494 1.745 2.139 2.445 4.516 1.262 7.187-1.301 2.958-3.529 4.555-6.793 4.555-10.904.01-21.809.01-32.703.01z" fill="#FE4250"/>
|
|
43
|
+
<path d="M261.51 202.658c-.483 0-.956-.069-1.42-.197-.453-.138-.818-.305-1.094-.522l.483-1.075c.266.197.582.345.947.463.364.119.729.178 1.094.178.404 0 .71-.059.897-.178.197-.128.296-.285.296-.483a.45.45 0 00-.177-.364 1.18 1.18 0 00-.444-.237 7.577 7.577 0 00-.72-.197 9.763 9.763 0 01-1.153-.335 1.927 1.927 0 01-.779-.543c-.207-.246-.316-.572-.316-.986 0-.355.099-.68.296-.966.197-.296.483-.522.878-.7.394-.167.877-.256 1.439-.256.394 0 .779.049 1.154.138.374.098.709.227.985.404l-.443 1.085c-.572-.326-1.144-.484-1.706-.484-.404 0-.7.069-.887.198-.188.128-.286.295-.286.512 0 .207.108.375.325.474.227.098.562.197 1.016.295.473.109.857.227 1.153.336.296.108.552.286.769.532.217.237.326.572.326.976 0 .355-.099.68-.296.966-.197.286-.483.513-.878.69-.414.188-.887.276-1.459.276zm3.597-6.28h1.43v6.172h-1.43v-6.172zm7.06 2.998h1.302v2.504c-.335.257-.72.444-1.164.582a4.455 4.455 0 01-1.331.207c-.64 0-1.212-.138-1.725-.404a3.126 3.126 0 01-1.213-1.134 3.18 3.18 0 01-.433-1.647c0-.611.147-1.153.433-1.636.296-.483.7-.868 1.213-1.134.513-.276 1.094-.414 1.745-.414.542 0 1.035.089 1.469.276.444.177.809.444 1.114.789l-.917.848c-.443-.464-.976-.7-1.597-.7-.394 0-.739.078-1.045.246a1.735 1.735 0 00-.71.7 2.073 2.073 0 00-.256 1.035c0 .385.089.72.256 1.026.168.295.404.532.71.709.306.168.651.247 1.045.247a2.33 2.33 0 001.114-.266v-1.834h-.01zm8.292-2.998v6.172h-1.173l-3.076-3.747v3.747h-1.41v-6.172h1.183l3.066 3.746v-3.746h1.41zm3.964 0h1.429v6.172h-1.429v-6.172zm8.548 0v6.172h-1.173l-3.077-3.747v3.747h-1.409v-6.172h1.183l3.066 3.746v-3.746h1.41z" fill="#F5F5F5"/>
|
|
44
|
+
<path d="M285.418 30.189h-20.024a.99.99 0 01-.986-.986v-.227a.99.99 0 01.986-.986h20.024c.543 0 .986.444.986.986v.227a.982.982 0 01-.986.986zm-28.601.819a2.001 2.001 0 100-4.003 2.001 2.001 0 000 4.003z" fill="#FEC2C6"/>
|
|
45
|
+
<path d="M246.592 171.947a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.472 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.482 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.471 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.483 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.481 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002zm5.472 0a2.001 2.001 0 10.001-4.003 2.001 2.001 0 00-.001 4.003zm5.482 0a2.001 2.001 0 100-4.002 2.001 2.001 0 000 4.002z" fill="#F5F5F5"/>
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="109" height="40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M45.295 11.881c-2.512-4.781-8.87-7.397-17.99-7.397-10.911 0-17.537 3.647-17.537 9.718 0 3.828 3.081 6.383 9.565 8.029l2.832.71 2.752.71 2.832.71c.125.044.33.079.508.183 1.015.398 1.612.97 1.612 1.602 0 1.29-1.915 2.182-4.756 2.182-4.569 0-6.875-.892-8.158-3.109L4.638 26.865c3.144 5.534 9.832 8.289 20.226 8.289 11.052 0 18.676-4.245 18.676-10.394 0-3.395-3.464-6.608-8.728-7.856l-2.45-.571-2.448-.615-2.45-.572a34.175 34.175 0 01-1.914-.537c-1.408-.398-2.058-.935-2.058-1.689 0-1.212 1.612-1.966 4.124-1.966 3.402 0 5.851 1.03 6.608 2.893l11.07-1.966zm31.135 2.796H65.477l-2.405 9.934c-.819 3.334-2.467 5.015-4.934 5.015-1.282 0-1.995-.537-1.995-1.507 0-.32 0-.572.348-1.966l2.814-11.485H48.171l-3.001 12.55c-.348 1.507-.588 2.78-.588 3.43 0 2.598 3.402 4.642 7.748 4.642 4.41 0 7.099-1.186 9.788-4.287l-.935 3.75h10.438l4.81-20.076zm2.37 0l-4.872 20.094H84.65l2.939-12.056c.534-2.122 1.941-3.213 4.097-3.213 1.754 0 2.69.537 2.69 1.585 0 .277-.125.935-.285 1.628l-2.877 12.056h10.972l3.287-13.728c.187-.736.285-1.429.285-2.044 0-2.936-3.349-4.936-8.256-4.936-4.507 0-7.793 1.35-9.441 3.871l.82-3.257H78.798zM59.508 7.175h2.085l.347-1.507h-6.795l-.366 1.507h2.022l-1.22 5.058h2.734l1.194-5.058zm7.589 2.442l-.633 2.616h2.717l1.567-6.522h-2.734l-.57 2.4h-2.45l.57-2.4h-2.716l-1.567 6.522h2.716l.633-2.616h2.467zm10.375 1.126H73.27l.285-1.152h3.384l.347-1.429h-3.384l.24-1.03h4.035l.347-1.43H71.79l-1.567 6.522h6.884l.365-1.48z" fill="#fff"/>
|
|
3
|
+
</svg>
|