@eaze/accordion
Advanced tools
Comparing version 1.1.2 to 2.0.0
@@ -6,9 +6,6 @@ 'use strict'; | ||
}); | ||
exports.ChevronAccordion = undefined; | ||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); | ||
var _style = require('styled-jsx/style'); | ||
var _style2 = _interopRequireDefault(_style); | ||
var _react = require('react'); | ||
@@ -20,2 +17,6 @@ | ||
var _reactEmotion = require('react-emotion'); | ||
var _reactEmotion2 = _interopRequireDefault(_reactEmotion); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -29,5 +30,23 @@ | ||
var defaultCaretColor = '#373838'; | ||
var defaultFontColor = '#000'; | ||
var Arrow = function Arrow(_ref) { | ||
var iconColor = _ref.iconColor; | ||
return _react2.default.createElement( | ||
'svg', | ||
{ | ||
width: '7px', | ||
height: '13px', | ||
viewBox: '0 0 7 13', | ||
version: '1.1', | ||
xmlnsXlink: 'http://www.w3.org/1999/xlink' | ||
}, | ||
_react2.default.createElement('polygon', { | ||
fill: iconColor || '#000', | ||
points: '0.77578125 12.6097656 0.77578125 0.122265625 7.01953125 6.36601562', | ||
fillRule: 'evenodd' | ||
}) | ||
); | ||
}; | ||
var AccordionElement = function (_PureComponent) { | ||
@@ -37,3 +56,3 @@ _inherits(AccordionElement, _PureComponent); | ||
function AccordionElement() { | ||
var _ref; | ||
var _ref2; | ||
@@ -48,4 +67,5 @@ var _temp, _this, _ret; | ||
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = AccordionElement.__proto__ || Object.getPrototypeOf(AccordionElement)).call.apply(_ref, [this].concat(args))), _this), _this.state = { | ||
open: false | ||
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref2 = AccordionElement.__proto__ || Object.getPrototypeOf(AccordionElement)).call.apply(_ref2, [this].concat(args))), _this), _this.state = { | ||
open: false, | ||
contentHeight: 0 | ||
}, _this.toggleContent = function (event) { | ||
@@ -62,60 +82,61 @@ // adding preventDefault so we can have this component in | ||
_createClass(AccordionElement, [{ | ||
key: 'componentDidMount', | ||
value: function componentDidMount() { | ||
this.setState({ contentHeight: this.accordionContent.clientHeight }); | ||
} | ||
}, { | ||
key: 'render', | ||
value: function render() { | ||
var open = this.state.open; | ||
var _this2 = this; | ||
var _state = this.state, | ||
open = _state.open, | ||
contentHeight = _state.contentHeight; | ||
var _props = this.props, | ||
caretColor = _props.caretColor, | ||
children = _props.children, | ||
buttonContent = _props.buttonContent, | ||
buttonClass = _props.buttonClass, | ||
fontColor = _props.fontColor; | ||
icon = _props.icon, | ||
iconColor = _props.iconColor, | ||
iconHeight = _props.iconHeight, | ||
iconWidth = _props.iconWidth, | ||
rotate = _props.rotate, | ||
reverseDirection = _props.reverseDirection; | ||
var caretDirection = 'translate(-23, -412) translate(0, 274) translate(0, 133) translate(33, 11) scale(-1, ' + (open ? '-1' : '1') + ') rotate(90) translate(-33, -11) translate(28.5, 2)'; | ||
return _react2.default.createElement( | ||
'div', | ||
{ | ||
className: _style2.default.dynamic([['1127797005', [fontColor]]]) | ||
}, | ||
AccordionWrapper, | ||
{ reverseDirection: reverseDirection }, | ||
_react2.default.createElement( | ||
'button', | ||
Button, | ||
{ | ||
onClick: this.toggleContent, | ||
className: _style2.default.dynamic([['1127797005', [fontColor]]]) + ' ' + (buttonClass || '') | ||
className: buttonClass, | ||
onClick: this.toggleContent | ||
}, | ||
_react2.default.createElement( | ||
'svg', | ||
IconContainer, | ||
{ | ||
width: '20px', | ||
height: '12px', | ||
viewBox: '0 0 20 12', | ||
version: '1.1', | ||
xmlnsXlink: 'http://www.w3.org/1999/xlink', | ||
className: _style2.default.dynamic([['1127797005', [fontColor]]]) | ||
open: open, | ||
iconWidth: iconWidth, | ||
iconHeight: iconHeight, | ||
rotate: rotate | ||
}, | ||
_react2.default.createElement( | ||
'g', | ||
{ | ||
transform: caretDirection, | ||
stroke: caretColor | ||
// TODO: consider making this a prop similar to above and calculate svg width and height based on the value ( the tag component does this for example ) | ||
, strokeWidth: 1.5, | ||
fill: 'none', | ||
fillRule: 'evenodd', | ||
strokeLinecap: 'round', | ||
className: _style2.default.dynamic([['1127797005', [fontColor]]]) | ||
}, | ||
_react2.default.createElement('path', { d: 'M0 0l9 9m0 0l-9 8.485', className: _style2.default.dynamic([['1127797005', [fontColor]]]) | ||
}) | ||
) | ||
icon || _react2.default.createElement(Arrow, { iconColor: iconColor }) | ||
), | ||
buttonContent | ||
), | ||
open && children, | ||
_react2.default.createElement(_style2.default, { | ||
styleId: '1127797005', | ||
css: ['.button.__jsx-style-dynamic-selector{padding:0;width:100%;border:none;background-color:transparent;color:' + fontColor + ';font-size:1rem;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}'], | ||
dynamic: [fontColor] | ||
}) | ||
_react2.default.createElement( | ||
ContentWrapper, | ||
{ open: open, height: contentHeight }, | ||
_react2.default.createElement( | ||
'div', | ||
{ | ||
className: InnerWrapper, | ||
ref: function ref(accordionContent) { | ||
_this2.accordionContent = accordionContent; | ||
} | ||
}, | ||
children | ||
) | ||
) | ||
); | ||
@@ -128,14 +149,107 @@ } | ||
// export some standardized variants | ||
AccordionElement.propTypes = { | ||
buttonClass: _propTypes.string, | ||
buttonContent: _propTypes.node, | ||
caretColor: _propTypes.string, | ||
children: _propTypes.node, | ||
fontColor: _propTypes.string | ||
fontColor: _propTypes.string, | ||
icon: _propTypes.object, | ||
iconColor: _propTypes.string, | ||
iconWidth: _propTypes.number, | ||
iconHeight: _propTypes.number, | ||
reverseDirection: _propTypes.bool, | ||
rotate: _propTypes.string | ||
}; | ||
AccordionElement.defaultProps = { | ||
buttonClass: 'button', | ||
caretColor: defaultCaretColor, | ||
fontColor: defaultFontColor | ||
fontColor: defaultFontColor, | ||
reverseDirection: false | ||
}; | ||
exports.default = AccordionElement; | ||
exports.default = AccordionElement; | ||
var ChevronAccordion = exports.ChevronAccordion = function ChevronAccordion(_ref3) { | ||
var iconColor = _ref3.iconColor, | ||
buttonContent = _ref3.buttonContent, | ||
children = _ref3.children; | ||
return _react2.default.createElement( | ||
AccordionElement, | ||
{ | ||
icon: _react2.default.createElement(Chevron, { iconColor: iconColor }), | ||
iconWidth: 1.5, | ||
iconHeight: 1.5, | ||
buttonContent: buttonContent | ||
}, | ||
children | ||
); | ||
}; | ||
var AccordionWrapper = /*#__PURE__*/(0, _reactEmotion2.default)('div', { | ||
label: 'AccordionWrapper', | ||
target: 'css-rbh3fz0' | ||
})('display:flex;flex-direction:', function (_ref4) { | ||
var reverseDirection = _ref4.reverseDirection; | ||
return reverseDirection ? 'column-reverse' : 'column'; | ||
}, ';'); | ||
var ContentWrapper = /*#__PURE__*/(0, _reactEmotion2.default)('div', { | ||
label: 'ContentWrapper', | ||
target: 'css-rbh3fz1' | ||
})('height:', function (_ref5) { | ||
var open = _ref5.open, | ||
height = _ref5.height; | ||
return open ? height + 'px' : 0; | ||
}, ';overflow:hidden;transition:height 0.25s ease-out;'); | ||
var InnerWrapper = /*#__PURE__*/(0, _reactEmotion.css)('position:relative;', 'label:InnerWrapper;'); | ||
var Button = /*#__PURE__*/(0, _reactEmotion2.default)('div', { | ||
label: 'Button', | ||
target: 'css-rbh3fz2' | ||
})('padding:0;width:100%;border:none;background-color:transparent;color:', function (_ref6) { | ||
var fontColor = _ref6.fontColor; | ||
return fontColor; | ||
}, ';cursor:pointer;display:flex;align-items:center;user-select:none;'); | ||
var IconContainer = /*#__PURE__*/(0, _reactEmotion2.default)('div', { | ||
label: 'IconContainer', | ||
target: 'css-rbh3fz3' | ||
})('width:', function (_ref7) { | ||
var iconWidth = _ref7.iconWidth; | ||
return iconWidth + 'rem' || '1rem'; | ||
}, ';height:', function (_ref8) { | ||
var iconHeight = _ref8.iconHeight; | ||
return iconHeight + 'rem' || '1rem'; | ||
}, ';display:flex;align-items:center;transform:', function (_ref9) { | ||
var open = _ref9.open, | ||
rotate = _ref9.rotate; | ||
return open ? rotate || 'rotate(90deg)' : 'rotate(0deg)'; | ||
}, ';transition:transform .25s ease-out,margin .25s ease-out;margin-top:', function (_ref10) { | ||
var open = _ref10.open, | ||
iconWidth = _ref10.iconWidth; | ||
return open ? iconWidth / 2 + 'rem' : '0'; | ||
}, ';'); | ||
var Chevron = function Chevron(_ref11) { | ||
var iconColor = _ref11.iconColor; | ||
return _react2.default.createElement( | ||
'svg', | ||
{ | ||
width: '12px', | ||
height: '20px', | ||
viewBox: '0 0 12 20', | ||
version: '1.1', | ||
xmlnsXlink: 'http://www.w3.org/1999/xlink' | ||
}, | ||
_react2.default.createElement( | ||
'g', | ||
{ | ||
stroke: iconColor || '#000', | ||
strokeWidth: '1.5px', | ||
fill: 'none', | ||
fillRule: 'evenodd', | ||
strokeLinecap: 'round' | ||
}, | ||
_react2.default.createElement('path', { d: 'M0 0l9 9m0 0l-9 8.485' }) | ||
) | ||
); | ||
}; |
{ | ||
"name": "@eaze/accordion", | ||
"version": "1.1.2", | ||
"version": "2.0.0", | ||
"description": "React components: AccordionElement", | ||
@@ -19,3 +19,4 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"styled-jsx": "~2.0.1" | ||
"emotion": "~8.0.12", | ||
"react-emotion": "~8.0.12" | ||
}, | ||
@@ -25,2 +26,3 @@ "devDependencies": { | ||
"babel-core": "~6.25.0", | ||
"babel-plugin-emotion": "~8.0.12", | ||
"babel-preset-es2015": "~6.24.1", | ||
@@ -37,4 +39,3 @@ "babel-preset-react": "~6.24.1", | ||
"access": "public" | ||
}, | ||
"gitHead": "1a5cd5dde0e116254a2a2e29923692f72d6eaab6" | ||
} | ||
} |
179
src/index.js
import React, { PureComponent } from 'react' | ||
import {node, string} from 'prop-types' | ||
import {bool, node, string, object, number} from 'prop-types' | ||
import styled, { css } from 'react-emotion' | ||
const defaultCaretColor = '#373838' | ||
const defaultFontColor = '#000' | ||
const Arrow = ({ iconColor }) => ( | ||
<svg | ||
width='7px' | ||
height='13px' | ||
viewBox='0 0 7 13' | ||
version='1.1' | ||
xmlnsXlink='http://www.w3.org/1999/xlink' | ||
> | ||
<polygon | ||
fill={iconColor || '#000'} | ||
points='0.77578125 12.6097656 0.77578125 0.122265625 7.01953125 6.36601562' | ||
fillRule='evenodd' | ||
/> | ||
</svg> | ||
) | ||
export default class AccordionElement extends PureComponent { | ||
@@ -11,5 +27,10 @@ static propTypes = { | ||
buttonContent: node, | ||
caretColor: string, | ||
children: node, | ||
fontColor: string | ||
fontColor: string, | ||
icon: object, | ||
iconColor: string, | ||
iconWidth: number, | ||
iconHeight: number, | ||
reverseDirection: bool, | ||
rotate: string | ||
} | ||
@@ -19,8 +40,9 @@ | ||
buttonClass: 'button', | ||
caretColor: defaultCaretColor, | ||
fontColor: defaultFontColor | ||
fontColor: defaultFontColor, | ||
reverseDirection: false | ||
} | ||
state = { | ||
open: false | ||
open: false, | ||
contentHeight: 0 | ||
} | ||
@@ -36,61 +58,116 @@ | ||
componentDidMount () { | ||
this.setState({contentHeight: this.accordionContent.clientHeight}) | ||
} | ||
render () { | ||
const { open } = this.state | ||
const { open, contentHeight } = this.state | ||
const { | ||
caretColor, | ||
children, | ||
buttonContent, | ||
buttonClass, | ||
fontColor | ||
icon, | ||
iconColor, | ||
iconHeight, | ||
iconWidth, | ||
rotate, | ||
reverseDirection | ||
} = this.props | ||
const caretDirection = ( | ||
`translate(-23, -412) translate(0, 274) translate(0, 133) translate(33, 11) scale(-1, ${open ? '-1' : '1'}) rotate(90) translate(-33, -11) translate(28.5, 2)` | ||
) | ||
return ( | ||
<div> | ||
<button | ||
<AccordionWrapper reverseDirection={reverseDirection}> | ||
<Button | ||
className={buttonClass} | ||
onClick={this.toggleContent} | ||
> | ||
<svg | ||
width='20px' | ||
height='12px' | ||
viewBox='0 0 20 12' | ||
version='1.1' | ||
xmlnsXlink='http://www.w3.org/1999/xlink' | ||
<IconContainer | ||
open={open} | ||
iconWidth={iconWidth} | ||
iconHeight={iconHeight} | ||
rotate={rotate} | ||
> | ||
<g | ||
transform={caretDirection} | ||
stroke={caretColor} | ||
// TODO: consider making this a prop similar to above and calculate svg width and height based on the value ( the tag component does this for example ) | ||
strokeWidth={1.5} | ||
fill='none' | ||
fillRule='evenodd' | ||
strokeLinecap='round' | ||
> | ||
<path d='M0 0l9 9m0 0l-9 8.485' /> | ||
</g> | ||
</svg> | ||
{icon || <Arrow iconColor={iconColor}/>} | ||
</IconContainer> | ||
{buttonContent} | ||
</button> | ||
{open && children} | ||
<style jsx>{` | ||
.button { | ||
padding: 0; | ||
width: 100%; | ||
border: none; | ||
background-color: transparent; | ||
color: ${fontColor}; | ||
font-size: 1rem; | ||
cursor: pointer; | ||
display: flex; | ||
align-items: center; | ||
user-select: none; | ||
} | ||
`}</style> | ||
</div> | ||
</Button> | ||
<ContentWrapper open={open} height={contentHeight}> | ||
<div | ||
className={InnerWrapper} | ||
ref={(accordionContent) => { this.accordionContent = accordionContent }} | ||
> | ||
{children} | ||
</div> | ||
</ContentWrapper> | ||
</AccordionWrapper> | ||
) | ||
} | ||
} | ||
// export some standardized variants | ||
export const ChevronAccordion = ({ iconColor, buttonContent, children }) => ( | ||
<AccordionElement | ||
icon={<Chevron iconColor={iconColor} />} | ||
iconWidth={1.5} | ||
iconHeight={1.5} | ||
buttonContent={buttonContent} | ||
> | ||
{children} | ||
</AccordionElement> | ||
) | ||
const AccordionWrapper = styled.div` | ||
display: flex; | ||
flex-direction: ${({ reverseDirection }) => reverseDirection ? 'column-reverse' : 'column'}; | ||
` | ||
const ContentWrapper = styled.div` | ||
height: ${({ open, height }) => open ? height + 'px' : 0}; | ||
overflow: hidden; | ||
transition: height 0.25s ease-out; | ||
` | ||
const InnerWrapper = css` | ||
position: relative; | ||
` | ||
const Button = styled.div` | ||
padding: 0; | ||
width: 100%; | ||
border: none; | ||
background-color: transparent; | ||
color: ${({ fontColor }) => fontColor}; | ||
cursor: pointer; | ||
display: flex; | ||
align-items: center; | ||
user-select: none; | ||
` | ||
const IconContainer = styled.div` | ||
width: ${({ iconWidth }) => iconWidth + 'rem' || '1rem'}; | ||
height: ${({ iconHeight }) => iconHeight + 'rem' || '1rem'}; | ||
display: flex; | ||
align-items: center; | ||
transform: ${({ open, rotate }) => open ? (rotate || 'rotate(90deg)') : 'rotate(0deg)'}; | ||
transition: transform .25s ease-out, margin .25s ease-out; | ||
margin-top: ${({ open, iconWidth }) => open ? (iconWidth / 2 + 'rem') : '0'}; | ||
` | ||
const Chevron = ({ iconColor }) => ( | ||
<svg | ||
width='12px' | ||
height='20px' | ||
viewBox='0 0 12 20' | ||
version='1.1' | ||
xmlnsXlink='http://www.w3.org/1999/xlink' | ||
> | ||
<g | ||
stroke={iconColor || '#000'} | ||
strokeWidth='1.5px' | ||
fill='none' | ||
fillRule='evenodd' | ||
strokeLinecap='round' | ||
> | ||
<path d='M0 0l9 9m0 0l-9 8.485' /> | ||
</g> | ||
</svg> | ||
) |
import { storiesOf } from '@storybook/react' | ||
import React from 'react' | ||
import Accordion from '../src/' | ||
import Accordion, { ChevronAccordion } from '../src/' | ||
import styled, { css } from 'react-emotion' | ||
@@ -11,27 +12,10 @@ storiesOf('Accordion', module) | ||
buttonContent={ | ||
<div className='buttonContent'> | ||
<ButtonContent> | ||
<div className='title'>Order Total</div> | ||
<div className='count'>(2 items)</div> | ||
<div className='price'>$60.55</div> | ||
<style jsx>{` | ||
.buttonContent { | ||
display: flex; | ||
flex: 1 1 auto; | ||
padding-left: 1rem; | ||
} | ||
.title { | ||
margin-right: 0.5rem; | ||
} | ||
.count { | ||
color: #D2CDCC; | ||
} | ||
.price { | ||
margin-left: auto; | ||
} | ||
`}</style> | ||
</div> | ||
</ButtonContent> | ||
} | ||
iconWidth={1} | ||
iconHeight={1} | ||
> | ||
@@ -69,7 +53,7 @@ <div> | ||
<div> | ||
<Accordion | ||
buttonClass='buttonClass' | ||
buttonContent={<span className='buttonText'>Click Me</span>} | ||
<ChevronAccordion | ||
buttonClass={ButtonClass} | ||
buttonContent={<span style={{marginLeft: '1rem'}}>Click Me</span>} | ||
> | ||
<div className='content'> | ||
<OverflowedContent> | ||
"ah" - Charles Bukowski | ||
@@ -97,33 +81,449 @@ <div>it will never end, there will be no</div> | ||
<div>all.</div> | ||
</div> | ||
</OverflowedContent> | ||
</ChevronAccordion> | ||
</div> | ||
) | ||
}) | ||
.add('Arbitrary Icon', () => { | ||
return ( | ||
<div> | ||
<Accordion | ||
buttonClass={HomerButton} | ||
buttonContent={<span className='buttonText'>Doh!</span>} | ||
icon={<Homer />} | ||
iconWidth={2} | ||
iconHeight={6} | ||
rotate={'rotate(270deg)'} | ||
reverseDirection | ||
> | ||
<HomerContent> | ||
mmmmmmm donuts | ||
</HomerContent> | ||
</Accordion> | ||
<style jsx>{` | ||
.buttonClass { | ||
width: 100%; | ||
border: none; | ||
color: white; | ||
background-color: #494B4B; | ||
font-size: 1.4rem; | ||
cursor: pointer; | ||
padding: 2rem; | ||
display: flex; | ||
align-items: center; | ||
} | ||
</div> | ||
) | ||
}) | ||
const ButtonContent = styled.div` | ||
display: flex; | ||
flex: 1 1 auto; | ||
padding-left: 1rem; | ||
svg > g { | ||
stroke: #FFFFFF; | ||
} | ||
.title { | ||
margin-right: 0.5rem; | ||
} | ||
.buttonText { | ||
padding-left: 1rem; | ||
} | ||
.count { | ||
color: #D2CDCC; | ||
} | ||
.content { | ||
border: 1px solid; | ||
height: 10rem; | ||
overflow: auto; | ||
} | ||
`}</style> | ||
</div> | ||
) | ||
}) | ||
.price { | ||
margin-left: auto; | ||
} | ||
` | ||
const ButtonClass = css` | ||
width: 100%; | ||
border: none; | ||
color: white; | ||
background-color: #494B4B; | ||
font-size: 1.4rem; | ||
cursor: pointer; | ||
padding: 2rem; | ||
display: flex; | ||
align-items: center; | ||
` | ||
const OverflowedContent = styled.div` | ||
border: 1px solid; | ||
height: 10rem; | ||
overflow: auto; | ||
` | ||
const HomerContent = styled.div` | ||
background-color: #efefef; | ||
padding: 2rem; | ||
width: 100%; | ||
font-family: Helvetica, sans-serif; | ||
font-weight: 300; | ||
color: #4a4a4a; | ||
` | ||
const HomerButton = css` | ||
font-family: sans-serif; | ||
width: 100%; | ||
border: none; | ||
color: white; | ||
background-color: #494B4B; | ||
font-size: 1.4rem; | ||
cursor: pointer; | ||
padding: 2rem; | ||
display: flex; | ||
align-items: center; | ||
.buttonText { | ||
margin-left: 2rem; | ||
} | ||
` | ||
const Homer = () => ( | ||
<svg | ||
version='1.1' | ||
xmlnsXlink='http://www.w3.org/1999/xlink' | ||
x='0px' | ||
y='0px' | ||
width='204.304px' | ||
height='636.191px' | ||
viewBox='0 0 204.304 636.191' | ||
enableBackground='new 0 0 204.304 636.191' | ||
xmlSpace='preserve' | ||
> | ||
<path | ||
fill='#010101' | ||
d='M204.092 594.605c-.793-5.018-3.916-11.771-8.538-18.514-4.269-6.209-9.177-11.465-13.273-14.211 5.075-21.287 8.37-51.924 9.306-86.395.878-33.295-.61-66.291-4.13-90.598a79.281 79.281 0 0 0 3.247-5.697c3.618-7 6.154-14.385 7.554-21.949 1.25-6.77 1.347-13.504.96-17.721 1.775-1.25 2.01-1.906 2.13-2.234.438-1.264-.258-4.877-1.065-7.832-.917-3.32-2.669-8.584-5.931-14.85-4.774-9.183-11.038-17.283-18.616-24.073a80.323 80.323 0 0 0-4.169-3.489c-3.209-8.767-9.521-25.761-13.27-33.936 1.261-.711 3.39-2.196 2.75-3.839-2.726-6.907-8.336-15.078-13.892-21.31-5.009-5.616-9.638-9.483-11.863-10.601-.086-1.003-.246-2.191-.441-3.6-.228-1.604-.461-3.269-.595-4.906-.109-1.373-.168-2.963-.215-4.653-.182-5.782-.347-8.709-1.9-10.619-2.013-2.482-10.586-6.716-17.393-8.28.199-1.542.452-2.818.738-3.725 2.851-2.926 4.564-6.277 5.862-9.279a7.353 7.353 0 0 0 4.59-3.006c1.284-1.823 1.909-4.298 1.408-7.482 11.866-1.836 20.154-6.273 21.2-11.414.507-2.485-.31-4.574-3.672-6.768-.038-4.436-1.352-9.358-3.634-13.589-2.76-5.1-6.847-9.058-11.88-11.517 1.302-.673 2.474-1.512 3.457-2.498 2.363-2.378 3.491-5.381 3.259-8.699-.083-1.265-.341-2.412-.754-3.442 2.29-2.602 3.932-5.377 4.896-8.266a19.707 19.707 0 0 0 .869-8.673c-.864-7.152-5.3-12.699-8.475-15.096 2.103-3.564 2.463-6.451 1.595-8.709-1.074-2.808-3.84-4.119-5.421-4.656-.564-3.151-3-11.978-8.762-21.076-3.445-5.465-7.513-10.072-12.073-13.694-5.29-4.204-11.271-7.086-17.774-8.568C86.382 6.43 80.991 2.772 77.089 1.249c-4.496-1.761-9.532-1.656-13.822.296-3.916 1.801-6.927 4.298-8.977 7.458a20.265 20.265 0 0 0-4.653-.208c-5.233.391-9.777 2.888-13.127 7.223-1.922 2.49-3.214 5.214-3.86 8.098-.561 2.521-.631 5.173-.191 7.894.176 1.107.418 2.165.714 3.151a47.756 47.756 0 0 0-5.444 10.916c-1.631 4.727-2.535 9.497-2.762 14.594-.206 4.538.145 9.227 1.048 14.342 1.685 9.457 5.119 19.036 8.437 28.293.145.396.299.807.438 1.208-2.583-2.444-6.413-5.874-7.012-5.405-.695.549-.759 5.132-.738 7.716.043 5.665.719 11.33 1.441 11.201.675-.119-.446-10.49.253-17.098.994.736 4.997 4.56 7.124 6.576 1.136 3.208 2.264 6.455 3.285 9.698a10.17 10.17 0 0 0-2.706 1.201c-4.253 2.65-6.357 7.809-5.119 12.538.708 2.72 1.965 4.935 3.71 6.577a10.518 10.518 0 0 0 5.557 2.727c1.124.175 2.143.182 3.062.066.998 7.036 1.232 19.164.689 28.058-6.571-.248-7.91 4.133-9.634 12.792-.282 1.456-.539 2.712-.79 3.533-1.282 4.082-3.968 6.188-4.179 13.05-.06 2.135 1.179 4.374 3.763 6.799-1.106 2.535-3.217 8.862-3.833 11.513-1.232.19-2.484.438-3.742.749-8.049 1.967-14.4 7.276-18.894 15.771-4.996 9.459-6.474 20.531-6.829 28.147-.417 8.654.469 17.297 2.241 22.014.7 1.875 4.952 3.394 6.966 3.64 1.154 4.6 2.732 10.479 4.58 17.067-2.189 3.226-4.35 8.091-6.438 14.448-1.807 5.506-3.493 11.942-4.862 18.641-1.252 6.102-2.164 11.994-2.56 16.611-.673 7.674.347 8.621.73 8.973.914.857 2.599 1.678 5.036 2.467 2.156 9.781 7.304 20.156 15.309 30.846 7.864 10.5 16.517 18.699 22.484 23.809 1.66 19.547 2.491 37.852 2.491 54.76 0 12.555-.457 24.336-1.377 35.283-1.781 21.215-4.85 34.316-6.678 42.154-1.51 6.404-1.565 8.537-1.221 9.338.662 1.514 1.729 2.986 3.184 4.414-1.852 2.051-4.716 6.312-7.308 11.492-4.593 9.205-6.356 18.719-5.753 19.807 3.198 5.754 12.632 16.4 23.612 22.051 1.148.592 5.908-1.447 9.069-3.041a63.946 63.946 0 0 0 2.286 3.289c3.982 5.338 7.896 8.811 11.649 10.312 7.411 2.986 15.462 5.062 23.913 6.166 7.216.936 14.523 1.17 21.728.674 12.078-.828 22.624-3.787 24.533-6.877 2.192-3.533 1.33-12.357-2.125-21.949a11.467 11.467 0 0 1-.205-.551c7.645 3.578 19.4 5.25 32.264 4.494 10.127-.596 24.161-3.195 28.878-8.852 1.429-1.725 1.898-4.28 1.368-7.598M63.875 2.863c3.927-1.79 8.557-1.891 12.69-.265 3.498 1.374 8.297 4.598 11.856 12.173-7.974-1.542-15.672-1.664-22.843-.387a22.545 22.545 0 0 0-9.747-5.074c1.898-2.704 4.585-4.865 8.044-6.447m-8.874 7.755a21.107 21.107 0 0 1 8.757 4.125c-3.877.83-7.605 2.072-11.117 3.734.143-1.672.471-3.347 1.045-4.973.355-1.012.798-1.98 1.315-2.886M33.885 31.784c-.877-5.5.396-10.509 3.764-14.878 3.101-4 7.28-6.307 12.101-6.667a17.935 17.935 0 0 1 3.743.117c-.45.849-.842 1.736-1.168 2.669-.689 1.943-1.085 4.017-1.182 6.188-.623.32-1.222.645-1.823.988a48.048 48.048 0 0 0-15.062 13.413 23.957 23.957 0 0 1-.373-1.83' | ||
/> | ||
<path | ||
fill='#F4DE12' | ||
d='M49.991 135.049c-.69-.435-3.168 4.381-9.033 3.464-3.806-.6-6.662-3.518-7.838-8.02-1.052-3.992.736-8.351 4.344-10.6 1.554-.968 3.205-1.384 4.831-1.274 3.396.231 5.716 2.471 6.112 2.015.527-.617-2.608-3.607-6.142-3.787a9.697 9.697 0 0 0-1.286.034c-.716-2.302-1.498-4.593-2.288-6.882 1.88 1.624 3.442 2.767 3.907 2.499.88-.486.604-5.118.321-9.516-.204-3.294-.449-9.674-.241-11.503 1.044 1.173 2.638 3.235 4.428 5.666 5.188 7.038 10.557 15.416 11.21 14.993.772-.485-4.665-8.536-9.914-15.681-2.545-3.455-5.43-7.389-6.418-7.136-1.447.382-.728 10.318-.506 13.753.129 2.069.36 6.229.281 7.585-1.098-.764-2.546-2.04-4.043-3.452a5104.82 5104.82 0 0 0-1.606-4.493c-3.451-9.615-6.711-18.696-8.373-28.009-.881-4.985-1.213-9.547-1.018-13.952.218-4.923 1.096-9.54 2.67-14.103a45.371 45.371 0 0 1 4.505-9.377c1.813 4.615 4.447 7.35 4.869 7.028.672-.52-2.143-3.522-3.876-8.54a46.355 46.355 0 0 1 15.3-14.033c.307-.182.618-.353.938-.521.021.751.078 1.509.171 2.278.582 4.951 2.963 10.141 3.766 9.735.794-.396-2.479-5.361-2.498-12.756 10.5-5.204 22.957-6.529 36.228-3.832 6.637 1.358 12.713 4.198 18.07 8.452 4.401 3.501 8.337 7.959 11.688 13.259 6.07 9.606 8.318 18.956 8.591 20.93a.874.874 0 0 0 .625.729c1.136.319 3.873 1.336 4.804 3.759.716 1.879.239 4.271-1.422 7.123-4.866-2.88-10.319-3.777-15.819-2.579-5.907 1.289-11.494 4.938-14.75 9.612a21.202 21.202 0 0 0-7.787-7.291c-5.64-3.07-12.841-3.697-19.247-1.689-4.436 1.397-10.786 5.336-14.069 11.844-2.646 5.229-2.875 11.125-.672 17.529 2.55 7.405 8.189 10.901 12.482 12.529 5.061 1.907 10.971 2.235 15.813.861 6.03-1.709 11.007-5.637 14.048-11.073 3.728 1.875 12.662-.26 13.059-.355 1.193-.289 11.771-2.702 17.071 1.184 1.875 1.371 2.869 3.331 3.051 5.988.192 2.798-.76 5.338-2.756 7.337-2.66 2.677-6.928 4.114-11.414 3.836l-3.512-.248c-4.99-.356-11.822-.853-17.256-.688l-1.447.029c-4.249.061-12.161.176-20.194 3.241-9.897 3.785-16.946 10.872-20.938 21.076-4.833 12.33-.553 22.185 3.892 28.274 4.103 5.633 10.254 10.617 17.323 14.029 6.802 3.282 13.868 4.887 19.895 4.513 6.26-.385 11.271-2.091 15.25-5.188-.605 3.358-.792 8.57-.42 13.607.345 4.611 1.437 12.96 4.99 17.811-1.641 2.961-3.082 5.521-3.967 6.852-2.262-2.13-7.689-10.07-11.395-15.504-3.543-5.176-5.582-8.14-6.417-8.896-.096-.08-5.548-2.043-6.795-2.473-8.231-2.879-20.676-7.225-30.879-11.747-6.283-2.783-10.351-5.037-12.961-6.842 1.467-7.76 1.514-26.939.135-36.542 3.683-1.223 5.134-4.485 4.529-4.872' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M42.641 124.633c-3.354-1.358-5.713 1.067-5.498 1.425.278.481 2.515-.855 4.613-.208a5.685 5.685 0 0 0-1.803 3.021c-.726 3.307 2.249 5.422 2.674 4.984.732-.759-1.861-1.938-1.261-4.68.267-1.218 1.096-2.162 1.834-2.563 1.961 1.518 2.627 4.975 3.447 4.746.904-.248-.188-5.18-4.006-6.725' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M131.758 557.052a856.35 856.35 0 0 0 1.872-13.551c3.805 1.281 12.7 2.189 22.184 2.213 7.062.012 19.844-.455 28.506-3.645-1.128 7.174-2.393 13.742-3.797 19.604-2.779 1.23-10.671 3.293-20.191 4.217-8.218.795-19.924.965-29.507-2.621.293-1.852.605-3.918.933-6.217' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M190.077 456.644c0 6.217-.081 12.5-.258 18.797-.64 24.209-2.464 46.508-5.252 64.984-6.192 2.477-16.626 3.871-28.754 3.84-10.733-.021-19.028-1.131-21.996-2.227 1.278-9.811 2.63-20.959 3.933-32.639 2.161-19.275 7.411-65.74 7.229-88.186 11.125-5.301 20.796-11.836 28.731-19.443 4.692-4.508 8.81-9.406 12.299-14.625 2.65 19.325 4.068 43.829 4.068 69.499' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M134.565 221.369c.478-.403.713-1.037.778-1.956 2.3 1.482 6.394 5.104 10.495 9.712 4.006 4.49 9.358 11.348 12.878 19.188-3.524-.106-10.733 1.437-13.689 2.444a161.374 161.374 0 0 0-8.266-15.332c-3.084-5.071-6.202-9.568-9.015-13.252 3.042.652 5.631.179 6.819-.804' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M131.939 198.13c.21 1.743.276 3.973.346 6.121.056 1.714.109 3.323.217 4.736.134 1.695.387 3.462.607 5.023.263 1.862.969 5.2.319 6.012-.964.802-4.116 1.131-7.578-.268-2.071-2.569-3.91-4.607-5.368-6.012.194-.357.394-.726.599-1.097 2.297-4.165 8.008-14.861 10.261-17.134.16.327.411 1.044.597 2.619m-1.829-3.865c-2.397 2.38-7.587 12.119-10.566 17.54-.292.516-.578 1.041-.857 1.552-2.194-3.442-3.667-9.129-4.189-16.223-.263-3.677-.2-7.193.055-10.067 4.317 1.035 11.933 3.794 15.557 7.198' | ||
/> | ||
<path | ||
fill='#D2B16B' | ||
d='M139.693 130.872c2.239 4.129 3.481 8.95 3.423 13.226a.873.873 0 0 0 .426.764c1.762 1.062 3.763 2.822 3.275 5.186-1.013 4.967-10.239 8.69-20.632 10.159-7.738 1.09-19.787.79-31.454-.791-12.383-1.674-22.558-4.505-28.036-7.78.967-1.669 2.821-2.55 2.665-2.935-.183-.443-3.564.622-4.426 3.323-.93 2.941.786 5.742 1.211 5.592.151-.056-.305-2.373-.023-4.288 5.757 3.318 16.013 6.16 28.378 7.83 11.397 1.543 23.196 1.877 31.093.899.396 2.487.024 4.631-1.093 6.23a5.615 5.615 0 0 1-3.898 2.363.875.875 0 0 0-.69.525c-1.389 3.287-3.272 7.062-6.668 10.128-3.862 3.484-8.911 5.383-15.435 5.789-5.734.355-12.487-1.187-19.021-4.343-6.816-3.293-12.734-8.079-16.672-13.479-4.182-5.74-8.207-15.013-3.676-26.598 8.911-22.755 31.152-23.084 39.532-23.208l1.475-.026c5.333-.165 12.123.326 17.073.685l3.53.246c2.53.155 5.001-.189 7.225-.958 5.079 2.291 9.706 6.437 12.418 11.461' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M139.654 87.112c.33 2.732.059 5.446-.808 8.046-.849 2.544-2.271 5.001-4.234 7.329a8.94 8.94 0 0 0-2.291-2.444c-5.83-4.271-16.454-1.979-18.529-1.473-3.712.902-9.669 1.6-11.848.496 2.2-4.717 2.798-10.017 1.58-14.422a25.608 25.608 0 0 0-2.135-5.351c2.399-3.72 7.491-8.108 14.243-9.574 5.41-1.179 10.771-.19 15.5 2.856 2.941 1.892 7.649 7.335 8.522 14.537' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M102.13 85.026c1.218 4.429.454 9.858-2.046 14.528-2.831 5.295-7.585 9.11-13.386 10.761-4.548 1.29-10.118.975-14.9-.837-4.001-1.512-9.265-4.758-11.635-11.637-2.055-6.022-1.86-11.543.598-16.413 3.085-6.102 9.048-9.798 13.218-11.111 6.047-1.896 12.821-1.306 18.12 1.576 4.936 2.693 8.405 7.233 10.031 13.133m-57.811 85.109c-.152 1.965-.344 3.715-.572 5.157-2.301-1.853-2.871-3.124-2.871-3.926 0-.859.57-1.231 3.443-1.231' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M31.586 197.79c.207-6.822 2.812-8.466 4.097-12.576.694-2.216 1.716-9.951 3.589-12.813 1 3.436 6.903 7.455 18.304 12.51 10.264 4.553 22.754 8.907 31.011 11.798 2.523.882 4.706 1.646 6.303 2.229.008.005.013.01.013.018-3.295 2.375-5.969 9.303-8.555 16.019-1.09 2.843-2.135 5.531-3.121 7.59-1.284 2.681-2.056 3.347-2.419 3.502-.582.114-3.938-.615-12.58-4.204-6.164-2.564-12.457-5.538-14.952-7.076-1.056-.652-2.528-1.447-4.231-2.368-6.585-3.556-17.607-9.5-17.459-14.629' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M34.986 205.755c.457.366.931.745 1.444 1.122 3.67 2.707 8.167 5.138 11.782 7.08 1.68.911 3.129 1.696 4.143 2.324 2.662 1.638 9.023 4.639 15.477 7.308 11.749 4.865 13.152 4.304 13.613 4.116 2.112-.846 3.858-5.152 6.542-12.1 2.298-5.974 5.128-13.317 8.004-15.279 1.201 1.621 3.035 4.302 4.936 7.088 6.172 9.032 10.687 15.504 12.624 16.53a.873.873 0 0 0 1.097-.22c.876-1.081 2.714-4.342 4.949-8.382 3.056 3.032 9.018 10.075 15.666 20.99 5.485 9.003 12.835 23.069 17.131 39.502-6.812-2.815-12.063-3.883-12.222-3.326-.354 1.283 8.254 2.541 19.562 8.803a80.555 80.555 0 0 1 14.229 9.994c7.371 6.478 13.517 14.221 18.253 23.023 3.425 6.358 5.282 11.743 6.246 15.149 1.241 4.391 1.361 6.799 1.223 7.223-.114.318-1.241 2.154-12.521 6.975-7.566 3.229-17.675 6.93-28.447 10.406-11.633 3.742-23.11 6.938-33.209 9.248-11.198 2.555-20.084 3.891-26.425 3.973-1.745-6.273-4.198-14.93-6.89-24.43-6.619-23.408-15.087-53.346-19.465-70.007 2.329-.903 7.052-3.789 7.052-7.11 0-1.986-1.538-9.272-5.238-17.902-3.184-7.442-8.843-17.756-17.666-24.679-7.492-5.881-15.962-8.347-25.247-7.363.68-2.613 2.352-7.597 3.357-10.056' | ||
/> | ||
<path | ||
fill='#F4DE12' | ||
d='M47.504 394.722c-4.985-8.445-13.422-31.305-23.155-62.75-8.116-26.23-14.288-49.328-15.053-54.714 6.243-4.528 17.158-9.099 29.554-12.094 8.412-2.035 16.428-3.065 23.189-2.98 2.299.024 4.43.187 6.361.476 2.027 9.714 13.593 50.596 22.11 80.688 3.893 13.766 7.289 25.773 8.773 31.27-2.431.129-5.82.777-10.142 1.947-6.23 1.693-14.028 4.389-21.385 7.418-6.019 2.477-11.338 4.895-15.255 7.215-2.296 1.356-3.894 2.532-4.997 3.524' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M70.264 262.986c3.23.663 5.843 1.724 7.721 3.155-.403 1.984-3.669 4.174-5.703 5.005-.905-3.48-1.6-6.271-2.018-8.16' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M2.038 260.809c.36-7.439 1.79-18.234 6.638-27.417 4.244-8.03 10.222-13.035 17.76-14.884 10.946-2.686 20.826-.648 29.354 6.041 14.362 11.273 20.794 32.406 22.017 39.352-3.642-2.223-8.918-3.388-15.744-3.472-6.902-.081-15.078.963-23.622 3.025-13.82 3.337-29.857 9.85-34.85 16.817-1.295-4.742-1.895-12.076-1.553-19.462' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M4.344 282.387c.648-1.259 1.792-2.569 3.379-3.893.254 1.447.713 3.513 1.332 6.066-1.78-.326-4.032-1.403-4.711-2.173m-2.595 75.198c0-1.117.062-2.611.249-4.604.418-4.574 1.328-10.4 2.562-16.387 2.776-13.398 6.521-24.729 10.169-30.884a1180.336 1180.336 0 0 0 7.949 26.777c2.454 7.938 6.914 21.932 11.637 35.148-3.505-.277-9.9-.998-16.154-2.068-8.617-1.475-14.302-3.15-16.003-4.736-.05-.046-.409-.587-.409-3.246' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M46.646 509.423c2.181-25.859 1.787-56.375-1.147-90.693a.905.905 0 0 0-.3-.596c-5.914-5.023-14.604-13.23-22.493-23.76-7.589-10.137-12.56-19.953-14.774-29.207 2.644.74 5.963 1.451 9.936 2.135 6.794 1.164 13.771 1.914 17.096 2.139 3.961 10.986 8.054 21.205 11.243 26.623-1.209 1.477-1.083 2.289-.873 2.357.382.123.935-2.26 7.987-6.027a167.98 167.98 0 0 1 14.99-7.082c7.306-2.998 15.037-5.678 21.211-7.346 9.379-2.543 12.02-1.961 12.718-1.598 1.495.783 3.123 4.379 4.255 9.396 1.874 8.281 1.142 14.479 1.902 14.545.871.082 1.228-7.26-.493-14.865-.738-3.279-2.376-8.99-4.995-10.355-.446-.234-1.046-.383-1.805-.453-.372-1.391-.896-3.291-1.528-5.586 12.415-.287 34.556-5.211 59.677-13.299 10.828-3.486 20.99-7.205 28.609-10.461 4.675-2.006 7.707-3.535 9.679-4.699.282 3.744.277 9.354-1.007 16.33-1.366 7.398-3.858 14.621-7.391 21.459-4.174 8.092-9.785 15.535-16.646 22.121-7.931 7.598-17.608 14.109-28.772 19.371a.879.879 0 0 0-.503.803c.23 15.795-3.737 57.498-7.199 88.416-1.788 16-3.653 31.023-5.321 42.934-7.504 2.029-16.347 2.736-26.269 2.111-8.553-.551-17.67-2.053-27.092-4.484-16.699-4.307-30.611-10.686-34.002-14.162 1.21-6.914 2.417-15.485 3.307-26.067' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M38.614 560.066c-.398-.916.312-3.988 1.304-8.242.863-3.646 1.979-8.436 3.12-14.652 4.517 3.762 17.777 9.711 33.943 13.879 9.507 2.455 18.71 3.973 27.362 4.521 9.816.633 18.604-.039 26.14-1.988-.144 1.059-.292 2.09-.442 3.088-2.81 19.33-3.982 22.033-4.275 22.398-2.311 2.744-17.201 3.777-38.133.762-11.684-1.691-22.757-4.336-31.176-7.48-9.758-3.644-15.922-7.894-17.843-12.286' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M52.693 616.58c1.168-2.297 2.717-5.105 3.822-6.586a79.13 79.13 0 0 0 2.33 4.016c-1.631.806-4.267 2.015-6.152 2.57' | ||
/> | ||
<path | ||
fill='#11412F' | ||
d='M142.423 628.138c-1.206 1.943-9.931 5.139-23.166 6.051-7.082.486-14.276.262-21.377-.664-8.308-1.1-16.212-3.129-23.489-6.051-5.002-2.014-9.611-7.691-12.757-12.395-2.443-3.664-4.177-7.277-4.747-7.488-1.303-.471-4.919 6.527-6.144 8.963-10.159-5.496-18.832-15.236-21.956-20.697.688-11.547 9.143-25.527 12.7-29.5 3.295 2.74 8.09 5.295 14.362 7.635 8.531 3.182 19.732 5.877 31.53 7.582 13.096 1.887 28.019 2.65 35.512.736 6.875 5.4 13.438 14.869 17.241 25.4 3.19 8.831 4.16 17.42 2.291 20.428' | ||
/> | ||
<path | ||
fill='#11412F' | ||
d='M201.369 601.08c-4.134 4.961-17.595 7.631-27.626 8.217-11.679.693-25.116-.701-33.128-5.199-1.633-3.953-3.615-7.75-5.816-11.148-2.983-4.574-6.312-8.371-9.917-11.287.988-.402 1.743-.896 2.221-1.463.364-.43 1.246-1.484 3.444-15.172 9.829 3.594 21.652 3.408 29.95 2.617 9.756-.953 17.7-3.043 20.723-4.365 3.921 2.605 8.7 7.717 12.878 13.807 4.488 6.529 7.502 13.021 8.251 17.797.444 2.791.114 4.877-.98 6.196' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M99.893 428.08c7.428-6.072 8.151-16.395 7.433-16.502-.604-.086-1.242 9.564-8.344 15.381-5.67 4.641-14.027 6.234-13.843 6.914.247.857 9.594-1.567 14.754-5.793M73.854 90.046a3.635 3.635 0 0 0 0 7.269 3.64 3.64 0 0 0 3.635-3.638 3.639 3.639 0 0 0-3.635-3.631m50.19-3.18a3.287 3.287 0 0 0-3.287 3.294 3.288 3.288 0 0 0 3.287 3.294 3.301 3.301 0 0 0 3.302-3.294 3.3 3.3 0 0 0-3.302-3.294' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M9.296 277.254c.763 5.391 6.937 28.486 15.054 54.718 9.733 31.447 18.169 54.299 23.154 62.754 1.104-.994 2.701-2.176 4.999-3.531 3.917-2.32 9.237-4.74 15.255-7.215.189-.08.383-.158.58-.234-11.684-29.766-33.414-101.828-37.72-116.3-8.908 2.797-16.508 6.317-21.322 9.808' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M51.252 190.681c.291-5.188 1.203-7.115 1.861-7.835-8.498-4.104-12.98-7.492-13.84-10.447-1.873 2.854-2.895 10.6-3.59 12.815-1.285 4.11-3.89 5.754-4.097 12.579-.128 4.467 8.23 9.562 14.736 13.147-.573-6.67 4.491-12.453 4.93-20.259m-11.996 26.891c-4.087-.468-8.363-.158-12.822.936-7.535 1.849-13.513 6.854-17.758 14.889-4.847 9.178-6.276 19.973-6.639 27.412-.339 7.39.259 14.725 1.554 19.463 4.017-5.592 15.147-10.896 26.53-14.492-5.557-31.462 3.88-44.131 9.135-48.208m12.781-1.485c-.992-.596-2.314-1.311-3.824-2.125-3.617-1.947-8.112-4.376-11.782-7.085a35.272 35.272 0 0 1-1.445-1.122c-1.005 2.459-2.67 7.448-3.357 10.056 6.495-.688 12.595.315 18.233 2.994.766-1.073 1.611-2.173 2.175-2.718m44.16-11.349c3.13.853 7.604 8.762 12.355 13.575-2.097-2.837-4.666-6.571-7.631-10.901-1.896-2.784-3.728-5.465-4.931-7.089-2.279 1.559-4.527 6.503-6.512 11.468 2.793-3.94 6.086-7.23 6.719-7.053' | ||
/> | ||
<path | ||
fill='#92572A' | ||
d='M61.121 150.716c1.166-12.711 7.607-21.277 12.537-25.933-6.039 3.357-11.681 8.854-15.22 17.888-4.534 11.587-.506 20.865 3.675 26.6 3.937 5.4 9.862 10.188 16.676 13.482 6.532 3.155 13.287 4.692 19.02 4.337a34.095 34.095 0 0 0 3.887-.449c-16.428-1.221-42.446-15.495-40.575-35.925' | ||
/> | ||
<path | ||
fill='#E7D8A7' | ||
d='M146.819 150.045c.485-2.359-1.516-4.124-3.277-5.186a.869.869 0 0 1-.426-.761c.061-4.273-1.182-9.092-3.423-13.226-2.717-5.024-7.337-9.173-12.419-11.46-.998.343-2.042.601-3.118.769 3.529 2.077 13.665 9.516 13.14 26.228 0 0 6.031 4.918 2.65 10.066 3.773-1.748 6.365-3.931 6.873-6.43m-31.153 18.338c-4.335.233-1.6 2.516-.554 2.635.758.086.603 6.036-2.609 10.921.251-.204.489-.416.74-.635 3.393-3.068 5.279-6.841 6.668-10.128a.874.874 0 0 1 .692-.525 5.606 5.606 0 0 0 3.896-2.368c1.117-1.59 1.489-3.733 1.098-6.226a74.17 74.17 0 0 1-5.772.457c-.228 2.202-1.265 5.706-4.159 5.869' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M78.024 184.33c-7.07-3.409-13.223-8.394-17.323-14.029-4.441-6.092-8.723-15.941-3.893-28.271 3.993-10.204 11.041-17.293 20.942-21.073a41.596 41.596 0 0 1 2.978-1.009c-14.947 2.976-23.44 13.823-24.237 13.865-.705.039-1.499-13.753-5.391-31.088a273.063 273.063 0 0 0-3.994-5.582c-1.79-2.431-3.384-4.49-4.428-5.664-.208 1.83.039 8.207.244 11.508.278 4.388.556 9.02-.325 9.513-.465.265-2.023-.878-3.906-2.499a235.877 235.877 0 0 1 2.291 6.88 8.863 8.863 0 0 1 1.283-.034c3.254.16 6.173 2.718 6.195 3.601 1.878 2.732-.507 3.885-2.066 2.667-1.119-.861-4.569-2.874-7.727-1.428-3.091 1.416-4.996 4.782-5.837 6.959.031.626.124 1.237.288 1.848 1.171 4.499 4.033 7.42 7.838 8.018 5.865.917 8.344-3.899 9.034-3.464.604.387-.847 3.651-4.533 4.875 1.382 9.605 1.337 28.785-.132 36.547 2.35 1.621 5.883 3.612 11.147 6.021.159-6.705-.363-12.051.451-11.138 10.263 11.534 22.059 15.479 31.216 16.578-3.328-.765-6.752-1.976-10.115-3.601m-31.378-52.972c-.819.227-1.483-3.228-3.445-4.746-.739.401-1.569 1.35-1.836 2.563-.598 2.742 1.992 3.923 1.26 4.68-.42.435-3.396-1.673-2.669-4.984a5.636 5.636 0 0 1 1.799-3.021c-2.095-.647-4.332.69-4.618.211-.21-.36 2.148-2.786 5.502-1.425 3.827 1.542 4.912 6.474 4.007 6.722' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M34.889 35.761c1.733 5.018 4.545 8.018 3.875 8.542-.421.319-3.056-2.418-4.869-7.028a45.217 45.217 0 0 0-4.505 9.373c-1.576 4.565-2.451 9.18-2.669 14.105-.195 4.403.136 8.962 1.017 13.952 1.662 9.316 4.922 18.397 8.374 28.009.53 1.485 1.068 2.984 1.604 4.498 1.5 1.403 2.944 2.686 4.046 3.447.078-1.356-.152-5.523-.284-7.583-.222-3.438-.938-13.379.506-13.753.991-.255 3.872 3.676 6.418 7.133.569.775 1.144 1.561 1.711 2.351-1.124-4.321-2.67-10.084-3.679-13.138-7.195-21.757-7.407-52.654 4.694-64.465-.321.17-.633.341-.939.523a46.31 46.31 0 0 0-15.3 14.034' | ||
/> | ||
<path | ||
fill='#E9E74A' | ||
d='M131.571 114.783c1.991-2.003 2.948-4.543 2.756-7.337-.182-2.66-1.176-4.617-3.051-5.988-5.301-3.888-15.878-1.473-17.071-1.189-.396.1-9.331 2.235-13.059.36a23.747 23.747 0 0 1-.924 1.514c2.017.681 7.881 2.044 17.923.717 4.488-.598 10.532.419 11.917 4.911 1.408 4.564-3.52 9.205-9.182 10.875 4.226.088 8.18-1.328 10.691-3.863m-16.353 104.766a238.786 238.786 0 0 0 2.521-4.474c-3.554-4.851-4.648-13.199-4.99-17.815-.372-5.037-.186-10.242.42-13.604a22.318 22.318 0 0 1-3.104 2.022c-.421 4.434-1.332 23.261 5.153 33.871m4.875-162.73s-5.377.291-5.243 2.726c.097 1.714 4.231 1.793 7.619 2.541 3.165.692 4.884 4.266 4.196 6.756a22.684 22.684 0 0 1 4.482 2.044c1.661-2.851 2.138-5.244 1.417-7.125-.926-2.422-3.663-3.44-4.799-3.757a.89.89 0 0 1-.63-.731c-.268-1.979-2.516-11.321-8.586-20.928-3.351-5.3-7.284-9.76-11.692-13.259-5.353-4.254-11.431-7.096-18.068-8.452-4.207-.854-8.333-1.308-12.34-1.355 15.554 2.195 36.419 12.695 43.644 41.54' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M99.893 428.08c-5.159 4.227-14.507 6.65-14.754 5.793-.185-.68 8.173-2.275 13.843-6.914.15-.119.303-.252.446-.375-9.536 4.287-21.021-.877-25.449-7.355-8.274-12.109-9.168-27.975-9.258-32.383a172.206 172.206 0 0 0-11.399 5.549c-7.056 3.768-7.606 6.145-7.987 6.025-.209-.062-.337-.885.874-2.359-3.193-5.414-7.284-15.633-11.247-26.617-3.322-.223-10.304-.98-17.096-2.141-3.973-.68-7.29-1.395-9.934-2.125 2.216 9.246 7.184 19.064 14.774 29.197 7.886 10.531 16.58 18.732 22.493 23.762a.914.914 0 0 1 .302.594c2.934 34.322 3.324 64.834 1.141 90.693-.887 10.59-2.095 19.152-3.297 26.074 3.384 3.469 17.293 9.842 33.993 14.156.41.102.812.201 1.213.307 16.858-97.967 6.474-111.158 11.423-113.982 4.911-1.795 8.286-5.238 10.495-8.389-.185.16-.375.327-.576.49' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M136.02 509.091c3.464-30.92 7.43-72.621 7.198-88.416 0-.348.195-.662.506-.803 11.169-5.266 20.842-11.777 28.772-19.371 6.866-6.584 12.473-14.027 16.646-22.117 3.537-6.846 6.024-14.068 7.391-21.463 1.284-6.979 1.284-12.59 1.007-16.33-1.542.912-3.729 2.049-6.852 3.451-1.93 22.469-11.636 56.572-47.562 72.906 0 0-.323-6.072-2.218-5.617-1.643.395-5.153 74.123-15.491 141.863a58.543 58.543 0 0 0 5.281-1.17c1.673-11.911 3.537-26.933 5.322-42.933' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M130.55 565.033c-2.198 13.686-3.083 14.734-3.447 15.166-.475.57-1.232 1.061-2.216 1.467 2.177 1.764 4.265 3.863 6.241 6.256.095-4.219.78-15.293 2.425-21.914a40.04 40.04 0 0 1-3.003-.975' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M76.983 551.05c-16.166-4.172-29.433-10.111-33.945-13.879-1.142 6.217-2.258 11.01-3.119 14.652-.99 4.258-1.706 7.33-1.303 8.246 1.921 4.389 8.082 8.641 17.841 12.285 4.955 1.842 10.834 3.525 17.207 4.939 2.002-10.648 3.719-21.059 4.53-25.938-.401-.104-.811-.197-1.211-.305' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M125.768 579.072c.291-.367 1.464-3.07 4.271-22.4.152-1 .301-2.039.449-3.09a67.194 67.194 0 0 1-5.31 1.127 1050.137 1050.137 0 0 1-4.613 26.293c2.727-.452 4.517-1.118 5.203-1.93' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M71.3 578.552c-5.693-1.328-10.951-2.875-15.448-4.557-6.274-2.344-11.071-4.898-14.363-7.635-3.557 3.963-12.013 17.945-12.703 29.496 3.127 5.467 11.799 15.201 21.958 20.693 1.225-2.436 4.838-9.43 6.142-8.959.577.211 2.306 3.824 4.749 7.482 1.4 2.092 3.084 4.385 4.967 6.455-5.992-15.535 1.109-35.172 4.698-42.975' | ||
/> | ||
<path | ||
fill='#6D968F' | ||
d='M142.423 628.138c1.869-3.008.899-11.598-2.29-20.428-3.803-10.531-10.366-20-17.241-25.4a29.814 29.814 0 0 1-3.61.656c5.781 5.445 18.956 22.469 19.706 47.334 1.857-.771 3.036-1.541 3.435-2.162' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M144.979 421.214c.183 22.449-5.066 68.91-7.229 88.191a1870.181 1870.181 0 0 1-3.93 32.631c.802.301 1.991.602 3.515.869 3.71-28.748 9.63-81.428 10.901-123.301-1.067.54-2.154 1.085-3.257 1.61m-11.352 122.287a787.714 787.714 0 0 1-1.874 13.551c-.32 2.299-.63 4.365-.927 6.217a41.79 41.79 0 0 0 3.382 1.09c.477-3.031 1.731-10.732 2.969-20.004-1.442-.26-2.636-.547-3.55-.854' | ||
/> | ||
<path | ||
fill='#E9E74A' | ||
d='M87.018 62.357c7.998 1.619 9.114 5.82 10.748 3.667 1.017-1.337-1.077-7.174-10.089-8.781-5.055-.897-10.535 1.06-10.972 3.14-.476 2.332 2.738.451 10.313 1.974' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M44.319 170.135c-.152 1.965-.344 3.715-.572 5.157-2.301-1.853-2.871-3.124-2.871-3.926 0-.859.57-1.231 3.443-1.231m87.62 27.995c.21 1.743.276 3.973.346 6.121.056 1.714.109 3.323.217 4.736.134 1.695.387 3.462.607 5.023.263 1.862.969 5.2.319 6.012-.964.802-4.116 1.131-7.578-.268-2.071-2.569-3.91-4.607-5.368-6.012.194-.357.394-.726.599-1.097 2.297-4.165 8.008-14.861 10.261-17.134.16.327.411 1.044.597 2.619m-61.675 64.856c3.23.663 5.843 1.724 7.721 3.155-.403 1.984-3.669 4.174-5.703 5.005-.905-3.48-1.6-6.271-2.018-8.16m-65.92 19.401c.648-1.259 1.792-2.569 3.379-3.893.254 1.447.713 3.513 1.332 6.066-1.78-.326-4.032-1.406-4.711-2.173m-2.595 75.198c0-1.117.062-2.611.249-4.604.418-4.574 1.328-10.4 2.562-16.387 2.776-13.398 6.521-24.729 10.169-30.884a1180.336 1180.336 0 0 0 7.949 26.777c2.454 7.938 6.914 21.932 11.637 35.148-3.505-.277-9.9-.998-16.154-2.068-8.617-1.475-14.302-3.15-16.003-4.736-.05-.046-.409-.587-.409-3.246' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M52.693 616.58c1.168-2.297 2.717-5.105 3.822-6.586a79.13 79.13 0 0 0 2.33 4.016c-1.631.806-4.267 2.015-6.152 2.57' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M74.515 108.034c-3.998-1.517-9.259-4.765-11.624-11.642-2.07-6.02-1.873-11.541.588-16.411 2.003-3.948 5.202-6.887 8.338-8.826-3.878 1.744-8.467 5.164-11.056 10.277-2.457 4.865-2.657 10.388-.598 16.408 2.371 6.879 7.634 10.13 11.636 11.645 4.781 1.807 10.352 2.117 14.899.83a22.335 22.335 0 0 0 5.753-2.553c-.974.434-1.986.8-3.032 1.095-4.549 1.294-10.125.981-14.904-.823m39.007-37.743c-5.696 1.831-9.988 5.687-12.133 9.003.271.506.53 1.022.769 1.553 2.188-3.008 4.714-6.796 11.364-10.556m-11.578 28.775c2.179 1.104 8.136.401 11.848-.496a41.52 41.52 0 0 1 1.937-.411c-8.165.833-11.664-.293-12.863-1.378-.27.772-.576 1.536-.922 2.285' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M204.092 594.605c-.793-5.018-3.916-11.771-8.538-18.514-4.269-6.209-9.177-11.465-13.273-14.211 5.075-21.287 8.37-51.924 9.306-86.395.878-33.295-.61-66.291-4.13-90.598a79.281 79.281 0 0 0 3.247-5.697c3.618-7 6.154-14.385 7.554-21.949 1.25-6.77 1.347-13.504.96-17.721 1.775-1.25 2.01-1.906 2.13-2.234.438-1.264-.258-4.877-1.065-7.832-.917-3.32-2.669-8.584-5.931-14.85-4.774-9.183-11.038-17.283-18.616-24.073a80.323 80.323 0 0 0-4.169-3.489c-3.209-8.767-9.521-25.761-13.27-33.936 1.261-.711 3.39-2.196 2.75-3.839-2.726-6.907-8.336-15.078-13.892-21.31-5.009-5.616-9.638-9.483-11.863-10.601-.086-1.003-.246-2.191-.441-3.6-.228-1.604-.461-3.269-.595-4.906-.109-1.373-.168-2.963-.215-4.653-.182-5.782-.347-8.709-1.9-10.619-2.013-2.482-10.586-6.716-17.393-8.28.199-1.542.452-2.818.738-3.725 2.851-2.926 4.564-6.277 5.862-9.279a7.353 7.353 0 0 0 4.59-3.006c1.284-1.823 1.909-4.298 1.408-7.482 11.866-1.836 20.154-6.273 21.2-11.414.507-2.485-.31-4.574-3.672-6.768-.038-4.436-1.352-9.358-3.634-13.589-2.76-5.1-6.847-9.058-11.88-11.517 1.302-.673 2.474-1.512 3.457-2.498 2.363-2.378 3.491-5.381 3.259-8.699-.083-1.265-.341-2.412-.754-3.442 2.29-2.602 3.932-5.377 4.896-8.266a19.707 19.707 0 0 0 .869-8.673c-.864-7.152-5.3-12.699-8.475-15.096 2.103-3.564 2.463-6.451 1.595-8.709-1.074-2.808-3.84-4.119-5.421-4.656-.564-3.151-3-11.978-8.762-21.076-3.445-5.465-7.513-10.072-12.073-13.694-5.29-4.204-11.271-7.086-17.774-8.568C86.382 6.43 80.991 2.772 77.089 1.249c-4.496-1.761-9.532-1.656-13.822.296-3.916 1.801-6.927 4.298-8.977 7.458a20.265 20.265 0 0 0-4.653-.208c-5.233.391-9.777 2.888-13.127 7.223-1.922 2.49-3.214 5.214-3.86 8.098-.561 2.521-.631 5.173-.191 7.894.176 1.107.418 2.165.714 3.151a47.756 47.756 0 0 0-5.444 10.916c-1.631 4.727-2.535 9.497-2.762 14.594-.206 4.538.145 9.227 1.048 14.342 1.685 9.457 5.119 19.036 8.437 28.293.145.396.299.807.438 1.208-2.583-2.444-6.413-5.874-7.012-5.405-.695.549-.759 5.132-.738 7.716.043 5.665.719 11.33 1.441 11.201.675-.119-.446-10.49.253-17.098.994.736 4.997 4.56 7.124 6.576 1.136 3.208 2.264 6.455 3.285 9.698a10.17 10.17 0 0 0-2.706 1.201c-4.253 2.65-6.357 7.809-5.119 12.538.708 2.72 1.965 4.935 3.71 6.577a10.518 10.518 0 0 0 5.557 2.727c1.124.175 2.143.182 3.062.066.998 7.036 1.232 19.164.689 28.058-6.571-.248-7.91 4.133-9.634 12.792-.282 1.456-.539 2.712-.79 3.533-1.282 4.082-3.968 6.188-4.179 13.05-.06 2.135 1.179 4.374 3.763 6.799-1.106 2.535-3.217 8.862-3.833 11.513-1.232.19-2.484.438-3.742.749-8.049 1.967-14.4 7.276-18.894 15.771-4.996 9.459-6.474 20.531-6.829 28.147-.417 8.654.469 17.297 2.241 22.014.7 1.875 4.952 3.394 6.966 3.64 1.154 4.6 2.732 10.479 4.58 17.067-2.189 3.226-4.35 8.091-6.438 14.448-1.807 5.506-3.493 11.942-4.862 18.641-1.252 6.102-2.164 11.994-2.56 16.611-.673 7.674.347 8.621.73 8.973.914.857 2.599 1.678 5.036 2.467 2.156 9.781 7.304 20.156 15.309 30.846 7.864 10.5 16.517 18.699 22.484 23.809 1.66 19.547 2.491 37.852 2.491 54.76 0 12.555-.457 24.336-1.377 35.283-1.781 21.215-4.85 34.316-6.678 42.154-1.51 6.404-1.565 8.537-1.221 9.338.662 1.514 1.729 2.986 3.184 4.414-1.852 2.051-4.716 6.312-7.308 11.492-4.593 9.205-6.356 18.719-5.753 19.807 3.198 5.754 12.632 16.4 23.612 22.051 1.148.592 5.908-1.447 9.069-3.041a63.946 63.946 0 0 0 2.286 3.289c3.982 5.338 7.896 8.811 11.649 10.312 7.411 2.986 15.462 5.062 23.913 6.166 7.216.936 14.523 1.17 21.728.674 12.078-.828 22.624-3.787 24.533-6.877 2.192-3.533 1.33-12.357-2.125-21.949a11.467 11.467 0 0 1-.205-.551c7.645 3.578 19.4 5.25 32.264 4.494 10.127-.596 24.161-3.195 28.878-8.852 1.429-1.725 1.898-4.28 1.368-7.598M63.875 2.863c3.927-1.79 8.557-1.891 12.69-.265 3.498 1.374 8.297 4.598 11.856 12.173-7.974-1.542-15.672-1.664-22.843-.387a22.545 22.545 0 0 0-9.747-5.074c1.898-2.704 4.585-4.865 8.044-6.447m-8.874 7.755a21.107 21.107 0 0 1 8.757 4.125c-3.877.83-7.605 2.072-11.117 3.734.143-1.672.471-3.347 1.045-4.973.355-1.012.798-1.98 1.315-2.886M33.885 31.784c-.877-5.5.396-10.509 3.764-14.878 3.101-4 7.28-6.307 12.101-6.667a17.935 17.935 0 0 1 3.743.117c-.45.849-.842 1.736-1.168 2.669-.689 1.943-1.085 4.017-1.182 6.188-.623.32-1.222.645-1.823.988a48.048 48.048 0 0 0-15.062 13.413 23.957 23.957 0 0 1-.373-1.83' | ||
/> | ||
<path | ||
fill='#F4DE12' | ||
d='M49.991 135.049c-.69-.435-3.168 4.381-9.033 3.464-3.806-.6-6.662-3.518-7.838-8.02-1.052-3.992.736-8.351 4.344-10.6 1.554-.968 3.205-1.384 4.831-1.274 3.396.231 5.716 2.471 6.112 2.015.527-.617-2.608-3.607-6.142-3.787a9.697 9.697 0 0 0-1.286.034c-.716-2.302-1.498-4.593-2.288-6.882 1.88 1.624 3.442 2.767 3.907 2.499.88-.486.604-5.118.321-9.516-.204-3.294-.449-9.674-.241-11.503 1.044 1.173 2.638 3.235 4.428 5.666 5.188 7.038 10.557 15.416 11.21 14.993.772-.485-4.665-8.536-9.914-15.681-2.545-3.455-5.43-7.389-6.418-7.136-1.447.382-.728 10.318-.506 13.753.129 2.069.36 6.229.281 7.585-1.098-.764-2.546-2.04-4.043-3.452a5104.82 5104.82 0 0 0-1.606-4.493c-3.451-9.615-6.711-18.696-8.373-28.009-.881-4.985-1.213-9.547-1.018-13.952.218-4.923 1.096-9.54 2.67-14.103a45.371 45.371 0 0 1 4.505-9.377c1.813 4.615 4.447 7.35 4.869 7.028.672-.52-2.143-3.522-3.876-8.54a46.355 46.355 0 0 1 15.3-14.033c.307-.182.618-.353.938-.521.021.751.078 1.509.171 2.278.582 4.951 2.963 10.141 3.766 9.735.794-.396-2.479-5.361-2.498-12.756 10.5-5.204 22.957-6.529 36.228-3.832 6.637 1.358 12.713 4.198 18.07 8.452 4.401 3.501 8.337 7.959 11.688 13.259 6.07 9.606 8.318 18.956 8.591 20.93a.874.874 0 0 0 .625.729c1.136.319 3.873 1.336 4.804 3.759.716 1.879.239 4.271-1.422 7.123-4.866-2.88-10.319-3.777-15.819-2.579-5.907 1.289-11.494 4.938-14.75 9.612a21.202 21.202 0 0 0-7.787-7.291c-5.64-3.07-12.841-3.697-19.247-1.689-4.436 1.397-10.786 5.336-14.069 11.844-2.646 5.229-2.875 11.125-.672 17.529 2.55 7.405 8.189 10.901 12.482 12.529 5.061 1.907 10.971 2.235 15.813.861 6.03-1.709 11.007-5.637 14.048-11.073 3.728 1.875 12.662-.26 13.059-.355 1.193-.289 11.771-2.702 17.071 1.184 1.875 1.371 2.869 3.331 3.051 5.988.192 2.798-.76 5.338-2.756 7.337-2.66 2.677-6.928 4.114-11.414 3.836l-3.512-.248c-4.99-.356-11.822-.853-17.256-.688l-1.447.029c-4.249.061-12.161.176-20.194 3.241-9.897 3.785-16.946 10.872-20.938 21.076-4.833 12.33-.553 22.185 3.892 28.274 4.103 5.633 10.254 10.617 17.323 14.029 6.802 3.282 13.868 4.887 19.895 4.513 6.26-.385 11.271-2.091 15.25-5.188-.605 3.358-.792 8.57-.42 13.607.345 4.611 1.437 12.96 4.99 17.811-1.641 2.961-3.082 5.521-3.967 6.852-2.262-2.13-7.689-10.07-11.395-15.504-3.543-5.176-5.582-8.14-6.417-8.896-.096-.08-5.548-2.043-6.795-2.473-8.231-2.879-20.676-7.225-30.879-11.747-6.283-2.783-10.351-5.037-12.961-6.842 1.467-7.76 1.514-26.939.135-36.542 3.683-1.223 5.134-4.485 4.529-4.872' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M42.639 124.633c-3.354-1.358-5.712 1.067-5.498 1.425.28.481 2.517-.855 4.614-.208a5.679 5.679 0 0 0-1.803 3.021c-.726 3.307 2.25 5.422 2.673 4.984.732-.759-1.86-1.938-1.26-4.68.267-1.218 1.097-2.162 1.834-2.563 1.962 1.518 2.628 4.975 3.447 4.746.905-.248-.188-5.18-4.007-6.725' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M131.758 557.052a856.35 856.35 0 0 0 1.872-13.551c3.805 1.281 12.7 2.189 22.184 2.213 7.062.012 19.839-.455 28.506-3.645-1.128 7.174-2.393 13.742-3.797 19.604-2.779 1.23-10.676 3.293-20.191 4.217-8.218.795-19.924.965-29.507-2.621.293-1.852.605-3.918.933-6.217' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M190.077 456.644c0 6.217-.081 12.5-.258 18.797-.64 24.209-2.464 46.508-5.252 64.984-6.192 2.477-16.626 3.871-28.754 3.84-10.733-.021-19.028-1.131-21.996-2.227 1.278-9.811 2.63-20.959 3.933-32.639 2.161-19.275 7.411-65.74 7.229-88.186 11.125-5.301 20.796-11.836 28.731-19.443 4.692-4.508 8.81-9.406 12.299-14.625 2.65 19.325 4.068 43.829 4.068 69.499' | ||
/> | ||
<path | ||
fill='#F4DE12' | ||
d='M154.438 276.413c-2.234-8.922-5.366-17.171-8.672-24.362 1.553-.511 4.255-1.157 6.924-1.632a49.33 49.33 0 0 1 2.229-.356c3.028 4.699 10.892 26.04 14.066 34.742a83.397 83.397 0 0 0-8.518-5.394 81.007 81.007 0 0 0-6.029-2.998' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M134.565 221.369c.478-.403.713-1.037.778-1.956 2.3 1.482 6.394 5.104 10.495 9.712 4.006 4.49 9.358 11.348 12.878 19.188-3.524-.106-10.733 1.437-13.689 2.444a161.374 161.374 0 0 0-8.266-15.332c-3.084-5.071-6.202-9.568-9.015-13.252 3.042.652 5.631.179 6.819-.804' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M131.939 198.13c.21 1.743.276 3.973.346 6.121.056 1.714.109 3.323.217 4.736.134 1.695.387 3.462.607 5.023.263 1.862.969 5.2.319 6.012-.964.802-4.116 1.131-7.578-.268-2.071-2.569-3.91-4.607-5.368-6.012.194-.357.394-.726.599-1.097 2.297-4.165 8.008-14.861 10.261-17.134.16.327.411 1.044.597 2.619m-1.829-3.865c-2.397 2.38-7.587 12.119-10.566 17.54-.292.516-.578 1.041-.857 1.552-2.194-3.442-3.667-9.129-4.189-16.223-.263-3.677-.2-7.193.055-10.067 4.317 1.035 11.933 3.794 15.557 7.198' | ||
/> | ||
<path | ||
fill='#D2B16B' | ||
d='M139.693 130.872c2.239 4.129 3.481 8.95 3.423 13.226a.873.873 0 0 0 .426.764c1.762 1.062 3.763 2.822 3.275 5.186-1.013 4.967-10.239 8.69-20.632 10.159-7.738 1.09-19.787.79-31.454-.791-12.383-1.674-22.558-4.505-28.036-7.78.967-1.669 2.821-2.55 2.665-2.935-.183-.443-3.564.622-4.426 3.323-.93 2.941.786 5.742 1.211 5.592.151-.056-.305-2.373-.023-4.288 5.757 3.318 16.013 6.16 28.378 7.83 11.397 1.543 23.196 1.877 31.093.899.396 2.487.024 4.631-1.093 6.23a5.615 5.615 0 0 1-3.898 2.363.875.875 0 0 0-.69.525c-1.389 3.287-3.272 7.062-6.668 10.128-3.862 3.484-8.911 5.383-15.435 5.789-5.734.355-12.487-1.187-19.021-4.343-6.816-3.293-12.734-8.079-16.672-13.479-4.182-5.74-8.207-15.013-3.676-26.598 8.911-22.755 31.152-23.084 39.532-23.208l1.475-.026c5.333-.165 12.123.326 17.073.685l3.53.246c2.53.155 5.001-.189 7.225-.958 5.079 2.291 9.706 6.437 12.418 11.461' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M139.654 87.112c.33 2.732.059 5.446-.808 8.046-.849 2.544-2.271 5.001-4.234 7.329a8.94 8.94 0 0 0-2.291-2.444c-5.83-4.271-16.454-1.979-18.529-1.473-3.712.902-9.669 1.6-11.848.496 2.2-4.717 2.798-10.017 1.58-14.422a25.608 25.608 0 0 0-2.135-5.351c2.399-3.72 7.491-8.108 14.243-9.574 5.41-1.179 10.771-.19 15.5 2.856 2.941 1.892 7.649 7.335 8.522 14.537' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M102.13 85.026c1.218 4.429.454 9.858-2.046 14.528-2.831 5.295-7.585 9.11-13.386 10.761-4.548 1.29-10.118.975-14.9-.837-4.001-1.512-9.265-4.758-11.635-11.637-2.055-6.022-1.86-11.543.598-16.413 3.085-6.102 9.048-9.798 13.218-11.111 6.047-1.896 12.821-1.306 18.12 1.576 4.936 2.693 8.405 7.233 10.031 13.133m-57.811 85.109c-.152 1.965-.344 3.715-.572 5.157-2.301-1.853-2.871-3.124-2.871-3.926 0-.859.57-1.231 3.443-1.231' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M31.586 197.79c.207-6.822 2.812-8.466 4.097-12.576.694-2.216 1.716-9.951 3.589-12.813 1 3.436 6.903 7.455 18.304 12.51 10.264 4.553 22.754 8.907 31.011 11.798 2.523.882 4.706 1.646 6.303 2.229.008.005.013.01.013.018-3.295 2.375-5.969 9.303-8.555 16.019-1.09 2.843-2.135 5.531-3.121 7.59-1.284 2.681-2.056 3.347-2.419 3.502-.582.114-3.938-.615-12.58-4.204-6.164-2.564-12.457-5.538-14.952-7.076-1.056-.652-2.528-1.447-4.231-2.368-6.585-3.556-17.607-9.5-17.459-14.629' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M34.986 205.755c.457.366.931.745 1.444 1.122 3.67 2.707 8.167 5.138 11.782 7.08 1.68.911 3.129 1.696 4.143 2.324 2.662 1.638 9.023 4.639 15.477 7.308 11.749 4.865 13.152 4.304 13.613 4.116 2.112-.846 3.858-5.152 6.542-12.1 2.298-5.974 5.128-13.317 8.004-15.279 1.201 1.621 3.035 4.302 4.936 7.088 6.172 9.032 10.687 15.504 12.624 16.53a.873.873 0 0 0 1.097-.22c.876-1.081 2.714-4.342 4.949-8.382 3.056 3.032 9.018 10.075 15.666 20.99 5.485 9.003 12.835 23.069 17.131 39.502-6.812-2.815-12.063-3.883-12.222-3.326-.354 1.283 8.254 2.541 19.562 8.803a80.555 80.555 0 0 1 14.229 9.994c7.371 6.478 13.517 14.221 18.253 23.023 3.425 6.358 5.282 11.743 6.246 15.149 1.241 4.391 1.361 6.799 1.223 7.223-.114.318-1.241 2.154-12.521 6.975-7.566 3.229-17.675 6.93-28.447 10.406-11.633 3.742-23.11 6.938-33.209 9.248-11.198 2.555-20.084 3.891-26.425 3.973-1.745-6.273-4.198-14.93-6.89-24.43-6.619-23.408-15.087-53.346-19.465-70.007 2.329-.903 7.052-3.789 7.052-7.11 0-1.986-1.538-9.272-5.238-17.902-3.184-7.442-8.843-17.756-17.666-24.679-7.492-5.881-15.962-8.347-25.247-7.363.68-2.613 2.352-7.597 3.357-10.056' | ||
/> | ||
<path | ||
fill='#F4DE12' | ||
d='M47.504 394.722c-4.985-8.445-13.422-31.305-23.155-62.75-8.116-26.23-14.288-49.328-15.053-54.714 6.243-4.528 17.158-9.099 29.554-12.094 8.412-2.035 16.428-3.065 23.189-2.98 2.299.024 4.43.187 6.361.476 2.027 9.714 13.593 50.596 22.11 80.688 3.893 13.766 7.289 25.773 8.773 31.27-2.431.129-5.82.777-10.142 1.947-6.23 1.693-14.028 4.389-21.385 7.418-6.019 2.477-11.338 4.895-15.255 7.215-2.296 1.356-3.894 2.532-4.997 3.524' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M70.264 262.986c3.23.663 5.843 1.724 7.721 3.155-.403 1.984-3.669 4.174-5.703 5.005-.905-3.48-1.6-6.271-2.018-8.16' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M2.038 260.809c.36-7.439 1.79-18.234 6.638-27.417 4.244-8.03 10.222-13.035 17.76-14.884 10.946-2.686 20.826-.648 29.354 6.041 14.362 11.273 20.794 32.406 22.017 39.352-3.642-2.223-8.918-3.388-15.744-3.472-6.902-.081-15.078.963-23.622 3.025-13.82 3.337-29.857 9.85-34.85 16.817-1.295-4.742-1.895-12.076-1.553-19.462' | ||
/> | ||
<path | ||
fill='#FFF' | ||
d='M4.344 282.387c.648-1.259 1.792-2.569 3.379-3.893.254 1.447.713 3.513 1.332 6.066-1.78-.326-4.032-1.403-4.711-2.173m-2.595 75.198c0-1.117.062-2.611.249-4.604.418-4.574 1.328-10.4 2.562-16.387 2.776-13.398 6.521-24.729 10.169-30.884a1180.336 1180.336 0 0 0 7.949 26.777c2.454 7.938 6.914 21.932 11.637 35.148-3.505-.277-9.9-.998-16.154-2.068-8.617-1.475-14.302-3.15-16.003-4.736-.05-.046-.409-.587-.409-3.246' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M46.646 509.423c2.181-25.859 1.787-56.375-1.147-90.693a.905.905 0 0 0-.3-.596c-5.914-5.023-14.604-13.23-22.493-23.76-7.589-10.137-12.56-19.953-14.774-29.207 2.644.74 5.963 1.451 9.936 2.135 6.794 1.164 13.771 1.914 17.096 2.139 3.961 10.986 8.054 21.205 11.243 26.623-1.209 1.477-1.083 2.289-.873 2.357.382.123.935-2.26 7.987-6.027a167.98 167.98 0 0 1 14.99-7.082c7.306-2.998 15.037-5.678 21.211-7.346 9.379-2.543 12.02-1.961 12.718-1.598 1.495.783 3.123 4.379 4.255 9.396 1.874 8.281 1.142 14.479 1.902 14.545.871.082 1.228-7.26-.493-14.865-.738-3.279-2.376-8.99-4.995-10.355-.446-.234-1.046-.383-1.805-.453-.372-1.391-.896-3.291-1.528-5.586 12.415-.287 34.556-5.211 59.677-13.299 10.828-3.486 20.99-7.205 28.609-10.461 4.675-2.006 7.707-3.535 9.679-4.699.282 3.744.277 9.354-1.007 16.33-1.366 7.398-3.858 14.621-7.391 21.459-4.174 8.092-9.785 15.535-16.646 22.121-7.931 7.598-17.608 14.109-28.772 19.371a.879.879 0 0 0-.503.803c.23 15.795-3.737 57.498-7.199 88.416-1.788 16-3.653 31.023-5.321 42.934-7.504 2.029-16.347 2.736-26.269 2.111-8.553-.551-17.67-2.053-27.092-4.484-16.699-4.307-30.611-10.686-34.002-14.162 1.21-6.914 2.417-15.485 3.307-26.067' | ||
/> | ||
<path | ||
fill='#78C0EA' | ||
d='M38.614 560.066c-.398-.916.312-3.988 1.304-8.242.863-3.646 1.979-8.436 3.12-14.652 4.517 3.762 17.777 9.711 33.943 13.879 9.507 2.455 18.71 3.973 27.362 4.521 9.816.633 18.604-.039 26.14-1.988-.144 1.059-.292 2.09-.442 3.088-2.81 19.33-3.982 22.033-4.275 22.398-2.311 2.744-17.201 3.777-38.133.762-11.684-1.691-22.757-4.336-31.176-7.48-9.758-3.644-15.922-7.894-17.843-12.286' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M52.693 616.58c1.168-2.297 2.717-5.105 3.822-6.586a79.13 79.13 0 0 0 2.33 4.016c-1.631.806-4.267 2.015-6.152 2.57' | ||
/> | ||
<path | ||
fill='#11412F' | ||
d='M142.423 628.138c-1.206 1.943-9.931 5.139-23.166 6.051-7.082.486-14.276.262-21.377-.664-8.308-1.1-16.212-3.129-23.489-6.051-5.002-2.014-9.611-7.691-12.757-12.395-2.443-3.664-4.177-7.277-4.747-7.488-1.303-.471-4.919 6.527-6.144 8.963-10.159-5.496-18.832-15.236-21.956-20.697.688-11.547 9.143-25.527 12.7-29.5 3.295 2.74 8.09 5.295 14.362 7.635 8.531 3.182 19.732 5.877 31.53 7.582 13.096 1.887 28.019 2.65 35.512.736 6.875 5.4 13.438 14.869 17.241 25.4 3.19 8.831 4.16 17.42 2.291 20.428' | ||
/> | ||
<path | ||
fill='#11412F' | ||
d='M201.369 601.08c-4.134 4.961-17.595 7.631-27.626 8.217-11.679.693-25.116-.701-33.128-5.199-1.633-3.953-3.615-7.75-5.816-11.148-2.983-4.574-6.312-8.371-9.917-11.287.988-.402 1.743-.896 2.221-1.463.364-.43 1.246-1.484 3.444-15.172 9.829 3.594 21.652 3.408 29.95 2.617 9.756-.953 17.7-3.043 20.723-4.365 3.921 2.605 8.7 7.717 12.878 13.807 4.488 6.529 7.502 13.021 8.251 17.797.444 2.791.114 4.877-.98 6.196' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M99.893 428.08c7.428-6.072 8.151-16.395 7.433-16.502-.604-.086-1.242 9.564-8.344 15.381-5.67 4.641-14.027 6.234-13.843 6.914.247.857 9.594-1.567 14.754-5.793M73.854 90.046a3.635 3.635 0 0 0 0 7.269 3.64 3.64 0 0 0 3.635-3.638 3.639 3.639 0 0 0-3.635-3.631m50.19-3.18a3.287 3.287 0 0 0-3.287 3.294 3.288 3.288 0 0 0 3.287 3.294 3.301 3.301 0 0 0 3.302-3.294 3.3 3.3 0 0 0-3.302-3.294' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M9.296 277.254c.763 5.391 6.937 28.486 15.054 54.718 9.733 31.447 18.169 54.299 23.154 62.754 1.104-.994 2.701-2.176 4.999-3.531 3.917-2.32 9.237-4.74 15.255-7.215.189-.08.383-.158.58-.234-11.684-29.766-33.414-101.828-37.72-116.3-8.908 2.797-16.508 6.317-21.322 9.808' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M51.252 190.681c.291-5.188 1.203-7.115 1.861-7.835-8.498-4.104-12.98-7.492-13.84-10.447-1.873 2.854-2.895 10.6-3.59 12.815-1.285 4.11-3.89 5.754-4.097 12.579-.128 4.467 8.23 9.562 14.736 13.147-.573-6.67 4.491-12.453 4.93-20.259m-11.996 26.891c-4.087-.468-8.363-.158-12.822.936-7.535 1.849-13.513 6.854-17.758 14.889-4.847 9.178-6.276 19.973-6.639 27.412-.339 7.39.259 14.725 1.554 19.463 4.017-5.592 15.147-10.896 26.53-14.492-5.557-31.462 3.88-44.131 9.135-48.208m12.781-1.485c-.992-.596-2.314-1.311-3.824-2.125-3.617-1.947-8.112-4.376-11.782-7.085a35.272 35.272 0 0 1-1.445-1.122c-1.005 2.459-2.67 7.448-3.357 10.056 6.495-.688 12.595.315 18.233 2.994.766-1.073 1.611-2.173 2.175-2.718m44.16-11.349c3.13.853 7.604 8.762 12.355 13.575-2.097-2.837-4.666-6.571-7.631-10.901-1.896-2.784-3.728-5.465-4.931-7.089-2.279 1.559-4.527 6.503-6.512 11.468 2.793-3.94 6.086-7.23 6.719-7.053' | ||
/> | ||
<path | ||
fill='#92572A' | ||
d='M61.121 150.716c1.166-12.711 7.607-21.277 12.537-25.933-6.039 3.357-11.681 8.854-15.22 17.888-4.534 11.587-.506 20.865 3.675 26.6 3.937 5.4 9.862 10.188 16.676 13.482 6.532 3.155 13.287 4.692 19.02 4.337a34.095 34.095 0 0 0 3.887-.449c-16.428-1.221-42.446-15.495-40.575-35.925' | ||
/> | ||
<path | ||
fill='#E7D8A7' | ||
d='M146.819 150.045c.485-2.359-1.516-4.124-3.277-5.186a.869.869 0 0 1-.426-.761c.061-4.273-1.182-9.092-3.423-13.226-2.717-5.024-7.337-9.173-12.419-11.46-.998.343-2.042.601-3.118.769 3.529 2.077 13.665 9.516 13.14 26.228 0 0 6.031 4.918 2.65 10.066 3.773-1.748 6.365-3.931 6.873-6.43m-31.153 18.338c-4.335.233-1.6 2.516-.554 2.635.758.086.603 6.036-2.609 10.921.251-.204.489-.416.74-.635 3.393-3.068 5.279-6.841 6.668-10.128a.874.874 0 0 1 .692-.525 5.606 5.606 0 0 0 3.896-2.368c1.117-1.59 1.489-3.733 1.098-6.226a74.17 74.17 0 0 1-5.772.457c-.228 2.202-1.265 5.706-4.159 5.869' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M78.024 184.33c-7.07-3.409-13.223-8.394-17.323-14.029-4.441-6.092-8.723-15.941-3.893-28.271 3.993-10.204 11.041-17.293 20.942-21.073a41.596 41.596 0 0 1 2.978-1.009c-14.947 2.976-23.44 13.823-24.237 13.865-.705.039-1.499-13.753-5.391-31.088a273.063 273.063 0 0 0-3.994-5.582c-1.79-2.431-3.384-4.49-4.428-5.664-.208 1.83.039 8.207.244 11.508.278 4.388.556 9.02-.325 9.513-.465.265-2.023-.878-3.906-2.499a235.877 235.877 0 0 1 2.291 6.88 8.863 8.863 0 0 1 1.283-.034c3.254.16 6.173 2.718 6.195 3.601 1.878 2.732-.507 3.885-2.066 2.667-1.119-.861-4.569-2.874-7.727-1.428-3.091 1.416-4.996 4.782-5.837 6.959.031.626.124 1.237.288 1.848 1.171 4.499 4.033 7.42 7.838 8.018 5.865.917 8.344-3.899 9.034-3.464.604.387-.847 3.651-4.533 4.875 1.382 9.605 1.337 28.785-.132 36.547 2.35 1.621 5.883 3.612 11.147 6.021.159-6.705-.363-12.051.451-11.138 10.263 11.534 22.059 15.479 31.216 16.578-3.328-.765-6.752-1.976-10.115-3.601m-31.378-52.972c-.819.227-1.483-3.228-3.445-4.746-.739.401-1.569 1.35-1.836 2.563-.598 2.742 1.992 3.923 1.26 4.68-.42.435-3.396-1.673-2.669-4.984a5.636 5.636 0 0 1 1.799-3.021c-2.095-.647-4.332.69-4.618.211-.21-.36 2.148-2.786 5.502-1.425 3.827 1.542 4.912 6.474 4.007 6.722' | ||
/> | ||
<path | ||
fill='#EF9C20' | ||
d='M34.889 35.761c1.733 5.018 4.545 8.018 3.875 8.542-.421.319-3.056-2.418-4.869-7.028a45.217 45.217 0 0 0-4.505 9.373c-1.576 4.565-2.451 9.18-2.669 14.105-.195 4.403.136 8.962 1.017 13.952 1.662 9.316 4.922 18.397 8.374 28.009.53 1.485 1.068 2.984 1.604 4.498 1.5 1.403 2.944 2.686 4.046 3.447.078-1.356-.152-5.523-.284-7.583-.222-3.438-.938-13.379.506-13.753.991-.255 3.872 3.676 6.418 7.133.569.775 1.144 1.561 1.711 2.351-1.124-4.321-2.67-10.084-3.679-13.138-7.195-21.757-7.407-52.654 4.694-64.465-.321.17-.633.341-.939.523a46.31 46.31 0 0 0-15.3 14.034' | ||
/> | ||
<path | ||
fill='#E9E74A' | ||
d='M131.571 114.783c1.991-2.003 2.948-4.543 2.756-7.337-.182-2.66-1.176-4.617-3.051-5.988-5.301-3.888-15.878-1.473-17.071-1.189-.396.1-9.331 2.235-13.059.36a23.747 23.747 0 0 1-.924 1.514c2.017.681 7.881 2.044 17.923.717 4.488-.598 10.532.419 11.917 4.911 1.408 4.564-3.52 9.205-9.182 10.875 4.226.088 8.18-1.328 10.691-3.863m-16.353 104.766a238.786 238.786 0 0 0 2.521-4.474c-3.554-4.851-4.648-13.199-4.99-17.815-.372-5.037-.186-10.242.42-13.604a22.318 22.318 0 0 1-3.104 2.022c-.421 4.434-1.332 23.261 5.153 33.871m4.875-162.73s-5.377.291-5.243 2.726c.097 1.714 4.231 1.793 7.619 2.541 3.165.692 4.884 4.266 4.196 6.756a22.684 22.684 0 0 1 4.482 2.044c1.661-2.851 2.138-5.244 1.417-7.125-.926-2.422-3.663-3.44-4.799-3.757a.89.89 0 0 1-.63-.731c-.268-1.979-2.516-11.321-8.586-20.928-3.351-5.3-7.284-9.76-11.692-13.259-5.353-4.254-11.431-7.096-18.068-8.452-4.207-.854-8.333-1.308-12.34-1.355 15.554 2.195 36.419 12.695 43.644 41.54M154.92 250.06c-.669.092-1.403.211-2.225.359-.573.098-1.141.21-1.695.319 2.894 6.532 10.361 23.254 13.833 31.252a86.75 86.75 0 0 1 4.158 2.812c-3.184-8.699-11.048-30.048-14.071-34.742' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M99.893 428.08c-5.159 4.227-14.507 6.65-14.754 5.793-.185-.68 8.173-2.275 13.843-6.914.15-.119.303-.252.446-.375-9.536 4.287-21.021-.877-25.449-7.355-8.274-12.109-9.168-27.975-9.258-32.383a172.206 172.206 0 0 0-11.399 5.549c-7.056 3.768-7.606 6.145-7.987 6.025-.209-.062-.337-.885.874-2.359-3.193-5.414-7.284-15.633-11.247-26.617-3.322-.223-10.304-.98-17.096-2.141-3.973-.68-7.29-1.395-9.934-2.125 2.216 9.246 7.184 19.064 14.774 29.197 7.886 10.531 16.58 18.732 22.493 23.762a.914.914 0 0 1 .302.594c2.934 34.322 3.324 64.834 1.141 90.693-.887 10.59-2.095 19.152-3.297 26.074 3.384 3.469 17.293 9.842 33.993 14.156.41.102.812.201 1.213.307 16.858-97.967 6.474-111.158 11.423-113.982 4.911-1.795 8.286-5.238 10.495-8.389-.185.16-.375.327-.576.49' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M136.02 509.091c3.464-30.92 7.43-72.621 7.198-88.416 0-.348.195-.662.506-.803 11.169-5.266 20.842-11.777 28.772-19.371 6.866-6.584 12.473-14.027 16.646-22.117 3.537-6.846 6.024-14.068 7.391-21.463 1.284-6.979 1.284-12.59 1.007-16.33-1.542.912-3.729 2.049-6.852 3.451-1.93 22.469-11.636 56.572-47.562 72.906 0 0-.323-6.072-2.218-5.617-1.643.395-5.153 74.123-15.491 141.863a58.543 58.543 0 0 0 5.281-1.17c1.673-11.911 3.537-26.933 5.322-42.933' | ||
/> | ||
<path | ||
fill='#6D968F' | ||
d='M201.369 601.41c1.094-1.314 1.424-3.404.979-6.189-.749-4.77-3.763-11.264-8.251-17.799-4.178-6.082-8.957-11.201-12.878-13.797-1.347.582-3.652 1.316-6.669 2.043 3.934 4.793 21.171 26.129 19.843 40.025 3.076-1.166 5.573-2.594 6.976-4.283' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M130.55 565.033c-2.198 13.686-3.083 14.734-3.447 15.166-.475.57-1.232 1.061-2.216 1.467 2.177 1.764 4.265 3.863 6.241 6.256.095-4.219.78-15.293 2.425-21.914a40.04 40.04 0 0 1-3.003-.975' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M77.482 551.048c-16.156-4.168-29.432-10.115-33.944-13.875-1.138 6.211-2.262 11.006-3.116 14.65-.993 4.254-1.708 7.326-1.309 8.242 1.923 4.389 8.094 8.643 17.846 12.283 4.959 1.848 10.835 3.529 17.213 4.943 1.997-10.648 3.709-21.062 4.519-25.943-.399-.093-.8-.198-1.209-.3' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M125.768 579.072c.291-.367 1.464-3.07 4.271-22.4.152-1 .301-2.039.449-3.09a67.194 67.194 0 0 1-5.31 1.127 1050.137 1050.137 0 0 1-4.613 26.293c2.727-.452 4.517-1.118 5.203-1.93' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M71.3 578.552c-5.693-1.328-10.951-2.875-15.448-4.557-6.274-2.344-11.071-4.898-14.363-7.635-3.557 3.963-12.013 17.945-12.703 29.496 3.127 5.467 11.799 15.201 21.958 20.693 1.225-2.436 4.838-9.43 6.142-8.959.577.211 2.306 3.824 4.749 7.482 1.4 2.092 3.084 4.385 4.967 6.455-5.992-15.535 1.109-35.172 4.698-42.975' | ||
/> | ||
<path | ||
fill='#6D968F' | ||
d='M142.423 628.138c1.869-3.008.899-11.598-2.29-20.428-3.803-10.531-10.366-20-17.241-25.4a29.814 29.814 0 0 1-3.61.656c5.781 5.445 18.956 22.469 19.706 47.334 1.857-.771 3.036-1.541 3.435-2.162' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M144.979 421.214c.183 22.449-5.066 68.91-7.229 88.191a1870.181 1870.181 0 0 1-3.93 32.631c.802.301 1.991.602 3.515.869 3.71-28.748 9.63-81.428 10.901-123.301-1.067.54-2.154 1.085-3.257 1.61' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M189.824 475.441c.167-6.297.253-12.582.253-18.799 0-25.67-1.423-50.172-4.068-69.496a85.721 85.721 0 0 1-5.352 7.166c1.365 14.48 6.125 79.311-3.061 148.111 2.688-.559 5.032-1.223 6.976-2.002 2.779-18.472 4.603-40.771 5.252-64.98' | ||
/> | ||
<path | ||
fill='#6393CD' | ||
d='M133.627 543.501a787.714 787.714 0 0 1-1.874 13.551c-.32 2.299-.63 4.365-.927 6.217a41.79 41.79 0 0 0 3.382 1.09c.477-3.031 1.731-10.732 2.969-20.004-1.442-.266-2.636-.547-3.55-.854' | ||
/> | ||
<path | ||
fill='#A6DAF6' | ||
d='M184.319 542.07c-2.115.777-4.483 1.398-6.943 1.885-.878 5.965-2.195 13.719-3.266 19.67 2.946-.703 5.176-1.42 6.412-1.957 1.405-5.862 2.674-12.428 3.797-19.598' | ||
/> | ||
<path | ||
fill='#E9E74A' | ||
d='M87.018 62.357c7.998 1.619 9.114 5.82 10.748 3.667 1.017-1.337-1.077-7.174-10.089-8.781-5.055-.897-10.535 1.06-10.972 3.14-.476 2.332 2.738.451 10.313 1.974' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M44.319 170.135c-.152 1.965-.344 3.715-.572 5.157-2.301-1.853-2.871-3.124-2.871-3.926 0-.859.57-1.231 3.443-1.231m87.62 27.995c.21 1.743.276 3.973.346 6.121.056 1.714.109 3.323.217 4.736.134 1.695.387 3.462.607 5.023.263 1.862.969 5.2.319 6.012-.964.802-4.116 1.131-7.578-.268-2.071-2.569-3.91-4.607-5.368-6.012.194-.357.394-.726.599-1.097 2.297-4.165 8.008-14.861 10.261-17.134.16.327.411 1.044.597 2.619m-61.675 64.856c3.23.663 5.843 1.724 7.721 3.155-.403 1.984-3.669 4.174-5.703 5.005-.905-3.48-1.6-6.274-2.018-8.16m-65.92 19.401c.648-1.259 1.792-2.569 3.379-3.893.254 1.447.713 3.513 1.332 6.066-1.78-.326-4.032-1.406-4.711-2.173m-2.595 75.198c0-1.117.062-2.611.249-4.604.418-4.574 1.328-10.4 2.562-16.387 2.776-13.398 6.521-24.729 10.169-30.884a1180.336 1180.336 0 0 0 7.949 26.777c2.454 7.938 6.914 21.932 11.637 35.148-3.505-.277-9.9-.998-16.154-2.068-8.617-1.475-14.302-3.15-16.003-4.736-.05-.046-.409-.587-.409-3.246' | ||
/> | ||
<path | ||
fill='#010101' | ||
d='M52.693 616.58c1.168-2.297 2.717-5.105 3.822-6.586a79.13 79.13 0 0 0 2.33 4.016c-1.631.806-4.267 2.015-6.152 2.57' | ||
/> | ||
<path | ||
fill='#B5D9D9' | ||
d='M74.515 108.034c-3.998-1.517-9.259-4.765-11.624-11.642-2.07-6.02-1.873-11.541.588-16.411 2.003-3.948 5.202-6.887 8.338-8.826-3.878 1.744-8.467 5.164-11.056 10.277-2.457 4.865-2.657 10.388-.598 16.408 2.371 6.879 7.634 10.13 11.636 11.645 4.781 1.807 10.352 2.117 14.899.83a22.335 22.335 0 0 0 5.753-2.553c-.974.434-1.986.8-3.032 1.095-4.549 1.294-10.125.981-14.904-.823m39.007-37.743c-5.696 1.831-9.988 5.687-12.133 9.003.271.506.53 1.022.769 1.553 2.188-3.008 4.714-6.796 11.364-10.556m-11.578 28.775c2.179 1.104 8.136.401 11.848-.496a41.52 41.52 0 0 1 1.937-.411c-8.165.833-11.664-.293-12.863-1.378-.27.772-.576 1.536-.922 2.285' | ||
/> | ||
</svg> | ||
) |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
73455
1022
5
6
12
2
+ Addedemotion@~8.0.12
+ Addedreact-emotion@~8.0.12
+ Added@babel/helper-module-imports@7.0.0-beta.32(transitive)
+ Added@babel/types@7.0.0-beta.32(transitive)
+ Addedabbrev@1.1.1(transitive)
+ Addedargparse@1.0.10(transitive)
+ Addedbabel-macros@1.2.0(transitive)
+ Addedbabel-plugin-emotion@8.0.12(transitive)
+ Addedconvert-source-map@1.9.0(transitive)
+ Addedcosmiconfig@3.1.0(transitive)
+ Addedemotion@8.0.12(transitive)
+ Addedemotion-utils@8.0.12(transitive)
+ Addederror-ex@1.3.2(transitive)
+ Addedesprima@4.0.1(transitive)
+ Addedfind-root@1.1.0(transitive)
+ Addedis-arrayish@0.2.1(transitive)
+ Addedis-directory@0.3.1(transitive)
+ Addedjs-yaml@3.14.1(transitive)
+ Addednopt@1.0.10(transitive)
+ Addedparse-json@3.0.0(transitive)
+ Addedreact-emotion@8.0.12(transitive)
+ Addedrequire-from-string@2.0.2(transitive)
+ Addedsource-map@0.5.7(transitive)
+ Addedsprintf-js@1.0.3(transitive)
+ Addedstylis@3.5.4(transitive)
+ Addedstylis-rule-sheet@0.0.5(transitive)
+ Addedto-fast-properties@2.0.0(transitive)
+ Addedtouch@1.0.0(transitive)
- Removedstyled-jsx@~2.0.1
- Removedbabel-runtime@6.26.0(transitive)
- Removedbabel-types@6.23.0(transitive)
- Removedconvert-source-map@1.3.0(transitive)
- Removedcore-js@2.6.12(transitive)
- Removedcreate-react-class@15.7.0(transitive)
- Removedreact@15.7.0(transitive)
- Removedregenerator-runtime@0.11.1(transitive)
- Removedsource-map@0.5.6(transitive)
- Removedstring-hash@1.1.1(transitive)
- Removedstyled-jsx@2.0.2(transitive)
- Removedstylis@3.2.18(transitive)
- Removedto-fast-properties@1.0.3(transitive)